gets the list of IDs of the changed rows
nd_added | boolean | if true, include ids of added rows |
string | the list of IDs of the changed rows |
Available only in PRO Edition
//get the list of changed rows
var ids = myGrid.getChangedRows();
//get the list of changed rows including added rows
var ids = myGrid.getChangedRows(true);
Back to top