Datagrid-header remains in place with scrolling, but transparent background

0
Hi, in een datagrid blijft de headerbalk zichtbaar bij naar beneden scrollen, wat ik een heel handige optie vind; enkel is hij doorzichtig, wat het dan weer een stuk minder handig maakt. Heeft iemand a) een idee hoe je dit uberhaupt mogelijk maakt en b) hoe je deze bug fixed? Ik kwam dit tegen in andermans app, en heb beide vragen zelf nog niet kunnen beantwoorden. Vr gr, Joris Ps. Reactions in English are fine -- forgot that English is the usual language here. :o ;)
asked
2 answers
2

Hi Joris,

I see this also happening in my app and the issue is caused by the default style in the _datagrids.scss file.

.mx-datagrid .mx-datagrid-head-table {
    border-width: 0;
    background-color: transparent;
}

You can fix this by adding the following to your custom scss file:

.mx-datagrid .mx-datagrid-head-table {
    background-color: white;
}

Off course you can replace white with any color.

 

Hope this helps. 

answered
0

answered