onDataUpdate
fires when a data item is being updated
function onDataUpdate( // the ID of an item id: string|number, // the new data object data: object, // the old data object old: object): void
Example
Section titled “Example”grid.data.attachEvent("onDataUpdate", function(id, data, old){ //... some code here ...});