Kendo 使用 Treeview 的拆分器嵌套
Kendo Splitter Nesting with Treeview
我收到错误消息:
Delegate 'System.Action' does not take 1 arguments
创建 Splitter
时,局部视图呈现在 Splitter
的其中一个窗格内。错误位于窗格的 Content
属性 处。请建议我任何更改以解决问题
@(Html.Kendo().Splitter()
.Name("vertical")
.HtmlAttributes(new { style = "height:900px" })
.Orientation(SplitterOrientation.Horizontal)
.Panes(panes =>
{
panes.Add()
.HtmlAttributes(new { id = "pane1" })
.Resizable(true)
.Size("300px")
.Collapsible(false)
.Content((@<text><div>@Html.RenderPartial("GetUsers", Model)</div></text>));
})
)
利用以下link中的信息,我能够解决我的问题。当你必须嵌套 kendo UI 的容器控件时,你需要为嵌套内容创建一个辅助方法,并调用辅助方法作为容器控件的组件。
Kendo widgets two level deep in Razor, inline markup blocks cannot be nested
我收到错误消息:
Delegate 'System.Action' does not take 1 arguments
创建 Splitter
时,局部视图呈现在 Splitter
的其中一个窗格内。错误位于窗格的 Content
属性 处。请建议我任何更改以解决问题
@(Html.Kendo().Splitter()
.Name("vertical")
.HtmlAttributes(new { style = "height:900px" })
.Orientation(SplitterOrientation.Horizontal)
.Panes(panes =>
{
panes.Add()
.HtmlAttributes(new { id = "pane1" })
.Resizable(true)
.Size("300px")
.Collapsible(false)
.Content((@<text><div>@Html.RenderPartial("GetUsers", Model)</div></text>));
})
)
利用以下link中的信息,我能够解决我的问题。当你必须嵌套 kendo UI 的容器控件时,你需要为嵌套内容创建一个辅助方法,并调用辅助方法作为容器控件的组件。
Kendo widgets two level deep in Razor, inline markup blocks cannot be nested