【发布时间】:2013-03-18 22:48:58
【问题描述】:
我有一个这样定义的 KendoUI TabStrip:
@(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 变为 localhost/#TabMain-1 并且页面滚动到该选项卡。
如何关闭该行为?
【问题讨论】:
标签: kendo-ui kendo-asp.net-mvc