onInlineEdited
The event occurs when a data cell in a grid has been modified via inline edit. The grid must have the Inline Edit setting set to 'enabled' for this to happen.
The eventArgs object is available in the event. It contains the following information:
eventArgs.details.oldData: a complete listing of the data row before the modification
eventArgs.details.newData: a complete listing of the data row after the change
eventArgs.details.changedData: only the changed data
Each element always contains the id of the record.
Example:
Example response for a change:
Code example to check if a specific field was changed:
Last updated
Was this helpful?