TableSelected: function (sender, args)
sender. Event source.
args. Event information.
The TableSelected event occurs after the number of rows and columns is selected.
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 mouse click, the message with the information concerning the number of table rows and columns is displayed.
See also: