select
sets the selection mode in DataTable
boolean|string select;
Values
"cell"
sets the cell selection
"row"
sets the row selection
"column"
sets the column selection
true
sets the row selection
false
disables selection
Example
webix.ui({
view:"datatable",
select:"cell",
...
});
Related samples
Details
Multiselection can be enabled the following way:
webix.ui({
view:"datatable",
multiselect:true,
..//config
});
See also
Back to top
Join Our Forum
We've retired comments here. Visit our forum for faster technical support,
connect with other developers, and share your feedback there.