SMART datagrid v1.4 > Classes > GridRow

Back  Forward

DataLudi.GridRow.rowState  property

그리드 행의 편집 및 포커스 상태를 나타내는 GridRowState 상수 값. 

사용자는 RowIndicator 셀에 표시되는 상태 마크로 확인할 수 있다. 

기본값은 GridRowState.NORMAL.

Getter
function rowState(): GridRowState
Code -1
    $('#commit').click(function () {
        var row = grid.focusedRow();

        if (row) {
            var GridRowState = DataLudi.GridRowState;
            var state = row.rowState();
            if (state == GridRowState.UPDATING || state == GridRowState.UPDATING || state == GridRowState.UPDATING) {
                grid.commit();
            }
            // GridRowState 함수를 이용해도 된다.
            if (GridRowState.isEditing(state)) {
                grid.commit();
            }
        }
    });
See Also
GridRowState
dataState
RowIndicator
Examples
Row Indicator