asp.net-mvc – KendoUI网格显示总记录数

前端之家收集整理的这篇文章主要介绍了asp.net-mvc – KendoUI网格显示总记录数前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我使用kendoUI网格来显示表中的记录.我想显示的记录总数如此表.就像是

显示1-20共1203条记录

有没有办法使用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>')
     }
原文链接:/aspnet/246006.html

猜你在找的asp.Net相关文章