SMART datagrid v.1 > Classes > CellIndex
GridColumn object corresponding to the cell of this location.
The Index of Row which contains the cell is set by rowIndex.
var column: GridColumn = null;
$('#setColor').click(function () {
var index = grid.focusedIndex();
if (index.column) {
index.column.setStyles({
color: "#f00"
});
}
}