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

[Solved] Tabstrip problem

0 Answers 9 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.
Renato
Top achievements
Rank 1
Renato asked on 04 Jan 2013, 05:29 PM
I have problem on tabstrip. All tab are selected, all have the t-state-active style.
I use it on nopcommerce ecommerce solution.

this is the code 

@Html.Telerik().TabStrip().Name("category-edit-vendor").Items(x =>

{

    x.Add().Text("a").Content("Test");

    x.Add().Text("b").Content("Test2");

   

    EngineContext.Current.Resolve<IEventPublisher>().Publish(new AdminTabStripCreated(x, "category-edit-vendor"));

})


the html generate is 

 <ul class="t-reset t-tabstrip-items">

       <li class="t-item t-state-default t-state-active"><a class="t-link" href="#category-edit-vendor-1">a</a></li>
<
li class="t-item t-state-default t-state-active"><a class="t-link" href="#category-edit-vendor-2">b</a></li>
</
ul>


Thanks
Tags
TabStrip
Asked by
Renato
Top achievements
Rank 1
Share this question
or