This question is locked. New answers and comments are not allowed.
This is the code for my TabStrip, my problems is that the content url is not following
the defined route value.
<% Html.Telerik().TabStrip()
.Name("RodapeModulos")
.SelectedIndex(0)
.BindTo(Model, (item, Modulo) =>
{
item.Text = Modulo.NomeExibicao;
item.RouteName = "Modulos_default";
item.ContentUrl = String.Format("{0}/{1}/{2}", "GerenciadorModulos", "TabClick", Modulo.Id);
})
.ClientEvents(events =>
{
events.OnSelect("onSelect");
})
.Render();
%>
Using last version Q2 of telerik components
Visual Studio 2010 . net 4
Windows Vista