Skip to content

select

sets the selection mode in DataGrid

let select: boolean|string
  • “cell” - sets the cell selection
  • “row” - sets the row selection
  • “column” - sets the column selection
  • true - sets the row selection
  • false - disables selection
webix.grid({
select:"cell",
...
});

also check the next samples:

Multiselection can be enabled the following way:

webix.grid({
multiselect:true,
..//config
});

Articles

API