3

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

Is possible?

Thanks

rgomesf
  • 702
  • 1
  • 10
  • 20

1 Answers1

13

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

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

Note that the !important is important because the style gets inlined by the grid code so this overrides it...

HTH

Tim
  • 3,576
  • 6
  • 44
  • 58