DataGrid2 Dropdown Filter Hidden Behind Sticky Columns in Mendix 10.24
0
Hi all,I’m facing an issue with DataGrid2 dropdown filters.ProblemI have sticky columns (z-index ~99)One column uses a dropdown filterWhen I open the dropdown, it gets hidden behind the grid rows/columnsObservationThis setup works fine in Mendix 9But the issue is happening in Mendix 10.24.20ExpectedDropdown should appear above the grid, not behind it.What we tried .widget-dropdown-filter-popover { z-index: 9999 !important; } .widget-datagrid-grid { overflow: visible !important; } .widget-dropdown-filter-popover { position: fixed !important; } I would like to understand the recommended approach to handle this scenario when using sticky columns together with dropdown filters.Thanks in advance!