Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Bug in kendo ui grid lrt css in chrome

There is a bug in kendo ui grid rtl css in chrome. If you notice example in Telerik site, you can see this bug: http://demos.telerik.com/kendo-ui/web/grid/rtl.html

When you go to page 6, the header and body, isn't align.

enter image description here This error is in chrome (for me: V35) and in the firefox (V28) and IE(V11) does not this error.

You can same error in horizontal scrolling. For example in ltr direction:

http://jsbin.com/otolop/2/edit

this is OK in all browser. But in rtl direction:

http://jsbin.com/otolop/6/edit

It has error in chrome and has no error in firefox and IE.

How can I fix this error. Thanks alot.

like image 712
Tavousi Avatar asked May 23 '14 08:05

Tavousi


1 Answers

This worked for me:

.k-grid-content {
    overflow-y: auto;
}

.k-grid-header-wrap {
    width: 102%;
}

.k-grid-footer-wrap {
    width: 102%;
}
like image 151
Tavousi Avatar answered Oct 05 '22 12:10

Tavousi