Skip to content

Commit 76644e0

Browse files
docs(grid): clarify event handlers arguments
1 parent 83e2545 commit 76644e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/grid/editing/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ List of the available events:
2121
* `OnCancel` - fires when the user clicks the `Cancel` command button. Allows you to undo the changes to the data in the context. Cancellable.
2222
* `OnRead` - fires when the grid needs data - after any data source operation like updating, creating, deleting, filtering, sorting. If you cancel the CUD events, the [OnRead]({%slug components/grid/manual-operations%}) event will not fire.
2323

24-
The event handlers receive an argument of type `GridCommandEventArgs` that exposes the following fields:
24+
The CUD event handlers receive an argument of type `GridCommandEventArgs` that exposes the following fields:
2525

2626
* `IsCancelled` - a boolean field indicating whether the grid operation is to be prevented (for example, prevent a row from opening for edit, or from updating the data layer).
2727
* `IsNew` - a boolean field idicating whether the item was just added through the grid. Lets you differentiate a data source Create operation from Update operation in the `OnClick` event of a command button.

0 commit comments

Comments
 (0)