CellPicker.SelectionChanged

Syntax

SelectionChanged: function (sender, args)

Parameters

sender. Event source.

args. Event information.

Description

The SelectionChanged event happens when selecting the cells.

Example

To execute the example, create the CellPicker component (see The CellPicker constructor named CP. Add the handler of the SelectionChanged event:

CP.SelectionChanged.add(function (sender, args) {

        alert(args.RowCount + "x" + args.ColumnCount);

    });

After executing the example on hovering over component area: that is, on cell selection, the screen shows a message that contains information on the number of rows and columns in selected range.

See also:

CellPicker