The grid editing demo at StackBlitz seems to be broken with the combobox integration for the "Available At" column.
Could you please fix this so we have an understanding of how to use the combobox properly with the grid?
Hi Jonathan,Thanks for reaching out to us!The sample is indeed incorrect, we'll address that as soon as time permits.The combo is not properly configured - it's set to use a `[valueKey]`, but the `[(ngModel)]` is passing object references.To fix this, when defining the editing template, use a combo without a `[valueKey]` property and define a `[displayKey]`:
<ng-template igxCellEditor let-cell="cell" let-value> <igx-combo type="line" [(ngModel)]="cell.editValue" displayKey="shop" [data]="locations" width="220px"></igx-combo> </ng-template>