在我的应用程序中,我希望程序将用户重定向到新页面并在单击/选择 panelBar 项目时滑动打开 SUBITEMS 列表。但是,我不确定应该如何实施。
我已经将“.Action”与面板栏的“项目”一起使用,但不幸的是这引发了错误。为方便起见,下面显示一小部分代码(主要关注倒数第二行)。抛出的错误是:
HttpException 未被用户代码处理
<% Html.Telerik().PanelBar()
.Name("PanelBar")
.SelectedIndex(0)
.Items(item =>
{
item.Add()
.Text("Home").Action("Index", "Home")
.Items(subItem =>
{
subItem.Add().Text("My Profile").Action("MyProfile", "Profile");
subItem.Add().Text("Test");
});
item.Add()
.Text("Orientation").Action("Index", "Orientation")
.Items(subItem =>
{
subItem.Add().Text("GridView");
subItem.Add().Text("Scheduler");
subItem.Add().Text("Docking");
subItem.Add().Text("Chart");
});
}).Render();
%>
在这种情况下,“.Action”似乎不起作用。所以我的问题是,我应该如何让该项目参加活动?