私はこのような剣道のタブストリップを持っています:
@(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 の末尾にタブストリップ ID ("# EmployeeTabStrip-1 ") が追加されます。
http://localhost:36527/Setup/Employee?employeeId=33#EmployeeTabStrip-1
なぜこれが起こるのか誰か知っていますか?剣道の組み込みの場合、どうすればこれをオーバーライドできますか?