我有一个这样的剑道标签:
@(Html.Kendo().TabStrip()
.Name("EmployeeTabStrip")
.Items(tabstrip =>
{
tabstrip.Add()
.Text(Resources.Resources.ItemList)
.Content(@<text>
<div id="ListContainer" style=" height: 100%">
@Html.Partial("PartialEmployeeList")
</div>
</text>);
tabstrip.Add()
.Text(Resources.Resources.Edit)
.Content(@<text>
<div id="Container" style=" height: 100%">
@Html.Partial("PartialEmployeeForm")
</div>
</text>);
})
.SelectedIndex(0)
)
但是当我选择一个选项卡时,它会在 URL 的末尾附加 tabstrip ID ("# EmployeeTabStrip-1 "),如下所示:
http://localhost:36527/Setup/Employee?employeeId=33#EmployeeTabStrip-1
有谁知道为什么会这样?如果它的剑道是内置的,我该如何覆盖它?