SMART datagrid v1.4 > Classes > GridDataSet

Back  Forward

DataLudi.GridDataSet.onRowsDeleted  event

rows 매개변수에 포함된 데이터행들이 삭제된 후 발생한다. 

이 이벤트가 발생한 후 onRowCountChanged 이벤트가 발생한다. 또, 삭제되기 직전에는 onRowsDeleting 이벤트가 발생한다. 

function onRowsDeleted (ds: GridDataSet, rows: [Integer]);
Returns
Void
Parameters
ds - GridDataSet.
데이터셋.
rows - [Integer].
삭제된 행번호 배열.
Code -1
    dataset.onRowsDeleted = function (ds, rows) { 
        alert(rows.length + "개의 행이 삭제되었습니다.");
    }
See Also
onRowCountChanged
onRowsDeleting
Examples
Grid DataSet 수정