SMART datagrid v1.4 > Classes > GridBase

Back  Forward

DataLudi.GridBase.focusedColumn  property

현재 입력 포커스를 갖는 데이터셀이 포함된 컬럼

셀 위치는 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