This question is locked. New answers and comments are not allowed.
When using the tabstrip in the following manner:
This works great except for when you: Click a tab, go to a different tab, go back to the first one you clicked on. Once you've selected any tab a second time, it will chop off the /Filter/Details/id part, and just ajax loads the root of RandomArea.
Edit: Apparently this bug happens with the following code as well:
Html.Telerik() .TabStrip().Name("FilterListTabs") .BindTo<Filter>(Model, (tabStripItem, filter) => { tabStripItem.Text = filter.Name; tabStripItem.ContentUrl = "RandomArea/Filter/Details/" + filter.FilterID; })This works great except for when you: Click a tab, go to a different tab, go back to the first one you clicked on. Once you've selected any tab a second time, it will chop off the /Filter/Details/id part, and just ajax loads the root of RandomArea.
Edit: Apparently this bug happens with the following code as well:
Html.Telerik() .TabStrip().Name("FilterListTabs") .Items(tabstrip => { foreach (Filter f in Model) { tabstrip.Add() .Text(f.Name) .LoadContentFrom(new RouteValueDictionary(new {Area = "RandomArea", Controller = "Filter", Action = "Details", id = f.FilterID})); } }) .Render();