Hide the vertical scrollbar in list/library control

Hello.

When the height attribute in the list/library control is empty the vertical scrollbar is shown disabled in the browser as shown below

image

Is there a way to hide the disabled vertical scrollbar for a list/library control when there is no height value specified in Designer?

Thanks,
stormanh

Dear @stormanh,
Hmm, please, try the following CSS code:

div.k-grid-content.k-auto-scrollable{
  overflow-y: auto;
}

Hi @Nikita_Kurguzov

Works great, thank you!

1 Like