Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Hide vertical scroll bar in ListBox control

Tags:

People also ask

How to remove scrollbar from listBox?

To fix this, change the "Column Width" property under the format tab to something really small, then play around with this property and the size of the listbox control until you get it how you want, and no scroll bars are displayed.

How to disable the vertical scroll bar?

To hide the vertical scrollbar and prevent vertical scrolling, use overflow-y: hidden like so: HTML. CSS.

How to remove vertical scroll bar in angular?

No Scrollbars (Angular) If you want to remove the scrollbars and keep the grid scrollable, you can use CSS to set the overflow property of the grid's root element to 'hidden'.


I'm developing an application that requires a ListBox control. Unfortunately, when I add too many items in the ListBox, a vertical scroll bar is shown. Is there something I can do to hide the vertical scroll bar shown by the ListBox? I can see that there's a property to hide the horizontal scroll bar but there's no property for the vertical scroll bar.