Skip to content

Commit 03d8968

Browse files
author
Kendo Bot
committed
Sync with Kendo UI Professional
1 parent 516a4c0 commit 03d8968

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

63 files changed

+2909
-234
lines changed

docs-aspnet/_config-mvc.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -438,11 +438,16 @@ defaults:
438438
path: "html-helpers/interactivity/skeletoncontainer"
439439
values:
440440
title_prefix: "ASP.NET MVC SkeletonContainer Component"
441-
441+
-
442442
scope:
443443
path: "html-helpers/interactivity/progressbar"
444444
values:
445445
title_prefix: "ASP.NET MVC ProgressBar Component"
446+
-
447+
scope:
448+
path: "html-helpers/interactivity/circularprogressbar"
449+
values:
450+
title_prefix: "ASP.NET MVC Circular ProgressBar Component"
446451
-
447452
scope:
448453
path: "html-helpers/interactivity/sortable"

docs-aspnet/_config.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -546,6 +546,8 @@ navigation:
546546
title: "OrgChart"
547547
"*progressbar":
548548
title: "ProgressBar"
549+
"*circularprogressbar":
550+
title: "CircularProgressBar"
549551
"*qrcode":
550552
title: "QRCode"
551553
"*/radiobutton":
@@ -947,6 +949,11 @@ defaults:
947949
path: "html-helpers/interactivity/progressbar"
948950
values:
949951
title_prefix: "ASP.NET Core ProgressBar Component"
952+
-
953+
scope:
954+
path: "html-helpers/interactivity/circularprogressbar"
955+
values:
956+
title_prefix: "ASP.NET Core Circular ProgressBar Component"
950957
-
951958
scope:
952959
path: "html-helpers/interactivity/sortable"

docs-aspnet/accessibility/accessibility-compliance-core.html

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,12 @@
104104
<td>AA</td>
105105
<td><a href="https://demos.telerik.com/aspnet-core/colorpicker/keyboard-navigation">Yes</a></td>
106106
</tr>
107+
<tr>
108+
<td>ColorPalette</td>
109+
<td>Yes</td>
110+
<td>AA</td>
111+
<td><a href="https://demos.telerik.com/aspnet-core/colorpalette/keyboard-navigation">Yes</a></td>
112+
</tr>
107113
<tr>
108114
<td>DateInput</td>
109115
<td>Yes</td>

docs-aspnet/accessibility/accessibility-compliance-mvc.html

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,12 @@
104104
<td>AA</td>
105105
<td><a href="https://demos.telerik.com/aspnet-mvc/colorpicker/keyboard-navigation">Yes</a></td>
106106
</tr>
107+
<tr>
108+
<td>ColorPalette</td>
109+
<td>Yes</td>
110+
<td>AA</td>
111+
<td><a href="https://demos.telerik.com/aspnet-mvc/colorpalette/keyboard-navigation">Yes</a></td>
112+
</tr>
107113
<tr>
108114
<td>DateInput</td>
109115
<td>Yes</td>

docs-aspnet/html-helpers/data-management/grid/export/excel-export.md

Lines changed: 34 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ To enable the Excel export option of the Grid:
2626
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
2727
<script src="http://cdnjs.cloudflare.com/ajax/libs/jszip/2.4.0/jszip.js"></script>
2828
<script src="https://kendo.cdn.telerik.com/{{ site.mvcCoreVersion }}/js/kendo.all.min.js"></script>
29-
3029
@(Html.Kendo().Grid<ProductViewModel>()
3130
.Name("grid")
3231
.ToolBar(tools => tools.Excel())
@@ -38,6 +37,25 @@ To enable the Excel export option of the Grid:
3837
)
3938
)
4039
```
40+
{% if site.core %}
41+
```TagHelper
42+
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
43+
<script src="http://cdnjs.cloudflare.com/ajax/libs/jszip/2.4.0/jszip.js"></script>
44+
<script src="https://kendo.cdn.telerik.com/{{ site.mvcCoreVersion }}/js/kendo.all.min.js"></script>
45+
<kendo-grid name="grid">
46+
<toolbar>
47+
<toolbar-button name="excel"></toolbar-button>
48+
</toolbar>
49+
<excel file-name="Products.xlsx" />
50+
<datasource type="DataSourceTagHelperType.Ajax">
51+
<transport>
52+
<read url="@Url.Action("Products_Read","Home")" />
53+
</transport>
54+
</datasource>
55+
</kendo-grid>
56+
```
57+
{% endif %}
58+
4159
4260
To initiate the Excel export, press the **Toolbar** button or use the [Grid client-side API](https://docs.telerik.com/kendo-ui/api/javascript/ui/grid) and call the [`saveAsExcel`](https://docs.telerik.com/kendo-ui/api/javascript/ui/grid/methods/saveasexcel) method.
4361
@@ -80,6 +98,21 @@ By default, the Telerik UI Grid for {{ site.framework }} exports only the curren
8098
)
8199
)
82100
```
101+
{% if site.core %}
102+
```TagHelper
103+
<kendo-grid name="grid">
104+
<toolbar>
105+
<toolbar-button name="excel"></toolbar-button>
106+
</toolbar>
107+
<excel all-pages="true" />
108+
<datasource type="DataSourceTagHelperType.Ajax">
109+
<transport>
110+
<read url="@Url.Action("Products_Read","Home")" />
111+
</transport>
112+
</datasource>
113+
</kendo-grid>
114+
```
115+
{% endif %}
83116

84117
## Customizing Excel Documents
85118

docs-aspnet/html-helpers/data-management/grid/export/overview.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,16 @@ To enable the PDF and Excel Export functionality, add the following ToolBar conf
3131
})
3232
)
3333
```
34+
{% if site.core %}
35+
```TagHelper
36+
<kendo-grid name="grid">
37+
<toolbar>
38+
<toolbar-button name="excel"></toolbar-button>
39+
<toolbar-button name="pdf"></toolbar-button>
40+
</toolbar>
41+
</kendo-grid>
42+
```
43+
{% endif %}
3444

3545
## See Also
3646

0 commit comments

Comments
 (0)