Tzvika
Tzvika

Reputation: 11

Kendo UI Grid : How to change the style of the scroll bar?

I have a kendo UI grid with simple scroll bar, how do i change his style ?

Upvotes: 1

Views: 4796

Answers (3)

Ceylan Mumun Kocabaş
Ceylan Mumun Kocabaş

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.

Gromo's Jquery Scrollbar

Scrollbar plugins differences

Upvotes: 0

Lopo
Lopo

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

Atanas Korchev
Atanas Korchev

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

Related Questions