I am adding the columns dynamically and getting a console error saying column.getDomSetter is not a function and the header disappeared.
<ejs-grid
#fulfilmentGrid
[dataSource]="fulfilments$ | async">
<e-columns>
<e-column *ngFor="let col of gridColumns" [field]="col.field" [headerText]="col.headerText">
e-column>
this.gridColumns = [
{
field: 'status',
headerText: 'Status',
},
{
field: 'batchNumber',
headerText: 'Batch Number',
},
{
field: 'carrierService',
headerText: 'Carrier Service',
},
{
field: 'deliveryService',
headerText: 'Delivery Service',
},
];
The data is binding but the column header disappeared and then any features are not working.
I am using version 20.2.36.