SMART datagrid v.1 > Classes > GridBase
The Column in which contains data cell who currently has input focus.
You can know the cell location through focusedIndex.
$('#name').click(function () {
var column = grid.focusedColumn();
if (column) {
alert(column.name());
}
});