Datagrid freeze Control Bar.

0
HI there,   Currently i am working in Mendix Studio Pro V8.6.9. Does somebody know if there is a possibility to freeze the control bar of a Datagrid in this version of Mendix? And if not, would there be a possibility to add paging buttons below the datagrid, as well as in the control bar?   Thank you in advance.
asked
1 answers
1

Hi Mignon,

I think you can only do this with some custom styling. 

something like :

.datagridStickyControlBar {

height: 500px;

overflow: scroll;

.mx-grid-controlbar {

position: sticky;

top:0;

background: white;

}

}

 

Note that your grid also needs a height.

Hope this helps!

answered