SMART datagrid v.1 > Classes > GridBase
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.
grid.onRowIndicatorCellClicked = function (grid, rowIndex) {
console.log('onRowIndicatorCellClicked: ' + rowIndex);
};