SMART datagrid v.1 > Classes > GridDataSet

Back  Forward

DataLudi.GridDataSet.onRowInserted  event

データ行が追加になった後発生する。 追加の直前には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
onRowInserting
insertRow
addRow
Examples