Hi Jaya,
On the widget that creates the scrollbar you should set the style to:
overflow-x: hidden;
Hope this helps!
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