SMART datagrid v1.4 > Classes > GridDataSet

Back  Forward

DataLudi.GridDataSet.onRowInserted  event

데이터행이 추가된 후 발생한다. 

이 이벤트가 발생한 후 onRowCountChanged 이벤트가 발생한다. 또, 추가 직전에는 onRowInserting 이벤트가 발생한다. 

function onRowInserted (ds: GridDataSet, row: Integer);
Returns
Void
Parameters
ds - GridDataSet.
데이터셋.
row - Integer.
새로 추가된 데이터행 번호.
Code -1
    ds.onRowInserted = function (ds, row) {
        console.log("New row is added at " + row);
    }
See Also
onRowCountChanged
onRowInserting
insertRow
appendRow
Examples
GridDataSet Edit