SMART datagrid v.1 > Classes > GridBase

Back  Forward

DataLudi.GridBase.focusedColumn  property

The Column in which contains data cell who currently has input focus. 

You can know the cell location through focusedIndex

Getter
function focusedColumn(): GridColumn
Code -1
    $('#name').click(function () {
        var column = grid.focusedColumn();
        if (column) {
            alert(column.name());
        }
    });
See Also
focusedIndex
focusedRow
focusedDataRow
onCurrentChanging
onCurrentChanged
onCurrentRowChanged
CellIndex
Examples
Focused Cell