Check documentation for the latest version of dhtmlxSuite editStop DHTMLX Docs

editStop

returns the value from the editor(if presents) to the cell and closes the editor

void editStop(boolean ode);
odebooleanif true - current edit value will be reverted to the previous one

Example

//close opened editor and return value from editor to the cell
myTreeGrid.editStop();
//close opened editor and revert cell value to the previous one
myTreeGrid.editStop(true);

Back to top