Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DocGen 23_1 [09/08/23] #5552

Merged
merged 1 commit into from
Sep 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading