Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/23_1' into new-navigation-tree…
Browse files Browse the repository at this point in the history
…-23.1
  • Loading branch information
vladaskorohodova committed Sep 11, 2023
2 parents 9cdbc3f + 8cc948d commit f9599e7
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ The UI component's instance.
##### field(e.model): any
Model data. Available only if you use Knockout.

##### field(e.cancel): Promise<void>
##### field(e.cancel): Boolean | Promise<Boolean> | Promise<void>
**true**, a Promise resolved with **true**, or a rejected Promise stops row insertion.
**false** or a Promise resolved with **false** or **undefined** continues row insertion.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ The UI component's instance.
##### field(e.model): any
Model data. Available only if you use Knockout.

##### field(e.cancel): Boolean | Promise<void>
##### field(e.cancel): Boolean | Promise<Boolean> | Promise<void>
**true**, a Promise resolved with **true**, or a rejected Promise stops row removal.
**false** or a Promise resolved with **false** or **undefined** continues row removal.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ The UI component's instance.
##### field(e.model): any
Model data. Available only if you use Knockout.

##### field(e.cancel): Boolean | Promise<void>
##### field(e.cancel): Boolean | Promise<Boolean> | Promise<void>
**true**, a Promise resolved with **true**, or a rejected Promise stops row updating.
**false** or a Promise resolved with **false** or **undefined** continues row updating.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ The UI component's instance.
##### field(e.model): any
Model data. Available only if you use Knockout.

##### field(e.cancel): Promise<void>
##### field(e.cancel): Boolean | Promise<Boolean> | Promise<void>
**true**, a Promise resolved with **true**, or a rejected Promise stops row insertion.
**false** or a Promise resolved with **false** or **undefined** continues row insertion.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ The UI component's instance.
##### field(e.model): any
Model data. Available only if you use Knockout.

##### field(e.cancel): Boolean | Promise<void>
##### field(e.cancel): Boolean | Promise<Boolean> | Promise<void>
**true**, a Promise resolved with **true**, or a rejected Promise stops row removal.
**false** or a Promise resolved with **false** or **undefined** continues row removal.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ The UI component's instance.
##### field(e.model): any
Model data. Available only if you use Knockout.

##### field(e.cancel): Boolean | Promise<void>
##### field(e.cancel): Boolean | Promise<Boolean> | Promise<void>
**true**, a Promise resolved with **true**, or a rejected Promise stops row updating.
**false** or a Promise resolved with **false** or **undefined** continues row updating.

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
id: RowInsertingInfo.cancel
type: Promise<void>
type: Boolean | Promise<Boolean> | Promise<void>
---
---
##### shortDescription
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
id: RowRemovingInfo.cancel
type: Boolean | Promise<void>
type: Boolean | Promise<Boolean> | Promise<void>
---
---
##### shortDescription
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
id: RowUpdatingInfo.cancel
type: Boolean | Promise<void>
type: Boolean | Promise<Boolean> | Promise<void>
---
---
##### shortDescription
Expand Down

0 comments on commit f9599e7

Please sign in to comment.