Check documentation for the latest version of dhtmlxSuite getRowId DHTMLX Docs

getRowId

gets the row id by the row index

string|number getRowId(number ind);
indnumberrow index
string|numberthe id of the row

Example

//get ID of the first row
var rowID=myGrid.getRowId(0);

Back to top