SMART datagrid v1.4 > Classes > GridRow
그리드 행의 편집 및 포커스 상태를 나타내는 GridRowState 상수 값.
사용자는 RowIndicator 셀에 표시되는 상태 마크로 확인할 수 있다.
기본값은 GridRowState.NORMAL.
$('#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();
}
}
});