CellPicker.TableSelected

Syntax

TableSelected: function (sender, args)

Parameters

sender. Event source.

args. Event information.

Description

The TableSelected event occurs after the number of rows and columns is selected.

Example

To execute the example, create the CellPicker component (see CellPicker constructor ) named CP. Add the TableSelected event handler:

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

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

    });

After the number of rows and columns is selected that is after the cells are selected on clicking the mouse then message with the information concerning the number of rows and columns in the tables is displayed.

See also:

CellPicker