我在我的 Angular 6 应用程序中使用Devextreme -Angular的DxDatagrid。
我的专栏之一是 select column (dxo-lookup)
。
它适用于除 IE11 之外的所有浏览器。
在那里,当打开选择时会出现下拉菜单,但是当向下滚动列表时它会关闭。
这是我的组件视图:
<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>
有什么建议么?