How to hide scrollbar in mendix

0
I am sharing screenshot of my page i want to hide scrollbar could any body help me with this what code i need to implement if it is css then where should i include that or in javascript action can i include any javascript to hide scrollbar.
asked
2 answers
1

Hi Jaya,

On the widget that creates the scrollbar you should set the style to:

overflow-x: hidden;

Hope this helps!

answered
-1

Hi Jaya,

 

I would suggest the following:

 

In the developer tab, have a look at the scrollbar and find out on which container it's located. There you can try immediately if setting "overflow: hidden" on that component helps.

When you have found that out, copy the class of the container.

 

Then, in mendix, mark your module as "UI resources module" (right click on the module). The styling folder appears with a web folder and the main.scss in it. In that file, insert the following:

 

.<class-that-you-found-out> {

    overflow: hidden !important;

}

 

Please let me know if that helps.

 

Holger

answered