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
    If you have not checked yet, be sure to visit site of our main product Webix javascript website framework and page of tree grid ui product.