3
votes

I think I have found a bug in the kendoui grid when column resizing is enabled (version 2013.1.319). All columns but one disappear when resizing.

I'm testing this in IE9 and IE8. Chrome does not have the bug (maybe other browser also don't)

Here is a jsbin that displays the problem:demo

Has anyone has a workaround for this bug?

2
found a possible duplicate of this problem: stackoverflow.com/questions/14579682/… - Flores

2 Answers

3
votes

Give the column a width, we using the same Kendo build and it works in IE, but we have a width on every column :

    columns: [
            {
                title: "one", width: "50px"
            },
0
votes

I Just did this

.k-grid td {
        max-width: 200px;
    }

after javascript initialized grid