Check documentation for the latest version of dhtmlxSuite getChangedRows DHTMLX Docs

getChangedRows

gets the list of IDs of the changed rows

string getChangedRows(boolean nd_added);
nd_addedbooleanif true, include ids of added rows
stringthe list of IDs of the changed rows

Available only in PRO Edition

Example

//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