Skip to content

Commit

Permalink
Grids: update 'changes' in onSaved/onSaving (#6986) (#6993)
Browse files Browse the repository at this point in the history
  • Loading branch information
vladaskorohodova authored Jan 17, 2025
1 parent e95f171 commit 21dc894
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ A function that is executed after row changes are saved.
Information about the event that caused the function's execution.

##### field(e.changes): Array<DataChange>
Saved changes.
Entire row data (including changes). Differs from [onSaving]({basewidgetpath}/Configuration/#onSaving), which only consists of pending changes.

##### field(e.component): {WidgetName}
The UI component's instance.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Information about the event that caused the function's execution.
Set this field to **true** if the default saving logic should be disabled.

##### field(e.changes): Array<DataChange>
Pending row changes; a copy of the **editing**.[changes](/api-reference/10%20UI%20Components/GridBase/1%20Configuration/editing/changes.md '{basewidgetpath}/Configuration/editing/changes/') array.
Pending row changes; a copy of the **editing**.[changes](/api-reference/10%20UI%20Components/GridBase/1%20Configuration/editing/changes.md '{basewidgetpath}/Configuration/editing/changes/') array. Includes only row changes, unlike [onSaved]({basewidgetpath}/Configuration/#onSaved), which contains all row data (including changes).

##### field(e.component): {WidgetName}
The UI component's instance.
Expand Down

0 comments on commit 21dc894

Please sign in to comment.