select of ui.datatable, Properties Webix Docs

StartAPI Referenceui.datatableProperties

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

  • Back to top

    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.