SMART datagrid v1.4 > Classes > GridDataSet
DataLudi.GridDataSet.onRowsUpdating event
updateRows 호출로 복수 행들을 추가하기 직전에 발생한다.
이 이벤트 핸들러 내에서 명시적으로 Boolean false를 리턴하면 행 수정이 취소된다. 또, 수정된 직 후에는 onRowsUpdated 이벤트가 발생한다.
function onRowsUpdating (ds: GridDataSet, row: Integer, rows: [Integer], start: Integer, count: Integer): Boolean;
- Returns
- Boolean
- Parameters
- ds - GridDataSet.
- row - Integer.
- rows - [Integer].
- start - Integer.
- count - Integer.
Code -1
ds.onRowsUpdating = function (ds, row, rows, start, count) {
if (!$('#updatable')[0].checked) return false;
};
- See Also
- onRowsUpdated
- updateRows
- Examples
- GridDataSet Edit