This is a migrated thread and some comments may be shown as answers.

[Solved] Content URL dont use defined route

0 Answers 93 Views
TabStrip
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Henrique Potter
Top achievements
Rank 1
Henrique Potter asked on 30 Jul 2010, 06:11 PM

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

Tags
TabStrip
Asked by
Henrique Potter
Top achievements
Rank 1
Share this question
or