Combo box issue

0
Hi, I am facing one issue with data grid2 column heading. I am using 9.24.12 version of mendix. The column heading of data grid 2 overlaps the filter values. I am using combo box for filter values. Can anyone help me to resolve this?  
asked
1 answers
0

It looks like that the latest version of the data widgets module have some updated css that causes this problem.

 

An easy for this is adding the following scss line to your project:

 

.sticky-sentinel.container-stuck+.widget-datagrid-grid .th, .sticky-sentinel.container-stuck+.table .th {

    z-index: 0;

}

answered