Reputation: 11
I have a kendo UI grid with simple scroll bar, how do i change his style ?
Upvotes: 1
Views: 4796
Reputation: 527
Like the 'Lopo's answer, i suggest you the same solution, but with another plugin for that. Gromo's Jquery.scrollbar is the better one. I have used the both (Jquery.scrollbar and mCustomScrollbar), and the differences are many.
Upvotes: 0
Reputation: 966
You can use jQuery custom content scroller (http://manos.malihu.gr/jquery-custom-content-scroller/) on the grid content and disable the vertical scrollbar in css.
example:
$(".k-grid-content").css("overflow-y", "hidden").mCustomScrollbar();
Upvotes: 3
Reputation: 30671
Kendo UI Grid relies on the built-in browser scrollbar. You can check this question which shows how to style the scrollbar in IE, WebKit (Safari, Google Chrome) and Opera.
Upvotes: 3