如何将Kendo ListView放入Kendo PanelBar的内容中?

时间:2018-10-24 09:48:35

标签: javascript html kendo-asp.net-mvc kendo-listview kendo-panelbar

我必须将动态填充的ListView放入动态创建面板中。 列表视图位于ID为listView

的div中

我尝试了以下操作:

index.js:

panelbar.append({   
            text: "Group1",
            encoded: false,
            content: $("\#listView")          //puts [object Object]
            //OR
            content: '<object type="text/html" data="#listView" ></object>' //puts the whole html-page into panel, very interesting behaviour
 })
  

是否可以将div放入面板中,还是必须使用局部   views /一个很长的字符串,用于构建listview以及如何


我还尝试将ListView用作PanelBar的模板:

index.html:

<script id="panelbar-template" type="text/kendo-ui-template">
    <script>
        $("\#listView").kendoListView()
    </script>
</script>

<div id="panelBar" style="margin:0 auto; width: 90%">
     @(Html.Kendo().PanelBar()
        .Name("Panelbar")
        .TemplateId("panelbar-template")
        ..

1 个答案:

答案 0 :(得分:1)

对于一个面板,我将ListView放入“ MyPartialView.cshtml”  并在我的“ index.cshtml”中写了以下内容:

@(Html.Kendo().PanelBar()
    .Name("panelbar")
    .ExpandMode(PanelBarExpandMode.Multiple)
    .Items(panelbar =>
    {
    panelbar.Add().Text("Group1")
         .Expanded(true)
         .Content(@<text> <div> abc @Html.Partial("MyPartialView")</div></text>); //THIS DID IT
    //;
    })
)

对于动态内容,我使用了部分视图