Check documentation for the latest version of dhtmlxSuite getAllRowIds DHTMLX Docs

getAllRowIds

gets the list of all row ids in the grid

string getAllRowIds(string separator);
separatorstringdelimiter to be used in the list (optional, comma by default)
stringthe list of all row ids in the grid

Example

//return the list of row ids with comma delimiter var ids=myGrid.getAllRowIds(); //return the list of row ids with dot delimiter var ids=myGrid.getAllRowIds(".");

Back to top