Skip to content

Commit cd2258f

Browse files
author
Kendo Bot
committed
Sync with Kendo UI Professional
1 parent dcded6c commit cd2258f

File tree

2 files changed

+18
-19
lines changed

2 files changed

+18
-19
lines changed

docs-aspnet/getting-started-core/first-steps.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -167,20 +167,20 @@ Before you can use a Telerik UI component, you must include the theme, the jQuer
167167

168168
Utilize the Telerik UI DatePicker component by adding the snippet from the following example to `~/Views/Home/Index.cshtml`.
169169

170-
```tab-HtmlHelper
171-
<div class="text-center">
172-
<h2>Kendo UI DatePicker</h2>
173-
@(Html.Kendo().DatePicker()
174-
.Name("my-picker")
175-
)
176-
</div>
177-
```
178-
```tab-TagHelper
179-
<div class="text-center">
180-
<h2>Kendo UI DatePicker</h2>
181-
<kendo-datepicker name="my-picker"/>
182-
</div>
183-
```
170+
```cshtml
171+
<div class="text-center">
172+
<h2>Kendo UI DatePicker</h2>
173+
@(Html.Kendo().DatePicker()
174+
.Name("my-picker")
175+
)
176+
</div>
177+
```
178+
```tagHelper
179+
<div class="text-center">
180+
<h2>Kendo UI DatePicker</h2>
181+
<kendo-datepicker name="my-picker"/>
182+
</div>
183+
```
184184

185185
Now you are ready to run the web app.
186186

docs-aspnet/html-helpers/navigation/treeview/checkboxes.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ You can define the `Checkboxes` configuration option by:
3030
* The `CheckChildren()` option indicates whether checkboxes of child items will be checked when the checkbox of a parent item is checked. This option also enables tri-state checkboxes with an indeterminate state.
3131
* The `TemplateId()` option allows you to define a script template which will be used for the rendering of the checkboxes. Similarly, the `Template()` option allows the setting of an inline string template.
3232

33-
@(Html.Kendo().TreeView()
33+
@(Html.Kendo().TreeView()
3434
.Name("treeview")
3535
.DataTextField("Name")
3636
.Checkboxes(checkboxes => checkboxes
@@ -43,11 +43,10 @@ You can define the `Checkboxes` configuration option by:
4343
.Action("Read_TreeViewData", "TreeView")
4444
)
4545
)
46-
)
47-
48-
<script type="text/kendo-template" id="checkbox-template">
46+
)
47+
<script type="text/kendo-template" id="checkbox-template">
4948
<input type='checkbox' name='checkedFiles[#= item.id #]' value='true' />
50-
</script>
49+
</script>
5150

5251
## See Also
5352

0 commit comments

Comments
 (0)