Skip to content

Commit b9daff1

Browse files
author
Kendo Bot
committed
Sync with Kendo UI Professional
1 parent d6ac41f commit b9daff1

File tree

5 files changed

+10
-8
lines changed

5 files changed

+10
-8
lines changed

docs/controls/data-management/grid/appearance/adaptive.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ The column resizing feature on touch screen devices is triggered when the user h
121121

122122
**Figure 1: Grid with resizable columns on a mobile device**
123123

124-
![](/controls/data-management/grid/adaptive-resizing-icon.png)
124+
![](/controls/data-management/grid/appearance/adaptive-resizing-icon.png)
125125

126126
## Grid Specifics
127127

docs/framework/datasource/crud.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ The `update` configuration setting of the DataSource should define a function th
100100
> **Important**
101101
> * The Kendo UI DataSource uses the ID value to determine whether a data item is new or existing.
102102
> * If the ID value is `zero`, it is assumed that the data item is new, so the `create` function is executed.
103-
> * If you need to use zero ID values, then change the [`defaultValue`](/api/javascript/data/model/methods/model.define) of the ID field to -1 in
103+
> * If you need to use zero ID values, then change the [`defaultValue`](/api/javascript/data/model/methods/define) of the ID field to -1 in
104104
[`schema.model.fields`](/api/javascript/data/datasource/configuration/schema.model).
105105

106106
### Create (Local)

docs/intro/widget-basics/editing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ Here are the actions that are taken during a model update and which create the i
217217

218218
**Solution**
219219

220-
Define a valid `defaulValue` by using the [`schema.model.fields.defaultValue` option](/api/javascript/data/model/methods/model.define).
220+
Define a valid `defaulValue` by using the [`schema.model.fields.defaultValue` option](/api/javascript/data/model/methods/define).
221221

222222
## See Also
223223

styles/web/common/pager.less

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,7 @@
150150
@media only screen and (max-width: 1024px) {
151151
.k-webkit,
152152
.k-ff,
153+
.k-ie10,
153154
.k-ie11,
154155
.k-edge,
155156
.k-safari {
@@ -274,6 +275,7 @@
274275
@media only screen and (max-width: 640px) {
275276
.k-webkit,
276277
.k-ff,
278+
.k-ie10,
277279
.k-ie11,
278280
.k-edge,
279281
.k-safari {
@@ -286,6 +288,7 @@
286288
@media only screen and (max-width: 480px) {
287289
.k-webkit,
288290
.k-ff,
291+
.k-ie10,
289292
.k-ie11,
290293
.k-edge,
291294
.k-safari {

typescript/kendo.all.d.ts

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -918,14 +918,13 @@ declare namespace kendo.data {
918918
}
919919

920920
interface DataSourceTransport {
921-
create?: DataSourceTransportCreate | ((options: DataSourceTransportOptions) => void);
922-
destroy?: DataSourceTransportDestroy | ((options: DataSourceTransportOptions) => void);
921+
create?: string | DataSourceTransportCreate | ((options: DataSourceTransportOptions) => void);
922+
destroy?: string | DataSourceTransportDestroy | ((options: DataSourceTransportOptions) => void);
923923
push?: Function;
924924
submit?: Function;
925-
read?: DataSourceTransportRead | ((options: DataSourceTransportOptions) => void);
925+
read?: string | DataSourceTransportRead | ((options: DataSourceTransportOptions) => void);
926926
signalr?: DataSourceTransportSignalr | ((options: DataSourceTransportOptions) => void);
927-
update?: DataSourceTransportUpdate | ((options: DataSourceTransportOptions) => void);
928-
927+
update?: string | DataSourceTransportUpdate | ((options: DataSourceTransportOptions) => void);
929928
parameterMap?(data: DataSourceTransportParameterMapData, type: string): any;
930929
}
931930

0 commit comments

Comments
 (0)