You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs-aspnet/html-helpers/data-management/grid/appearance/adaptive-tools.md
+1-2Lines changed: 1 addition & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,8 +21,7 @@ The tools appear in the ActionSheet automatically on small or medium screen size
21
21
To enable sorting in adaptive mode, configure the Grid with `Sortable()`.
22
22
23
23
* In [single-column sorting mode]({% slug htmlhelpers_grid_aspnetcore_sorting%}#single-column-sorting), the sorting popup will close immediately after a field is selected, and the Grid will be sorted accordingly.
24
-
* In [multi-column]({% slug htmlhelpers_grid_aspnetcore_sorting%}#multi-column-sorting) or
25
-
mixed-column]({% slug htmlhelpers_grid_aspnetcore_sorting%}#mixed-column-sorting) sorting modes, the popup will remain open until the user clicks the **Done** button. Sorting is applied in the background as fields are selected.
24
+
* In [multi-column]({% slug htmlhelpers_grid_aspnetcore_sorting%}#multi-column-sorting) or [mixed-column]({% slug htmlhelpers_grid_aspnetcore_sorting%}#mixed-column-sorting) sorting modes, the popup will remain open until the user clicks the **Done** button. Sorting is applied in the background as fields are selected.
Copy file name to clipboardExpand all lines: docs/accessibility/compliance.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,7 @@ This article lists the accessibility compliance of the Kendo UI for jQuery compo
17
17
18
18
The [Accessibility Conformance Report (ACR)](https://www.section508.gov/sell/acr/) is a document that explains how information and communication technology products such as software, hardware, electronic content, and support documentation conform to leading global accessibility standards. Kendo UI for jQuery provides an ACR through the <ahref="https://www.itic.org/policy/accessibility/vpat"target="_blank">Voluntary Product Accessibility Template (VPAT®)</a>.
19
19
20
-
>tip Download the latest version of the <ahref="assets/KendoUI-VPAT2.4RevINT.doc"download>Kendo UI for jQuery Accessibility Conformance Report</a>.
20
+
>tip Download the latest version of the [Kendo UI for jQuery Accessibility Conformance Report](assets/KendoUI-VPAT2.4RevINT.doc).
Copy file name to clipboardExpand all lines: docs/api/javascript/data/datasource.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -198,7 +198,7 @@ makes an HTTP request for every CRUD operation.
198
198
199
199
### data `Array|String`
200
200
201
-
The array of data items which the data source contains. The data source will wrap those items as [`kendo.data.ObservableObject`](/api/javascript/data/observableobject) or [`kendo.data.Model`](/api/javascript/data/model) (if [`schema.model`](/api/javascript/data/datasource/configuration/schema.model) is set).
201
+
The array of data items which the data source contains. The data source will wrap those items as [`kendo.data.ObservableObject`](/api/javascript/data/observableobject) or [`kendo.data.Model`](/api/javascript/data/model) (if [`schema.model`](/api/javascript/data/datasource/configuration/schema#schemamodel) is set).
202
202
203
203
Can be set to a string value if the [`schema.type`](/api/javascript/data/datasource#configuration-schema.type) option is set to `"xml"`.
204
204
@@ -3560,10 +3560,10 @@ The optional data item (model). If specified, only the changes of this data item
3560
3560
Gets or sets the data items of the data source.
3561
3561
3562
3562
If the data source is bound to a remote service (via the [`transport`](/api/javascript/data/datasource#configuration-transport) option), the `data` method will return the service response.
3563
-
Every item from the response is wrapped in a [`kendo.data.ObservableObject`](/api/javascript/data/observableobject) or [`kendo.data.Model`](/api/javascript/data/model) (if the [`schema.model`](/api/javascript/data/datasource/configuration/schema.model) option is set).
3563
+
Every item from the response is wrapped in a [`kendo.data.ObservableObject`](/api/javascript/data/observableobject) or [`kendo.data.Model`](/api/javascript/data/model) (if the [`schema.model`](/api/javascript/data/datasource/configuration/schema#schemamodel) option is set).
3564
3564
3565
3565
If the data source is bound to a JavaScript array (via the [`data`](/api/javascript/data/datasource#configuration-data) option), the `data` method will return the items of that array.
3566
-
Every item from the array is wrapped in a [`kendo.data.ObservableObject`](/api/javascript/data/observableobject) or [`kendo.data.Model`](/api/javascript/data/model) (if the [`schema.model`](/api/javascript/data/datasource/configuration/schema.model) option is set).
3566
+
Every item from the array is wrapped in a [`kendo.data.ObservableObject`](/api/javascript/data/observableobject) or [`kendo.data.Model`](/api/javascript/data/model) (if the [`schema.model`](/api/javascript/data/datasource/configuration/schema#schemamodel) option is set).
3567
3567
3568
3568
If the data source is grouped (via the [`group`](/api/javascript/data/datasource#configuration-group) option or the [group](/api/javascript/data/datasource/methods/group) method) and the [`serverGrouping`](/api/javascript/data/datasource#configuration-serverGrouping) is set to `true`, the `data` method will return the group items.
Copy file name to clipboardExpand all lines: docs/api/javascript/data/model.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ res_type: api
8
8
# kendo.data.Model
9
9
10
10
`Model` inherits from the [`ObservableObject`](/api/javascript/data/observableobject) and extends it with fields and methods which enable it to define a schema. The
11
-
[DataSource](/api/javascript/data/datasource) contains instances of the `Model` when the [`schema.model`](/api/javascript/data/datasource/configuration/schema.model) setting is specified.
11
+
[DataSource](/api/javascript/data/datasource) contains instances of the `Model` when the [`schema.model`](/api/javascript/data/datasource/configuration/schema#schemamodel) setting is specified.
12
12
13
13
## Fields
14
14
@@ -344,14 +344,14 @@ Creates a plain JavaScript object which contains all fields of the `Model`. Inhe
344
344
345
345
## Events
346
346
347
-
### change event
347
+
### change
348
348
349
349
Fires when a field value is updated through the `set` method. Inherited from `kendo.data.ObservableObject`. For more information and examples, refer to the [`change`](/api/javascript/data/observableobject/events/change) API reference.
350
350
351
-
### get event
351
+
### get
352
352
353
-
Fires when the `get` method is invoked. Inherited from `kendo.data.ObservableObject`. For more information and examples, refer to the [`get`](/api/javascript/data/observableobject/events/get event) API reference.
353
+
Fires when the `get` method is invoked. Inherited from `kendo.data.ObservableObject`. For more information and examples, refer to the [`get`](/api/javascript/data/observableobject/events/get) API reference.
354
354
355
-
### set event
355
+
### set
356
356
357
-
Fires when the `set` method is invoked. Inherited from `kendo.data.ObservableObject`. For more information and examples, refer to the [`set`](/api/javascript/data/observableobject/events/set event) API reference.
357
+
Fires when the `set` method is invoked. Inherited from `kendo.data.ObservableObject`. For more information and examples, refer to the [`set`](/api/javascript/data/observableobject/events/set) API reference.
0 commit comments