DataGrid.SavingRanges

Syntax

SavingRanges: function(sender, args);

Parameters

sender. Event source.

args. Event information.

Description

The SavingRanges event occurs on starting of saving table data series ranges.

Example

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:

DataGrid