This question is locked. New answers and comments are not allowed.
I ran into a problem with the MVC Tabstrip control where it would work fine in IE8 but in compatibility mode (for IE7 testing) the tabstrip would turn into a blank square. This code:
will work in IE8 but in IE7 will reproduce the problem. Removing the table tags fixes the issue.
<table> <tr> <td> <%Html.Telerik().TabStrip() .Name("Searches") .Items(parent => { parent.Add() .Text("TEST1"); parent.Add() .Text("TEST2"); }) .Render(); %> </td> </tr></table>will work in IE8 but in IE7 will reproduce the problem. Removing the table tags fixes the issue.