SMART datagrid v1.4 > Classes > GridBase

[ grids ver.1.3.2]   Back  Forward

DataLudi.GridBase.onDataCellClick  event

데이터셀에 마우스 down이 실행되면 발생한다. 

동일한 데이터셀에서 마우스 down/up이 실행되면 onDataCellClicked 이벤트가 발생한다. 

function onDataCellClick (grid: GridBase, index: CellIndex);
Returns
Void
Parameters
grid - GridBase.
index - CellIndex.
Code -1
    grid.onDataCellClick = function (grid, index) {
        console.log('data cell click: ' + index.column.name() + ', ' + index.rowIndex);
    };
See Also
onDataCellClicked
onDataCellDblClicked
onCurrentChanging
onCurrentChanged
Examples
Hello Grid
Focused Cell