DataGrid.MeasuresParsed

Syntax

MeasuresParsed: function(sender, args);

Parameters

sender. Event source.

args. Event information.

Description

The MeasuresParsed event occurs on getting dimensions of table data source.

Example

To execute the example, the HTML page must contain the DataGrid named grid (see Example of Creating the DataGrid Component). Set a handler for the MeasuresParsed event and call repeat loading of table data:

// Set the MeasuresParsed event handler
grid.MeasuresParsed.add(function() {
    console.log("MeasuresParsed event");
});
// Load again table data from source
grid.reset();

After executing the example the browser console displays a message about occurring the MasuresParsed vent:

MeasuresParsed event

See also:

DataGrid