select of ui.datatable, Properties Webix Docs
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
API
Articles
If you have not checked yet, be sure to visit site of our main product Webix javascript ui framework and page of web datagrid product.