ボタンとして表示されるアクション配列を持つグリッドコンポーネントに取り組んでいます
<td *ngFor="let action of actions">
<button type='button' (click)='action.handler()'>{{action.title}}</button>
</td>
これを試してみると、次のエラーが発生しました
_v.context.$implicit.handler is not a function
ボタンとして表示されるアクション配列を持つグリッドコンポーネントに取り組んでいます
<td *ngFor="let action of actions">
<button type='button' (click)='action.handler()'>{{action.title}}</button>
</td>
これを試してみると、次のエラーが発生しました
_v.context.$implicit.handler is not a function