Using ngFor with an ng-container to iterate over column definitions seems to no longer work since moving to Angular 9. Is this a bug or is there any reason why the below grid would not display as expected?
<kendo-grid [data]="data"> <ng-container *ngFor="let column of columns"> <kendo-grid-column *ngIf="column.visible" [field]="column.field" [title]="column.title"> </kendo-grid-column> </ng-container></kendo-grid>