I am using DxDatagrid of Devextreme-Angular in my Angular 6 app.
One of my columns is a select column (dxo-lookup)
.
It works well in all browsers except in IE11.
There, when opening the select the dropdown appears, but when scrolling down the list it gets closed.
Here is my component view :
<dx-data-grid
#positionsDataGrid
id="positionsDataGrid"
[dataSource]="positionsDataSource"
keyExpr="idObject"
[allowColumnReordering]="false"
[showBorders]="true"
loadPanel="false"
(onInitNewRow)="onInitNewPosition($event)"
(onRowUpdating)="logEvent('RowUpdating')"
<dxi-column dataField="Nom" caption="Nom"></dxi-column>
<dxi-column
dataField="edoId"
caption="Edo"
[width]="100"
[allowSorting]="false">
<dxo-lookup
[dataSource]="shopsEdosDatasource"
displayExpr="edoId"
valueExpr="edoId">
</dxo-lookup>
<dxi-validation-rule type="required" message="Champ obligatoire"></dxi-validation-rule>
</dxi-column>
</dx-data-grid>
Any suggestions?