SMART datagrid v.1 > Classes > GridBase

Back  Forward

DataLudi.GridBase.onRowIndicatorCellClicked  event

It will be fired when click RowIndicator cell. 

If sequentially run mouse down and up in the same cell, this event will be fired. It will not be fired if down and up have been run in different cells. If run mouse down, onRowIndicatorCellClick event will be fired first. 

function onRowIndicatorCellClicked (grid: GridBase, rowIndex: Integer);
Returns
Void
Parameters
grid - GridBase.
rowIndex - Integer.
Code -1
    grid.onRowIndicatorCellClicked = function (grid, rowIndex) {
        console.log('onRowIndicatorCellClicked: ' + rowIndex);
    };
See also
onRowIndicatorCellClick
onRowIndicatorCellDblClicked
RowIndicator
Examples
Row Indicator