angularjs 的ui-grid分页多少页-多少页这个总是显示不正确
比如1-10行,他就显示1-11行
对这个问题,我修改了ui-grid.js中第28872行,也就是这句
{{ 1 + paginationApi.getFirstRowIndex() }} <abbr ui-grid-one-bind-title=\"paginationThrough\">-</abbr> {{1+ paginationApi.getLastRowIndex() }} {{paginationOf}} {{grid.options.totalItems}}修改为
{{ 1 + paginationApi.getFirstRowIndex() }} <abbr ui-grid-one-bind-title=\"paginationThrough\">-</abbr> {{ paginationApi.getLastRowIndex() }} {{paginationOf}} {{grid.options.totalItems}}将LastRowIndex()的值不要加1就好. 原文链接:https://www.f2er.com/angularjs/147725.html