Available only in PRO Edition
You can select items within the Organogram component.
By default, selection is disabled in Organogram. To activate it you should set the select parameter to true.
Enabling selection in Organogram
orgChart = new webix.ui({
view: "organogram",
...
select: true
})
Related sample: Organization Chart
getSelectedId | method | returns the selected cells ids |
select | method | selects the specified item |
selectAll | method | selects all items |
isSelected | method | checks whether the specified item is selected or not |
unselect | method | cancels selection of the specified item |
unselectAll | method | removes selection from all items |
onAfterSelect | event | fires after a cell is selected |
onBeforeSelect | event | fires before a cell is selected |
onSelectChange | event | fires when selection is changed in DataTable |