0
我有一個KendoUI TabStrip控件定義如下:KendoUI:TabStrip控件改變URL在ASP.NET MVC 4
@(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)
)
當我選擇一個選項卡,頁面的URL改變了到本地主機/#TabMain-1和頁面滾動到選項卡。
如何關閉該行爲?