Make listvieuw hover down and up while scrolling

0
Hi I’d like my listvieuw  to ALWAYS be visible on the page (ergo: goes up and down while scrolling) This is how my page looks like in MSP: Any Idea on how I can do this? If you know ho to do this for buttons it would be welkom (I’d like to do the same with the button “Add new product”). The idea would be the same as the feedback button we have around on the forum. 
asked
2 answers
1

Hi Jérémie,

You have to adapt the css of your items.

See https://forum.mendix.com/link/questions/91580 for a fixed header, which could be the solution for your button problem.

Cheers!

 

answered
1

Mathis:

 

z-index: 101;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    

Was indeed good enough. Put this in the style of whatever you want!

 

Thanks!

answered