sets the selection mode in DataTable
webix.ui({
view:"datatable",
select:"cell",
...
})
Multiselection can be enabled the following way:
webix.ui({
view:"datatable",
multiselect:true,
..//config
});
Back to top