如果父项具有的子项多于页面大小

时间:2018-05-16 08:39:47

标签: javascript webix treetable

首先,我并不坚持使用webix,任何支持子节点和父节点动态分页的javascript树表插件都可以帮助我。但是,如果我能找到基于webix的解决方案,那将会很棒。

我正在使用此树表来获取大量数据。对于测试,我有一个10尺寸的webix treetable。单击父节点时,不会显示所有子节点。

见下图:

https://imgur.com/a/OYIxynB

下面显示了webix配置:

   grid = webix.ui({
        container: "tableResults",
        view: "treetable",
        id: "treetable",
        columns: @Html.Raw(columnsArr),
        url: "/GridTree/GetGridTree?&parent=@(Model)&count=10",
        datafetch: 10,
        pager: {
            template: "{common.first()} {common.prev()} {common.pages()} {common.next()} {common.last()}",
            container: "paging",
            size: 10,
            group: 10,
        },
        //autoheight: true,
        height: 500,
        select: "row", multiselect: true,
        resizeColumn: true,
        dragColumn: "order",
        filterMode: {
            level: 1,
            showSubItems: false,
            openParents: false
        },
        leftSplit: 2,
        rightSplit: 1
});

父母90203050有10个孩子,但我只能看到6个,因为总共有10个序列号。我希望通过分页显示子节点与父节点相同。

Webix in this example似乎正常工作,但父节点未通过动态分页加载。

0 个答案:

没有答案