Hi,
I have a custom component inside a grid column, it works fine on the first load but when I add or edit a row from the grid after the data refresh my app-custom-button dies cause "someInput" it's undefined. My code looks somethig like this:
<ejs-grid [dataSource]="data$ | async">
<e-columns>
<e-column *ngFor="let column of columsProperties">
<ng-template *ngIf="column.type === 'Custom' " let-rowData>
<app-custom-button [someInput]="colum.someAtributte">
</app-custom-button>
</ng-template>
</e-column>
</e-columns>
</ejs-grid>
where data$ it's a Subject<DataStateChageEventArgs>