I am starting to work with igx-grid and I have templated cells with combobox as below:
<igx-column field="Locations" header="Available At" [editable]="true" [filterable]="false" width="220px">
<ng-template igxCellEditor let-cell="cell" let-value>
<igx-combo type="line"
[ngModel]="cell.value"
(ngModelChange)="onChange($event, cell)"
[displayKey]="'shop'"
[data]="locations"
width="220px"></igx-combo>
</ng-template>
</igx-column>
However, when the cell is not in edit mode the combobox is not visible. How do I make the combo visible?