Skip to content

Commit 0bf569c

Browse files
author
Kendo Bot
committed
Sync with Kendo UI Professional
1 parent 1e1a98a commit 0bf569c

File tree

20 files changed

+57
-20
lines changed

20 files changed

+57
-20
lines changed

docs-aspnet/_config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -667,10 +667,10 @@ navigation:
667667
baseurl: /aspnet-core
668668

669669
## The Kendo UI version used
670-
cdnVersion: "2022.2.802"
670+
cdnVersion: "2022.3.913"
671671

672672
## The MVC Core version used
673-
mvcCoreVersion: "2022.2.802"
673+
mvcCoreVersion: "2022.3.913"
674674

675675
ff-sheet-id: 1mottKpkbJFxkUq6rS3CsPrT8JQOE2JlUtsJBR622cxs
676676

docs-aspnet/backwards-compatibility/2022-backwards-compatibility.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,21 @@ This article lists the breaking or important changes in the 2022 releases of {{
1212

1313
## {{ site.product }} R3 2022
1414

15+
**Selectable**
16+
17+
As of the 2022 R3 release, the `Selectable` events mechanism is altered for a variety of the components. The `Change` event will now be fired only when Selection/Deselection is performed. Invoking the client-side API methods would not fire the event as well.
18+
19+
Below you can find a list of the impacted components:
20+
21+
* `Grid`
22+
* `Calendar`
23+
* `MultiViewCalendar`
24+
* `ListBox`
25+
* `ListView`
26+
* `TreeList`
27+
* `FileManager`
28+
* `Gantt`
29+
1530
**Badge**
1631

1732
`Shape` property is replaced with `Rounded` and `Fill` property is now called `FillMode`.

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ The Telerik UI FileManager HtmlHelper for {{ site.framework }} is a server-side
2828

2929
The following example demonstrates the initialization of the FileManager with remote binding. The file structure is served as JSON though the FileManager DataSource object.
3030

31+
> As of the 2022 R3 release, the `Selectable` mechanism is altered. The `Change` event will now be fired only when Selection/Deselection is performed.
32+
3133
```HtmlHelper
3234
@(Html.Kendo().FileManager()
3335
.Name("filemanager")

docs-aspnet/html-helpers/data-management/grid/selection.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ position: 8
1010

1111
By default, the selection functionality of the Telerik UI Grid for {{ site.framework }} is disabled.
1212

13+
> As of the 2022 R3 release, the [`Change`](https://docs.telerik.com/{{ site.platform }}/api/Kendo.Mvc.UI.Fluent/GridEventBuilder#changesystemstring) event will now be fired only when Selection/Deselection is performed.
14+
1315
## Getting Started
1416

1517
To control the selection in the Grid, use the `Selectable` property.

docs-aspnet/html-helpers/data-management/listview/selection.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ position: 7
1010

1111
By default, the selection functionality of the Telerik UI ListView for {{ site.framework }} is disabled.
1212

13+
> As of the 2022 R3 release, the [`Change`](https://docs.telerik.com/{{ site.platform }}/api/Kendo.Mvc.UI.Fluent/ListViewEventBuilder#changesystemstring) event will now be fired only when Selection/Deselection is performed.
14+
1315
## Single Selection
1416

1517
The single selection functionality allows the user to select only one item at a time.

docs-aspnet/html-helpers/data-management/treelist/selection.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ To enable the selection functionality of the TreeList, set the `Selectable` opti
3232
```
3333
{% endif %}
3434

35+
> As of the 2022 R3 release, the [`Change`](https://docs.telerik.com/{{ site.platform }}/api/Kendo.Mvc.UI.Fluent/TreeListEventBuilder#changesystemstring) event will now be fired only when Selection/Deselection is performed.
36+
3537
## Single Row Checkbox Selection
3638

3739
To enable checkbox selection, add a column to the `columns` collection of the TreeList and set the `Selectable` option to `true`:

docs-aspnet/html-helpers/editors/listbox/selection.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ position: 5
1111

1212
By default, the ListBox is set into a single-selection mode.
1313

14+
> As of the 2022 R3 release, the [`Change`](https://docs.telerik.com/{{ site.platform }}/api/Kendo.Mvc.UI.Fluent/ListBoxEventBuilder#changesystemstring) event will now be fired only when Selection/Deselection is performed.
15+
1416
## Enabling Multiple Selection
1517

1618
To enable the multiple-selection mode of the ListBox, add `ListBoxSelectable.Multiple` to its settings. When selected, multiple selected items move together, that is, the selected items are transferred to another Telerik UI ListBox together or reordered as a set among other items.

docs-aspnet/html-helpers/scheduling/calendar/selection.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ For a runnable example, refer to [the demo on multiple selection in the Calendar
1616

1717
By default, the Calendar enables the user to select a single date by using the mouse or the keyboard.
1818

19+
> As of the 2022 R3 release, the [`Change`](https://docs.telerik.com/{{ site.platform }}/api/Kendo.Mvc.UI.Fluent/CalendarEventBuilder#changesystemstring) event will now be fired only when Selection/Deselection is performed.
20+
1921
## Multiple Date Selection
2022

2123
As of the 2017 R3 release, the Calendar allows you to implement the multiple date selection by using the `selectable` configuration property.

docs-aspnet/html-helpers/scheduling/gantt/overview.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ The Gantt displays a set of tasks and dependencies which are used to visualize p
2222
* [Demo page for the Gantt TagHelper](https://demos.telerik.com/aspnet-core/gantt/tag-helper)
2323
{% endif %}
2424

25+
> As of the 2022 R3 release, the `Selectable` mechanism is altered. The [`Change`](https://docs.telerik.com/{{ site.platform }}/api/Kendo.Mvc.UI.Fluent/GanttEventBuilder#changesystemstring) event will now be fired only when Selection/Deselection is performed.
26+
2527
## Initializing the Gantt
2628

2729
The following example demonstrates how to define the Gantt.

docs-aspnet/html-helpers/scheduling/multiviewcalendar/selection.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ position: 4
1111

1212
The Telerik UI MultiViewCalendar allows the user to select multiple dates by using the multiple-view MultiViewCalendar selection mode.
1313

14+
> As of the 2022 R3 release, the [`Change`](https://docs.telerik.com/{{ site.platform }}/api/Kendo.Mvc.UI.Fluent/MultiViewCalendarEventBuilder#changesystemstring) event will now be fired only when Selection/Deselection is performed.
15+
1416
```HtmlHelper
1517
@(Html.Kendo().MultiViewCalendar()
1618
.Name("MultiViewCalendar")

0 commit comments

Comments
 (0)