This question is locked. New answers and comments are not allowed.
I mentioned this in general, but it's best here
I have a TabStrip ('Tab1') it has a TabStrip inside the first tab
| Html.Telerik().TabStrip() |
| .Name("MissionSummaryTabs") |
| .Items(items => |
| { |
| items.Add().Text("Pilot Summary") |
| .Content(() => |
| {%> |
| <% Html.Telerik().TabStrip().Name("PilotSummaryTab") |
| .Items(i => |
| { |
| i.Add() |
| .Text("Tab1") |
| .Content(() => |
| {%> |
| <p>Content</p> |
| <%}).Selected(true); |
| i.Add() |
| .Text("Tab2") |
| .Content(() => |
| {%> |
| <p>Content</p> |
| <%}); |
| }).Render(); %> |
| <%}).Selected(true); |
Notice that I have a 'selected' inside.
Since this is first tab, it loads fine. But if I select another tab in the 'outer' tabstrip, then go back to tab1, it does not cause the child tabstrip 'select' to get called
(Additionally, having this tabstrip in a tabstrip is having issues with LoadContentFrom - its not making an ajax call)