editEnd()
finishes editing in a cell
editEnd(withoutSave?: boolean): void;
Parameters:
withoutSave: boolean
- defines whether the edited data will be saved after the editing of a cell is complete. If set to true, the edited data won't be saved.
Example
treegrid.editEnd(); // the edited data will be saved
treegrid.editEnd(true); // the edited data won't be saved
The method works with any type of cell editors, except for checkbox.
Change log:
added in v6.3