SavingRanges: function(sender, args);
sender. Event source.
args. Event information.
The SavingRanges event occurs on starting of saving table data series ranges.
To execute the example, the HTML page must contain the DataGrid named grid (see Example of Creating an Asynchronous Data Table). Set the SavingRanges event handler:
// Set the SavingRanges event handler grid.SavingRanges.add(function() { console.log("SavingRanges event"); });
Copy the first table row and insert copy result to the second row position:
After executing the example the browser console displays a message about occurring the SavingRanges event:
SavingRanges event
See also: