Check documentation for the latest version of dhtmlxSuite changeRowId DHTMLX Docs

changeRowId

changes id of the row to the new one

void changeRowId(string|number oldRowId,string|number newRowId);
oldRowIdstring|numberrow id to change
newRowIdstring|numberrow id to set

Example

myTreeGrid.changeRowId("old_rowID","new_rowID");

Back to top