I'm working on a grid component which has actions array that will presented as buttons
<td *ngFor="let action of actions">
<button type='button' (click)='action.handler()'>{{action.title}}</button>
</td>
when I try this I got the following error
_v.context.$implicit.handler is not a function