在这个TableSorter http://mottie.github.io/tablesorter/docs/example-widget-math.html的例子中,你可以在每列下面有一个带有部分数学函数的子脚。
我正在尝试获取相同的信息,但在此示例http://mottie.github.io/tablesorter/docs/example-widget-grouping.html上的“组”小部件中。
在Group示例中,当您按" Numeric"你得到一些数学信息,但仅限于分组单元格:
10 - 19 (3); subtotal:32
这是由以下代码实现的:
group_callback : function($cell, $rows, column, table){
// callback allowing modification of the group header labels
// $cell = current table cell (containing group header cells ".group-name" & ".group-count"
// $rows = all of the table rows for the current group; table = current table (DOM)
// column = current column being sorted/grouped
if (column === 2) {
var subtotal = 0;
$rows.each(function(){
subtotal += parseFloat( $(this).find("td").eq(column).text() );
});
$cell.find(".group-count").append("; subtotal: " + subtotal );
}
},
我希望在group by group上有相同的信息,我可以在每列中定义使用哪个函数。
这可能吗?