Graphic/Grid bug
Best Answer
-
Brian_Wiest Customer Super IT Monkey ✭✭✭✭✭Missed that one in my testing of that version. (of course almost no where do I have just one item in a grid) I had opened a ticket regarding the right side scroll bar and was informed the bars appeared to address the open bug regarding the resizing of the column headers. Add this to your custom.css and it will hide the right scroll bar and set the min-height so if one one row returns it the scroll bar is placed lower./*Fix scroll bar on grids*/
.k-grid-content{
overflow-y:visible !important;
min-height: 50px !important;
}
5
Answers
.k-grid-content{
overflow-y:visible !important;
min-height: 50px !important;
}
will try this out