Ian Vink
Ian Vink

Reputation: 68770

KendoUI: TabStrip changing URL in ASP.NET MVC 4

I have a KendoUI TabStrip defined like this:

@(Html.Kendo().TabStrip()
.Name("tabMain")
.Items(items =>
{
    items.Add().Text("Search/Manage User").Content("Some text");
    items.Add().Text("Create New User").Content("Some text");
})
.SelectedIndex(0)
.Animation(false)
)

When I select a tab, the URL of the page changes to localhost/#TabMain-1 and the page scrolls to the tab.

How do I turn off that behavior?

Upvotes: 0

Views: 899

Answers (1)

Petur Subev
Petur Subev

Reputation: 20203

This is already fixed. Stay tuned and wait until tomorrow - there will be new release :) the Q1 2013 !

Upvotes: 1

Related Questions