how to deactivate (3.) scrollbar

0
Hello Community. When I zoom out on a page (for more overview) a third scrollbar appears on the right (see attached screenshot). The inner scrollbar is because of the DataGrid2 (Virtual Scrolling),  the middle one because the content is higher than the page height?! But how can I remove/deactivate the outer one?  
asked
1 answers
1

Hi Marc Scheil,

 

By using css property you can hide scroll bar. 

ref:https://developer.mozilla.org/en-US/docs/Web/CSS/overflow

CSS overflow Property


 overflow: hidden;


 overflow: scroll;

 overflow: auto;

 

Thanks

Neeraj

answered