SMART datagrid v.1 > Classes > GridBase
It will be fired if run mouse down in data cell.
If run mouse down/up in the same data cell, onDataCellClicked event will be fired.
grid.onDataCellClick = function (grid, index) {
console.log('data cell click: ' + index.column.name() + ', ' + index.rowIndex);
};