In whdg there are client methods in behaviors providing exiting from editing mode of the cell.
Is there a way to find out on the client side if the value of the cell were changed without going into client methods of editor providers.
Thanks
Hi mcseidel,
if you enable BatchUpdating you can get all edited rows:var grid = $find('WebHierarchicalDataGrid1');var editedRows = grid.get_gridView().get_behaviors().get_editingCore().get_editedRows();
Let me know if this helps