SMART datagrid v.1 > Classes > CellIndex
It returns Grid Row object of this location.
If column indicates a valid column object, you do not need to specify parameter grid.
$('#expand').click(function () {
var row = grid.focusedIndex().getRow();
if (row instanceof GroupRow) {
row.expand();
}
}