10

我正在使用 kendoUI 网格来显示表中的记录。我想显示表格的总记录数。就像是

显示 1203 条记录中的 1-20 条

有没有办法使用 KendoUI 网格显示记录总数?

4

3 回答 3

11

您所要做的就是将其添加到您的 .kendoGrid

    dataBound: function (e) {
            //total bits needs to be removed because dataBound fires every time the gird pager is pressed.
            $('#totalBits').remove();
            //add the total count to the pager div.  or whatever div you want... just remember to clear it before you add it.
            $('.k-grid-pager').append('<div id="totalBits">' + this.dataSource.total() + '</div>')
     }
于 2012-05-16T15:34:23.180 回答
2

我用来显示只有记录计数的页脚(分页器)的 MVC 包装器代码如下所示:

@(Html.Kendo().Grid(dataSource)
    .Columns(...)
    .Pageable(p => p.Numeric(false)
                    .PreviousNext(false)
                    .Messages(m => m.Display("Matching Students: {2}")))
于 2017-01-06T18:48:45.453 回答
1

您可以使用选项 pageable.messages.display,您可以查看文档:这里

于 2014-09-11T14:38:29.457 回答