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/api/javascript/data/binder.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
@@ -13,7 +13,7 @@ The base class of the Kendo UI MVVM-style bindings. Creates custom MVVM bindings
13
13
14
14
### bindings `Object`
15
15
16
-
Represents all bindings applied to the current HTML [element](#fields-element). Gets or sets the current view-model field value.
16
+
Represents all bindings applied to the current HTML [element](/api/javascript/data/binder#fields-element). Gets or sets the current view-model field value.
Copy file name to clipboardExpand all lines: docs/api/javascript/data/hierarchicaldatasource.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
@@ -333,7 +333,7 @@ Gets or sets the filter configuration. It applies the filter to all loaded nodes
333
333
334
334
##### value `Object`*(optional)*
335
335
336
-
The filter configuration. Accepts the same values as the [`filter`](#configuration-filter) option (**check there for more examples**).
336
+
The filter configuration. Accepts the same values as the [`filter`](/api/javascript/data/hierarchicaldatasource#configuration-filter) option (**check there for more examples**).
Copy file name to clipboardExpand all lines: docs/api/javascript/data/model.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -262,10 +262,10 @@ ObservableObject API reference.
262
262
263
263
### get event
264
264
265
-
Raised when the `get` method is invoked. Inherited from `kendo.data.ObservableObject`. Examples and more info can be found in the [get](/api/javascript/data/observableobject/events/get) section of the
265
+
Raised when the `get` method is invoked. Inherited from `kendo.data.ObservableObject`. Examples and more info can be found in the [get](/api/javascript/data/observableobject/events/get event) section of the
266
266
ObservableObject API reference.
267
267
268
268
### set event
269
269
270
-
Raised when the `set` method is invoked. Inherited from `kendo.data.ObservableObject`. Examples and more info can be found in the [set](/api/javascript/data/observableobject/events/set) section of the
270
+
Raised when the `set` method is invoked. Inherited from `kendo.data.ObservableObject`. Examples and more info can be found in the [set](/api/javascript/data/observableobject/events/set event) section of the
Copy file name to clipboardExpand all lines: docs/api/javascript/data/observablearray.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -132,7 +132,7 @@ Gets the parent of the array if such parent exists.
132
132
133
133
Removes the last item from an array and returns that item. Equivalent of [Array.prototype.pop](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/pop).
134
134
135
-
> **Important**: The `pop` method raises the [change](#events-change) event. The `action` field of the
135
+
> **Important**: The `pop` method raises the [change](/api/javascript/data/observablearray/events/change) event. The `action` field of the
136
136
event argument is set to `"remove"`. The `items` field of the event argument is the array that contains the removed item.
137
137
138
138
#### Returns
@@ -153,7 +153,7 @@ event argument is set to `"remove"`. The `items` field of the event argument is
153
153
Appends the given items to the array and returns the new length of the array. Equivalent of [Array.prototype.push](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/push).
154
154
The new items are wrapped as `ObservableObject` if they are complex objects.
155
155
156
-
> **Important**: The `push` method raises the [change](#events-change) event. The `action` field of the
156
+
> **Important**: The `push` method raises the [change](/api/javascript/data/observablearray/events/change) event. The `action` field of the
157
157
event argument is set to `"add"`. The `items` field of the event argument is the array that contains the appended items.
158
158
159
159
#### Returns
@@ -216,7 +216,7 @@ end of the sequence.
216
216
Changes an `ObservableArray`, by adding new items while removing old items. Equivalent of
> **Important**: The `splice` method raises the [change](#events-change) event once or twice depending on the change. The `action` field of the
219
+
> **Important**: The `splice` method raises the [change](/api/javascript/data/observablearray/events/change) event once or twice depending on the change. The `action` field of the
220
220
event argument is set to `"add"` (if items are added) or `"remove` (if items are removed). The `items` field of the event argument is the array that
221
221
contains the appended items or removed items. In the above example the `change` event will be raised two times - first because "baseball" is removed and
222
222
second because "tennis" and "hockey" are added.
@@ -288,7 +288,7 @@ Returns a JavaScript Array which represents the contents of the `ObservableArray
288
288
289
289
Adds one or more items to the beginning of an `ObservableArray` and returns the new length. Equivalent of [Array.prototype.unshift](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/unshift).
290
290
291
-
> **Important**: The `unshift` method raises the [change](#events-change) event. The `action` field of the
291
+
> **Important**: The `unshift` method raises the [change](/api/javascript/data/observablearray/events/change) event. The `action` field of the
292
292
event argument is set to `"add"`. The `items` field of the event argument is an array that
Copy file name to clipboardExpand all lines: docs/api/javascript/data/query.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
@@ -111,7 +111,7 @@ Returns a copy of the list filtered according to the expression
111
111
112
112
##### expression `Object`
113
113
114
-
The filter configuration. Accepts the same values as the [filter](datasource#configuration-filter) option (**check there for more examples**).
114
+
The filter configuration. Accepts the same values as the [filter](/api/javascript/datasource#configuration-filter) option (**check there for more examples**).
115
115
116
116
#### Returns
117
117
@@ -125,7 +125,7 @@ Returns a copy of the list grouped according to the descriptor
125
125
126
126
##### descriptor `Object`
127
127
128
-
The grouping configuration. Accepts the same values as the [group](datasource#configuration-group) option.
128
+
The grouping configuration. Accepts the same values as the [group](/api/javascript/datasource#configuration-group) option.
129
129
130
130
#### Returns
131
131
@@ -145,7 +145,7 @@ The data items collection
145
145
146
146
##### options `Object`
147
147
148
-
Accepts the same values as the [DataSource query](datasource#methods-query) method.
148
+
Accepts the same values as the [DataSource query](/api/javascript/datasource/methods/query) method.
Copy file name to clipboardExpand all lines: docs/api/javascript/dataviz/chart/chart_point.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
@@ -24,7 +24,7 @@ The point value represented as a percentage value. Available only for donut, pie
24
24
25
25
### runningTotal `Number`
26
26
27
-
The sum of point values since the last "runningTotal" [summary point](/api/javascript/dataviz/ui/chart.html/configuration/series.summaryfield). Available for waterfall series points.
27
+
The sum of point values since the last "runningTotal" [summary point](/api/javascript/dataviz/ui/chart/configuration/series.summaryfield). Available for waterfall series points.
0 commit comments