Disable horizontal scroll bar

I need to disable the horizontal slickgrid scrollbar. I only have one column and have forceFitColumns: true.

Maybe?

thank

+3


source to share


1 answer


You can do it with a little css. Try adding this to your page.

   .slick-viewport {
    overflow-x: hidden !important;
}

      



Please note what is important! important because the style is embedded in the grid code, so this overrides it ...

NTN

+10


source







All Articles