You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be great if Angular templating can be used inside the igGrid column template. A possible code would be: columns: [ { headerText: "Button", key: "Edit", dataType: "string", width: "20%", unbound: true, template: '<button translate="common.button.edit" *ngIf="!isDeletedItem(\'${equipTypeId}\')" (click)="openEquipmentTypeEditModal(\'${equipTypeId}\')">Edit</button>' } ],