rownumbers在jsgrid中不起作用,想要显示记录总数(行)

时间:2018-04-23 12:17:28

标签: jquery jquery-plugins jsgrid

rownumbers在jsgrid中不起作用,想要显示记录总数(行)。我想在分页数据的右侧显示它。

$("#jsgrid").jsGrid({
    autoload: true,
    width: "100%",
    filtering: true,
    editing: true,
    paging: true,
    multiselect:true,
    pageSize: 3,
    pageButtonCount: 2,
    sorting: true,
    rownumbers:true,
    controller: {
        loadData: function() {
            return data;
        }
    },
});

enter image description here Jsfiddle Link

1 个答案:

答案 0 :(得分:1)

根据documentation,您可能需要pageFormat,使用{itemCount}来显示项目数:

$("#jsgrid").jsGrid({
    /* Other parameters here */
    pagerFormat: "Pages: {first} {prev} {pages} {next} {last}    {pageIndex} of {pageCount} Total rows: {itemCount}"
});