The Grid supports editing features including creating, updating and deleting rows. Use the corresponding plugins to manage the editing state and perform editing operations programmatically or via the UI controls. The editing state contains information about rows currently being edited, changes applied to a particular row, and rows that have been deleted and created but not yet committed. Once a user accepts row addition or deletion, or changes made to a row (clicking the Save or Delete button), the Grid fires the DxEditingState
plugin’s commitChanges
event and resets the row’s editing state.
The following plugins implement editing features:
Note that the plugin order is important.
Add the plugins listed above to the Grid to set up a simple Grid supporting editing features.
Specify the editing state values using the following DxEditingState
plugin’s property pairs to set a state value and subscribe its changes:
editingRowIds
and update:editingRowIds
- the rows being editedaddedRows
and update:addedRows
- the rows being addedrowChanges
and update:rowChanges
- the row changesdeletedRowIds
and update:deletedRowIds
- the rows being deletedUse the .sync
modifier for two-way binding.
Handle the DxEditingState
plugin’s commitChanges
event to commit changes made by an end-user to your data store.
You can prevent editing of a specific column using the DxEditingState plugin’s columnExtensions
property.