如何在jqxgrid中显示记录总数

How to display total of recordes in jqxgrid

我 jqxgrid.I 对 jqxgrid.I 很陌生,想在列中显示记录总数或值。 谁能告诉我该怎么做 enter image description here

jqxgrid 具有显示某些列的聚合的功能,该聚合可以是 'SUM'、'COUNT' 或 'AVERAGE'

您可以在 jqxgrid 声明中设置列设置时设置聚合类型。

简单的例子是这样的:

// initialize jqxGrid
        $("#jqxgrid").jqxGrid(
        {
            width: 850,
            source: dataAdapter,     
            showstatusbar: true,
            statusbarheight: 50,
            showaggregates: true,
            columns: [
              { text: 'First Name', columntype: 'textbox', datafield: 'firstname', width: 170 },
              { text: 'Last Name', datafield: 'lastname', columntype: 'textbox', width: 170 },
              { text: 'Price', datafield: 'price', cellsalign: 'right', cellsformat: 'c2', aggregates: ['sum', 'avg'] }
            ]
        });

对于自定义聚合,您可以从中学习link http://www.jqwidgets.com/jquery-widgets-demo/demos/jqxgrid/aggregates.htm?arctic

有关聚合的完整文档,请查看 API 文档中的文档。

希望这对您有所帮助