I would like to multi select non adjance cells and save value to call.
Currently I set selectionMode: 'multiple'
and create custom editor with finishEditing like this
finishEditing(restoreOriginalValue: boolean, ctrlDown: boolean, callback: Function) {
super.finishEditing(restoreOriginalValue, true, callback);
}
The documentation says
“If
ctrlDown
is set to true the new value will be set to all selected cells.”
However it only save the value to the last selected cells. What did I do wrong?