This is a migrated thread and some comments may be shown as answers.

Grid Lines in Compatibility mode

1 Answer 79 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Jillian
Top achievements
Rank 1
Jillian asked on 10 Jan 2013, 08:55 PM
When I view the Kendo Grid in Compatibility mode, if a cell is blank, there are grid lines missing - from the grid.  Is there a way to fix this?

1 Answer, 1 is accepted

Sort by
0
Accepted
Dimo
Telerik team
answered on 14 Jan 2013, 10:08 AM
Hello Jillian,

The observed behavior is a known limitation of older IE versions. There are two possible workarounds:

1) Use a server/client column template with a   string at its end

or

2) add a   string to all empty cells with Javascript, e.g. in the Grid's dataBound event (in case you are using Ajax binding)

function onGridDataBound() {
    $(this).wrapper.find("td:empty").html(" ");
}


Regards,
Dimo
the Telerik team
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
Tags
Grid
Asked by
Jillian
Top achievements
Rank 1
Answers by
Dimo
Telerik team
Share this question
or