editaction
defines the action on which editors will be opened
string editaction;
Values
"click"
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"
...
});
Default value:
"click"
Related samples
See also
Back to top