Kendo UI - 网格 - 未正确显示可分页

时间:2013-02-04 12:16:29

标签: jquery kendo-ui kendo-grid

  

可能重复:
  Kendo UI Grid Always Starts at Page 0

设置一个Kendo UI网格,其中大部分工作正常,但在页面加载时,可以正确加载可分页数据。 (将每页的项目更改为10后加载正确,并在使用右下方按钮刷新后再次加载错误)

我的代码:

    <div id="example" class="k-content">
        <div id="clientsDb">

            <div id="grid"></div>

        </div>

        <script>
            $(document).ready(function() {
                $("#grid").kendoGrid({
            dataSource: {
                transport: {
                    read: "data/weight.php"
                },
                schema: {
                    data: "data",

                },

                pageSize: 5

            },      height: 250,
                    scrollable: true,
                    sortable: true,
                    filterable: true,
                    pageable: {
                        refresh: true,
                        pageSizes: true
                    },
                    groupable: true,
                    selectable: true,

                    columns: [ {
                            field: "w_user",
                            width: 50,
                            title: "User"
                        } , {
                            field: "w_weight",
                            width: 70,
                            title: "Weight"
                        }, {
                            field: "w_stamp",
                            title: "Stamp",
                            width: 160,
                            template: '#= kendo.toString(w_stamp,"dd MMMM yyyy") #'
                        }, {
                            field: "w_comment",
                            title: "Comments"
                        }
                    ]
                });
            });
        </script>
    </div>

第一个屏幕(不正确): http://www.informatiebron.nl/images/scr1.png

第二个屏幕(正确): http://www.informatiebron.nl/images/scr2_correct.png

有人想解决这个问题吗?


https://stackoverflow.com/a/14255509/2039657 有解决方案/解决方法。谢谢你的建议。 在我的情况下,我需要该功能让它再次工作。

1 个答案:

答案 0 :(得分:0)

根据建议here

,添加总行返回值可能会有所帮助