returns the value from the editor(if presents) to the cell and closes the editor
ode | boolean | if true - current edit value will be reverted to the previous one |
//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