Skip to content

Commit 65cc151

Browse files
committed
Sync with Kendo UI Professional
1 parent ab162e3 commit 65cc151

File tree

13 files changed

+88
-67
lines changed

13 files changed

+88
-67
lines changed

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

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,13 @@ To enable editing:
113113
114114
>For runnable examples, refer to [the demos on implementing the editing approaches in the Grid](https://demos.telerik.com/{{ site.platform }}/grid/editing-inline).
115115
116+
## Known Limitations
117+
118+
There are limitations when using editing along with other features of the component.
119+
120+
* If filtering is applied and `ServerOperation` is disabled in the DataSource configuration, adding new records is not allowed.
121+
* The component behaves differently, when it is grouped and you add a new record. If `ServerOperation` is enabled in the DataSource configuration, the new row is added as part of a separate (duplicate) group. If `ServerOperation` is disabled, the new row is added as part of an existing group.
122+
116123
## See Also
117124
118125
* [Incell Editing by the Grid HtmlHelper for {{ site.framework }} (Demo)](https://demos.telerik.com/{{ site.platform }}/grid/editing)

docs-aspnet/html-helpers/data-management/pivotgrid/overview.md

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,6 @@ previous_url: /helpers/data-management/pivotgrid/overview
66
slug: overview_pivotgridhelper_aspnetcore
77
position: 0
88
---
9-
{% if site.core %}
10-
{% assign VSExt = "overview_visualstudio_aspnetcore" %}
11-
{% assign GettingStarted = "gettingstarted_aspnetmvc6_aspnetmvc" %}
12-
{% else %}
13-
{% assign VSExt = "overview_visualstudio_aspnetcore" %}
14-
{% assign GettingStarted = "gettingstarted_aspnetmvc" %}
15-
{% endif %}
169

1710
# {{ site.framework }} PivotGrid Overview
1811

@@ -35,7 +28,11 @@ The PivotGrid represents multidimensional data in a cross-tabular format.
3528

3629
To configure the PivotGrid for Ajax binding to an [Adventure Works](https://learn.microsoft.com/en-us/analysis-services/multidimensional-tutorial/multidimensional-modeling-adventure-works-tutorial?view=asallproducts-allversions) cube that is hosted on `https://demos.telerik.com/olap/msmdpump.dll`, follow the next steps:
3730

38-
1. Create a new {{ site.framework }} application. If you have the [{{ site.product }} Visual Studio Extensions]({% slug {{ VSExt }} %}) installed, create a {{ site.product }} application. Name the application `KendoPivotGrid`. If you decide not to use the {{ site.product }} Visual Studio Extensions, follow the steps from the [introductory article]({% slug {{ GettingStarted }} %}) to add {{ site.product }} to the application.
31+
{% if site.core %}
32+
1. Create a new {{ site.framework }} application. If you have the [Telerik UI for ASP.NET Core Visual Studio Extensions]({% slug overview_visualstudio_aspnetcore %}) installed, create a {{ site.product }} application. Name the application `KendoPivotGrid`. If you decide not to use the Visual Studio Extensions, follow the steps from the [introductory article]({% slug gettingstarted_aspnetmvc6_aspnetmvc %}) to install {{ site.product }} in the application.
33+
{% else %}
34+
1. Create a new {{ site.framework }} application. If you have the [Telerik UI for ASP.NET MVC Visual Studio Extensions]({% slug overview_visualstudio_aspnetcore %}) installed, create a {{ site.product }} application. Name the application `KendoPivotGrid`. If you decide not to use the Visual Studio Extensions, follow the steps from the [introductory article]({% slug gettingstarted_aspnetmvc %}) to install {{ site.product }} in the application.
35+
{% endif %}
3936

4037
1. Add a PivotGrid to the `Index` View.
4138

docs-aspnet/html-helpers/data-management/pivotgridv2/overview.md

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,6 @@ description: "Learn the basics when working with the Telerik UI PivotGridV2 Html
55
slug: overview_pivotgridhelperv2_aspnetcore
66
position: 0
77
---
8-
{% if site.core %}
9-
{% assign VSExt = "overview_visualstudio_aspnetcore" %}
10-
{% assign GettingStarted = "gettingstarted_aspnetmvc6_aspnetmvc" %}
11-
{% else %}
12-
{% assign VSExt = "overview_visualstudio_aspnetcore" %}
13-
{% assign GettingStarted = "gettingstarted_aspnetmvc" %}
14-
{% endif %}
158

169
# {{ site.framework }} PivotGridV2 Overview
1710

@@ -32,7 +25,12 @@ The PivotGridV2 represents multidimensional data in a cross-tabular format. Comp
3225

3326
To configure the PivotGridV2 for Ajax binding to an [Adventure Works](https://learn.microsoft.com/en-us/analysis-services/multidimensional-tutorial/multidimensional-modeling-adventure-works-tutorial?view=asallproducts-allversions) cube that is hosted on `https://demos.telerik.com/olap/msmdpump.dll`, follow the next steps:
3427

35-
1. Create a new {{ site.framework }} application. If you have the [{{ site.product }} Visual Studio Extensions]({% slug {{ VSExt }} %}) installed, create a {{ site.product }} application. Name the application `KendoPivotGridV2`. If you decide not to use the {{ site.product }} Visual Studio Extensions, follow the steps from the [getting started article]({% slug {{ GettingStarted }} %}) to add {{ site.product }} to the application.
28+
{% if site.core %}
29+
1. Create a new {{ site.framework }} application. If you have the [Telerik UI for ASP.NET Core Visual Studio Extensions]({% slug overview_visualstudio_aspnetcore %}) installed, create a {{ site.product }} application. Name the application `KendoPivotGridV2`. If you decide not to use the Visual Studio Extensions, follow the steps from the [introductory article]({% slug gettingstarted_aspnetmvc6_aspnetmvc %}) to install {{ site.product }} in the application.
30+
{% else %}
31+
1. Create a new {{ site.framework }} application. If you have the [Telerik UI for ASP.NET MVC Visual Studio Extensions]({% slug overview_visualstudio_aspnetcore %}) installed, create a {{ site.product }} application. Name the application `KendoPivotGridV2`. If you decide not to use the Visual Studio Extensions, follow the steps from the [introductory article]({% slug gettingstarted_aspnetmvc %}) to install {{ site.product }} in the application.
32+
{% endif %}
33+
3634
1. Add a PivotGridV2 to the `Index` View.
3735

3836
```HtmlHelper

docs-aspnet/html-helpers/data-management/propertygrid/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ The PropertyGrid provides a variety of options for the items configuration, tool
197197
* [Items]({% slug htmlhelpers_items_propertygrid %})—The configuration of the PropertyGrid items allows you to customize their appearance and behavior.
198198
* [Templates]({% slug htmlhelpers_templates_propertygrid %})—The available templates allow you to control the rendering of the items and toolbar.
199199
* [Events]({% slug htmlhelpers_events_propertygrid %})—The component emits a variety of events that allow you to implement custom functionality.
200-
* [Accessibility]({% slug accessibility_aspnetcore_propertygrid %})—The PropertyGrid is accessible for screen readers, supports WAI-ARIA attributes, and delivers [keyboard shortcuts({% slug keynav_aspnetcore_propertygrid %})] for faster navigation.
200+
* [Accessibility]({% slug accessibility_aspnetcore_propertygrid %})—The PropertyGrid is accessible for screen readers, supports WAI-ARIA attributes, and delivers [keyboard shortcuts]({% slug keynav_aspnetcore_propertygrid %}) for faster navigation.
201201

202202
## Next Steps
203203

docs-aspnet/html-helpers/data-management/treelist/editing/overview.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,12 @@ The TreeList supports the following edit modes:
120120
* [Popup editing]({% slug htmlhelpers_treelist_aspnetcore_popup_editing %})
121121
* [Editing by dragging and dropping of rows]({% slug htmlhelpers_treelist_aspnetcore_drag_drop_editing %})
122122

123+
## Known Limitations
124+
125+
There are limitations when using editing along with other features of the component.
126+
127+
* If filtering is applied and `ServerOperation` is disabled in the DataSource configuration, adding new records is not allowed.
128+
123129
## See Also
124130

125131
* [Editing by the TreeList HtmlHelper for {{ site.framework }} (Demo)](https://demos.telerik.com/{{ site.platform }}/treelist/editing)

docs-aspnet/html-helpers/editors/timepicker/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Use the TimePicker HtmlHelper {% if site.core %}or TagHelper{% endif %} to add t
2828

2929
* The `Name()` configuration method is mandatory as its value is used for the `id` and the `name` attributes of the TimePicker element.
3030

31-
* The `DateInput()` configuration method specifies if the TimePicker will use the [DateInput]{% slug htmlhelpers_dateinput_aspnetcore %}) component for value editing.
31+
* The `DateInput()` configuration method specifies if the TimePicker will use the [DateInput]({% slug htmlhelpers_dateinput_aspnetcore %}) component for value editing.
3232

3333
* The `Value()` configuration method specifies the initially selected time.
3434

docs-aspnet/knowledge-base/eyedropper-imageeditor.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ In the example below, clicking on the image retrieves the color of the pixel cli
8989

9090
## More {{ site.framework }} Editor Resources
9191

92-
* [{{ site.framework }} Image Editor Documentation](({%slug htmlhelpers_imageeditor_aspnetcore%})
92+
* [{{ site.framework }} Image Editor Documentation]({%slug htmlhelpers_imageeditor_aspnetcore%})
9393

9494
* [{{ site.framework }} Image Editor Demos](https://demos.telerik.com/{{ site.platform }}/imageeditor)
9595

docs-aspnet/knowledge-base/filemanager-create-download-command.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ On the server-side, implement a server-side action to return the file for downlo
114114

115115
## More {{ site.framework }} FileManager Resources
116116

117-
* [{{ site.framework }} FileManager Documentation](({%slug htmlhelpers_filemanager_aspnetcore_overview%})
117+
* [{{ site.framework }} FileManager Documentation]({%slug htmlhelpers_filemanager_aspnetcore_overview%})
118118

119119
* [{{ site.framework }} FileManager Demos](https://demos.telerik.com/{{ site.platform }}/filemanager)
120120

docs-aspnet/knowledge-base/gantt-filter-by-resouce-using-multiselect.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ For the complete implementation on how to create a filter for the Gantt by using
3030

3131
## More {{ site.framework }} Gantt Resources
3232

33-
* [{{ site.framework }} Gantt Documentation](({%slug htmlhelpers_gantt_aspnetcore%})
33+
* [{{ site.framework }} Gantt Documentation]({%slug htmlhelpers_gantt_aspnetcore%})
3434

3535
* [{{ site.framework }} Gantt Demos](https://demos.telerik.com/{{ site.platform }}/gantt)
3636

docs/controls/grid/editing/editing.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,13 @@ The following example demonstrates how to configure a basic Grid in the inline o
136136
editable: "inline" // OR editable: { mode : "popup" }
137137
});
138138

139+
## Known Limitations
140+
141+
There are limitations when using editing along with other features of the component.
142+
143+
* If filtering is applied and `serverOperation` is disabled in the DataSource configuration, adding new records is not allowed.
144+
* The component behaves differently, when it is grouped and you add a new record. If `serverOperation` is enabled in the DataSource configuration, the new row is added as part of a separate (duplicate) group. If `serverOperation` is disabled, the new row is added as part of an existing group.
145+
139146
## KB Articles on Editing
140147

141148
* [Customizing the Confirmation Window]({% slug howto_customize_delete_confirmation_dialog_grid %})

0 commit comments

Comments
 (0)