This question is locked. New answers and comments are not allowed.
So I have another issue with tab strips. I create them this way:
And in the action return a partial view. This works fine on the first navigation through the tab strip. But on subsequent clicks, the partial views are rendered instead completely in the window, ie. they are no longer in the tab strip.
@{ Html.Telerik().TabStrip() .Name("TabStrip") .Items(tabstrip => { foreach (var verb in MEF.GetTabVerbsForCategory("2")) { var name = verb.Name; var image = verb.Image; var action = verb.Action; var controller = verb.Controller; var view = verb.View; tabstrip.Add() .Text(name) .ImageUrl(image) .Action(action, controller) .Content(() => Html.Partial(view).ToHtmlString() ); } }) .SelectedIndex(1) .Render(); }And in the action return a partial view. This works fine on the first navigation through the tab strip. But on subsequent clicks, the partial views are rendered instead completely in the window, ie. they are no longer in the tab strip.