SMART datagrid v.1 > Classes > CellIndex
If the cell of this location is a valid data cell, it will return the value of cell.
If it is not a data cell, it will return undefined.
$('#getValue').click(function () {
var index = grid.focusedIndex();
if (grid.isValidCell(index)) {
$('#value').val(index.getValue());
}
});