My website has always run smoothly with IE8, IE7, FF, Chrome and Safari. Now I\'m testing it on IE9 and I\'m experiencing a strange problem: in some pages, some tabular data
I had the same issue with KendoUI grid in IE10. I was able to force IE to rerender missing table cells with this hack:
htmlTableElement.appendChild(document.createTextNode(''));
Appending an empty textNode makes IE to rerender the whole table.