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

[Solved] TabStrip Not populating content correctly

0 Answers 24 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.
Avijit
Top achievements
Rank 1
Avijit asked on 04 May 2011, 01:33 PM

Hi,

We are trying to populate the Menu control inside the TabStrip. From the master page we are rendering the TabStrip User control

 

 

<div id="Menu"
  
    <%Html.RenderPartial("MenuTabStrip"); %>
</div>

 

 

 


In the MenuTabStrip we are calling LoadContentFrom for each item.

 

 

 

<%
    if (Request.IsAuthenticated)
    {
        Html.Telerik().TabStrip().Name("Menu")
            .Items(m =>
            {
                foreach (var item in Model)
                {
                    m.Add().Text(item.Text).LoadContentFrom(Url.Action("LoadTabstripSubMenu", "Menu",

new

 

 

{ID=item.UID }

 

));                   
                }
            }).Render();
    }
%>
After rendering the TabStrip when we click on the Tab it redirecting to new location. It's not showing the content on the same page when we use Internet Explorer. It's working with Mozilla web browser.  

 

Tags
TabStrip
Asked by
Avijit
Top achievements
Rank 1
Share this question
or