Documentation

threeState

defines three-state checkboxes for the tree. Flase by default.

boolean threeState;

Example

webix.ui({
    view:"tree",
    template:"{common.icon()} {common.checkbox()} {common.folder()} #value#",
    threeState: true,
    ...
});

See also

Details

Three state checkboxes define the peculiar behaviour of a checkbox tree, namely:

  • When the user checks/unchecks a parent node - this parent node and all its child nodes (of each nesting level) are checked/unchecked;
  • When the user checks/unchecks a child node - this only node is checked/unchecked.
Back to top