0

i want to disable scroll bar for md-autocomplete autosuggestion drop down.Is there any css or attribute way to do it?

aks
  • 7
  • 6

2 Answers2

1

Give this a try. overflow-y: hidden;

Billy Fischbach
  • 191
  • 1
  • 9
  • can you please suggest on which md autocomplete class we have to apply this property? – aks Nov 15 '17 at 18:55
0

I could disable the vertical scrollbar by adding a new class to global styles.scss :

.mat-autocomplete-panel.max-height-panel {
    max-height: 100%;
}

... and set it to the Material component using the classList directive :

<mat-autocomplete #auto="matAutocomplete" class="max-height-panel" classList="max-height-panel" panelWidth="300px">
Patrick L
  • 151
  • 1
  • 9