首页 > 解决方案 > 制表符,表格底部的重复列

问题描述

我有一列定义如下

{
               title: "Actual",
               field: "actual_fee",
               width: 110,
               hozAlign: "right",
               formatter: "money",
               formatterParams: {
                 decimal: ".",
                 thousand: ",",
                 symbol: "£",
                 precision: 0
               },
               bottomCalc: "sum",
               bottomCalcFormatter: "money",
               bottomCalcFormatterParams: {
                 decimal: ".",
                 thousand: ",",
                 symbol: "£",
                 precision: 0
               }
            },      

我还想重复表格底部的列标题。这可能吗?

我正在使用 bottomCalc,因此无法使用自定义格式化程序来执行此操作

谢谢

标签: tabulator

解决方案


推荐阅读