SMART datagrid v1.4 > Classes > GridDataSet

Back  Forward

DataLudi.GridDataSet.onRowDeleted  event

deleteRow 호출로 데이터행이 삭제되면 발생한다. 

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

function onRowDeleted (ds: GridDataSet, row: Integer);
Returns
Void
Parameters
ds - GridDataSet.
데이터셋.
row - Integer.
삭제된 행 번호.
Code -1
    ds.onRowDeleted = function (ds, row) {
        console.log('Data row deleted at ' + row);
    };
See Also
onRowCountChanged
onRowDeleting
deleteRow
Examples
GridDataSet Edit