I am using angular-tree-component and I need to implement multiple selection with click+shift keys. Who can help, me please? This is what I have for now. monitoring.ts file:
import { ITreeOptions, TreeNode} from 'angular-tree-component';
@ViewChild('tree') tree: any;
treeOptions: ITreeOptions = {
getChildren: this.getChildren.bind(this),
useVirtualScroll: true,
nodeHeight: 22
};
monitoring.html file:
<tree-root #tree [nodes]="nodes" [focused]="true" [options]="treeOptions" (updateData)="treeUpdate()" >
...
</tree-root>