angularpointersprimengdisableboost-propertytree

How to disable NodeTree (parents and children) in primeng?


This is my HTML code:

<p-tree id="tree" *ngIf="node"  [value]="node" selectionMode="null"  [(selection)]="selectedFile" (onNodeSelect)="nodeSelect($event)" (onNodeUnselect)="nodeUnselect($event)" >
                <ng-template let-node pTemplate="default" >
                  <b>{{node.data.description}}</b>
                </ng-template>
              </p-tree>

I need to disable all the tree. A disable control would be enough or replace hand pointer with a cursor pointer. Any advice? Thanks in advance!


Solution

  •     disableRecursive(node:TreeNode){
            node.selectable = false;
            if (node.children){
                node.children.forEach( childNode => {
                    this.disableRecursive(childNode);
                } );
            }
        }