<div>
<smart-tree #tree id="tree" value-member= id
[scrollMode]="'scrollbar'"
[selectionMode]="'one'"
[dataSource]="account3"
[toggleMode]="'click'"
[autoLoadState]="true"
[autoSaveState]="true"
[filterable]="true"
[filterMode]="'containsIgnoreCase'"
(click)="selectAccount($event)"
>
</smart-tree>
by above I’m getting the tree but I wanna make the each node of the tree into clickable anchor tag.How can I acheive it?
Thank You
</div>