This question is locked. New answers and comments are not allowed.
I am trying to use a TabStrip instead of a Menu (at the request of the client) as the site navigation. The sitemap binding works fine and the URL's show up properly in the anchor tags when viewing source. The problem is clicking the tabs does nothing but change the tab. None of the URL's, actions, etc. are ever executed or followed. Am I missing something?
I kept it very simple and minimal. If I replace the following with .Menu instead of .TabStrip it works as a menu.
I kept it very simple and minimal. If I replace the following with .Menu instead of .TabStrip it works as a menu.
<%
Html.Telerik().TabStrip()
.Name(
"Menu")
.BindTo(
"ApplicationSiteMap") .Render();
%>