Skip to content

Commit 3f74117

Browse files
author
Kendo Bot
committed
Sync with Kendo UI Professional
1 parent a24c184 commit 3f74117

File tree

92 files changed

+962
-837
lines changed

Some content is hidden

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

92 files changed

+962
-837
lines changed

docs/_assets/javascripts/api.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,8 +181,9 @@ function getBreadcrumbDropDownContent(data, breadcrumbsInfo, nestingLevel, lastH
181181

182182
function getPrefix(item, prefixes) {
183183
var result = '';
184+
var searchedItem = item.toLowerCase();
184185
$.each(prefixes, function (index, prefix) {
185-
if (item.indexOf(prefix) > -1) {
186+
if (searchedItem === prefix.toLowerCase()) {
186187
result = prefix + '#';
187188
return false;
188189
}

docs/api/javascript/data/binder.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ The base class of the Kendo UI MVVM-style bindings. Creates custom MVVM bindings
1313

1414
### bindings `Object`
1515

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.
1717

1818
#### Example - getting the view model field
1919

docs/api/javascript/data/datasource.md

Lines changed: 83 additions & 83 deletions
Large diffs are not rendered by default.

docs/api/javascript/data/hierarchicaldatasource.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ Gets or sets the filter configuration. It applies the filter to all loaded nodes
333333

334334
##### value `Object` *(optional)*
335335

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**).
337337

338338
#### Returns
339339

docs/api/javascript/data/model.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -262,10 +262,10 @@ ObservableObject API reference.
262262

263263
### get event
264264

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
266266
ObservableObject API reference.
267267

268268
### set event
269269

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
271271
ObservableObject API reference.

docs/api/javascript/data/node.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ See the [Model fields](/api/framework/model#fields) for all inherited fields.
1616
### children
1717

1818
The child `kendo.data.HierarchicalDataSource` of the node. This field is initialized lazily, if the `hasChildren` field is set,
19-
or when the [load](#methods-load) or [append](#methods-append) methods have been called.
19+
or when the [load](/api/javascript/data/node/methods/load) or [append](/api/javascript/data/node/methods/append) methods have been called.
2020

2121
#### Example - get the child nodes
2222

docs/api/javascript/data/observablearray.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ Gets the parent of the array if such parent exists.
132132

133133
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).
134134

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
136136
event argument is set to `"remove"`. The `items` field of the event argument is the array that contains the removed item.
137137

138138
#### Returns
@@ -153,7 +153,7 @@ event argument is set to `"remove"`. The `items` field of the event argument is
153153
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).
154154
The new items are wrapped as `ObservableObject` if they are complex objects.
155155

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
157157
event argument is set to `"add"`. The `items` field of the event argument is the array that contains the appended items.
158158

159159
#### Returns
@@ -216,7 +216,7 @@ end of the sequence.
216216
Changes an `ObservableArray`, by adding new items while removing old items. Equivalent of
217217
[Array.prototype.splice](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/splice)
218218

219-
> **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
220220
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
221221
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
222222
second because "tennis" and "hockey" are added.
@@ -288,7 +288,7 @@ Returns a JavaScript Array which represents the contents of the `ObservableArray
288288

289289
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).
290290

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
292292
event argument is set to `"add"`. The `items` field of the event argument is an array that
293293
contains the new items.
294294

docs/api/javascript/data/pivotdatasource.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1102,7 +1102,7 @@ Get or sets the columns configuration.
11021102

11031103
##### val `Array`
11041104

1105-
The columns configuration. Accepts the same values as the [columns](#configuration-columns) option.
1105+
The columns configuration. Accepts the same values as the [columns](/api/javascript/data/pivotdatasource#configuration-columns) option.
11061106

11071107
#### Returns
11081108

@@ -1345,7 +1345,7 @@ Get or sets the measures configuration.
13451345

13461346
##### val `Array`
13471347

1348-
The measures configuration. Accepts the same values as the [measures](#configuration-measures-values) option.
1348+
The measures configuration. Accepts the same values as the [measures](/api/javascript/data/pivotdatasource#configuration-measures-values) option.
13491349

13501350
#### Returns
13511351

@@ -1433,7 +1433,7 @@ Get or sets the rows configuration.
14331433

14341434
##### val `Array`
14351435

1436-
The rows configuration. Accepts the same values as the [row](#configuration-rows) option.
1436+
The rows configuration. Accepts the same values as the [row](/api/javascript/data/pivotdatasource#configuration-rows) option.
14371437

14381438
#### Returns
14391439

docs/api/javascript/data/query.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ Returns a copy of the list filtered according to the expression
111111

112112
##### expression `Object`
113113

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**).
115115

116116
#### Returns
117117

@@ -125,7 +125,7 @@ Returns a copy of the list grouped according to the descriptor
125125

126126
##### descriptor `Object`
127127

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.
129129

130130
#### Returns
131131

@@ -145,7 +145,7 @@ The data items collection
145145

146146
##### options `Object`
147147

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.
149149

150150
#### Returns
151151

docs/api/javascript/dataviz/chart/chart_point.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ The point value represented as a percentage value. Available only for donut, pie
2424

2525
### runningTotal `Number`
2626

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.
2828

2929
### total `Number`
3030

0 commit comments

Comments
 (0)