SMART datagrid v.1 > Classes > CellIndex
If column is the first column which is being displayed in grid, it will return true.
var index = grid.focusedIndex();
if (index.isFirstColumn() && index.rowIndex == 0) {
alert('This is First Cell');
}