Tabulatorで集計行を配置してみました。
カラム設定の公式ドキュメントはこちら
Column Calcuculationのドキュメントはこちら
< コード例 >
カラムのプロパティのtopCalcで合計、平均、件数とかをセットします。
// 飛行中数 //
{
title: "Active",
field: "active_count",
width: 40,
hozAlign: "right",
topCalc: "sum",
formatter: function (cell, formatterParams, onRendered) {
//console.log(cell.getValue())
if (cell.getValue() <= 0) {
return ""
}
else {
return cell.getValue()
}
}
},
{field: "id", visible: false}
]
< 画面例 >
件数列と合計列を上に配置