我正在使用 kendoUI 网格来显示表中的记录。我想显示表格的总记录数。就像是
显示 1203 条记录中的 1-20 条
有没有办法使用 KendoUI 网格显示记录总数?
我正在使用 kendoUI 网格来显示表中的记录。我想显示表格的总记录数。就像是
显示 1203 条记录中的 1-20 条
有没有办法使用 KendoUI 网格显示记录总数?
您所要做的就是将其添加到您的 .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>')
}
我用来显示只有记录计数的页脚(分页器)的 MVC 包装器代码如下所示:
@(Html.Kendo().Grid(dataSource)
.Columns(...)
.Pageable(p => p.Numeric(false)
.PreviousNext(false)
.Messages(m => m.Display("Matching Students: {2}")))
您可以使用选项 pageable.messages.display,您可以查看文档:这里