editaction
defines the action on which editors will be opened
string editaction;
Values
click
(default) opens the editor on a single click
dblclick
opens the editor on a double click
custom
allows only programmatic editing (denies opening editors for manual editing)
Example
webix.ui({
view:"datatable",
editable:true,
editaction:"dblclick"
...
});
See also
Back to top