This question is locked. New answers and comments are not allowed.
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(); } %>