GridView.SelectionChanged

Syntax

SelectionChanged: function (sender, args);

Parameters

sender. Event source.

args. Event information.

Description

The SelectionChanged event is fired on changing selected cell range.

Example

To execute this example, the HTML page must contain a ReportBox component named reportBox (see Example of the ReportBox Component Layout). Add

a handler for the SelectionChanged event:

reportBox.getDataView().getGridView().SelectionChanged.add(function (sender, args) {

     alert ("Selected range changed")

);

After selecting a range of table cells the following message is displayed to the screen: Selected range changed.

See also:

GridView