|
67 | 67 | <a class="right carousel-control" href="#myCarousel" role="button" data-slide="next"> |
68 | 68 | <span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span> |
69 | 69 | <span class="sr-only">Next</span> |
| 70 | + |
70 | 71 | </a> |
71 | 72 | </div> |
72 | 73 |
|
|
86 | 87 |
|
87 | 88 | @Html.Lookup(nameof(Model.Value)).RemoveClass("readonly") |
88 | 89 |
|
89 | | - @(Html.ButtonGroup(Html.PrimaryButton("Save"), |
90 | | - Html.LinkButton("Cancel", nameof(HomeController.Index)))) |
91 | | - |
| 90 | + @(Html.ButtonGroup(Html.PrimaryButton("Save"), |
| 91 | + Html.LinkButton("Cancel", nameof(HomeController.Index)))) |
92 | 92 |
|
| 93 | + Input Tag value: |
93 | 94 | <input-tag for="Value" class="foo"></input-tag> |
| 95 | + Editor for value: |
94 | 96 | @Html.EditorFor(m => m.Value) |
| 97 | + Input tag blarg: |
95 | 98 | <input-tag for="Blarg"></input-tag> |
| 99 | + Editor for blarg: |
96 | 100 | @Html.EditorFor(m => m.Blarg) |
| 101 | + Input tag blorg.blorg: |
97 | 102 | <input-tag for="Blorg.Blorg"></input-tag> |
| 103 | + Editor for blorg.blorg: |
98 | 104 | @Html.EditorFor(m => m.Blorg.Blorg) |
| 105 | + Input tag Blorgs[0].Blarg: |
99 | 106 | <input-tag for="Blorgs[0].Blorg"></input-tag> |
| 107 | + Editor for Blorgs[0].Blarg: |
100 | 108 | @Html.EditorFor(m => m.Blorgs[0].Blorg) |
101 | 109 | @Html.Input(m => m.Value).AddClass("foo") |
| 110 | + Display tag for Value: |
102 | 111 | <display-tag for="Value"></display-tag> |
| 112 | + Display for Vlaue: |
103 | 113 | @Html.Display(m => m.Value) |
| 114 | + Label tag for Value: |
104 | 115 | <label-tag for="Value"></label-tag> |
| 116 | + Label for Value: |
105 | 117 | @Html.Label(m => m.Value) |
106 | | - |
| 118 | + |
107 | 119 | @{ |
108 | | - var tag = new HtmlTag("canvas"); |
| 120 | + var tag = new HtmlTag("canvas"); |
109 | 121 | } |
110 | 122 | @tag |
111 | 123 |
|
|
0 commit comments