BoldDesk®Customer service software offering ticketing, live chat, and omnichannel support, starting at $49/mo. for 10 agents. Try it for free.
<ng-template #nodeTemplate="" let-data="">
<div>
<div class="treeviewdiv" *ngIf="data.level == 1; else condition2">
<div style="float:left">
<span class="treeName" style="color:green">{{data.name}}</span>
</div>
<div style="margin-right: 5px; float:right">
<span class="treeCount e-badge e-badge-primary" *ngIf="data.count">{{ data.count }}</span>
</div>
</div>
<ng-template #condition2>
<div class="treeviewdiv" *ngIf="data.level == 2; else condition3">
<div style="float:left">
<span class="treeName" style="color:red">{{data.name}}</span>
</div>
<div style="margin-right: 5px; float:right">
<span class="treeCount e-badge e-badge-primary" *ngIf="data.count">{{ data.count }}</span>
</div>
</div>
</ng-template>
</div>
</ng-template> |