Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Scroll bar should not be visible when limited rows are present in the grid

Tags:

kendo-ui

I have a grid in my view page where i can see a scroll bar. What i need that when number of rows increase by 10 then the scroll bar should be visible else it should not be visible. Is it possible in kendoui?

like image 295
Little bird Avatar asked Aug 13 '12 09:08

Little bird


1 Answers

You can override the default style to hide this.

Try this:

.k-grid-content{
    overflow-y: auto    
}
like image 100
BentOnCoding Avatar answered Sep 24 '22 11:09

BentOnCoding