Error in kendo ui grid lrt css in chrome

There is a crunch in kendo ui grid rtl css. If you notice an example on the Telerik website, you can see this error: http://demos.telerik.com/kendo-ui/web/grid/rtl.html

When you go to page 6, the title and body do not align.

enter image description here This error is in chrome (for me: V35), but in firefox (V28) and IE (V11) this error is missing.

You can make the same error while scrolling horizontally. For example, in the direction of ltr:

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

everything is fine. But in the direction of rtl:

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

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

How can I fix this error. Many thanks.

+4
2

:

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

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

.k-grid-footer-wrap {
    width: 102%;
}
+3

table-layout fixed role="grid". .

.theme-01 .table-view table {
     table-layout: fixed;
}
+1

Source: https://habr.com/ru/post/1541726/


All Articles