SMART datagrid v1.4 > Classes > CellIndex

Back  Forward

DataLudi.CellIndex.normalize  method

이 CellIndex가 타당한 위치를 지정할 수 있도록 값들을 조정한다. 

rowIndex는 0 이상, GridBase.rowCount 보다 작게 하고, columnnull이면 grid에 표시되는 첫번째 컬럼이 되도록 재설정한다. 

function normalize (gird: GridView): CellIndex;
Returns
CellIndex
Parameters
gird - GridView. required.
그리드 객체.
Code -1
    $('#focus').click(function () {
        var index = grid.focusedIndex();
        if (!grid.isValidCell(index)) {
            index.normalize();
            grid.setFocusedIndex(index);
        }
    })
See Also
rowIndex
column
getRow
getValue
GridRow
GridColumn
Examples
포커스 셀