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

[Solved] Tabstrip and IE 7 workaround

0 Answers 16 Views
TabStrip
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Samuel
Top achievements
Rank 1
Samuel asked on 06 Jan 2011, 10:47 PM
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:
<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.
Tags
TabStrip
Asked by
Samuel
Top achievements
Rank 1
Share this question
or