Documentation

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",
        ...
    })

    See also

    Details

    Multiselection can be enabled the following way:

    webix.ui({
        view:"datatable",
        multiselect:true,
        ..//config
    });
    Back to top