SMART datagrid v.1 > Classes > GridBase

Back  Forward

DataLudi.GridBase.onRowIndicatorCellClicked  event

当点击RowIndicator单元格时,将会触发这个事件。 

当在相同的单元格中,依次运行鼠标上下方向键时,将会触发这个事件。 如果上下方向键被运行在不同的单元格中,则不会触发这个事件。 如果运行鼠标下方向键,就会首先触发onRowIndicatorCellClick事件。 

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
行指示器