如何在handsontable中总结配制的细胞

问题描述 投票:0回答:1

我这里有一个可操作的表,我正在尝试总结最后一列,但公式化的单元格未添加到摘要中。

https://jsfiddle.net/q3b1zjcL/1/

var sourceDataObject = [
  [1, 2, "=SUM(A1:B1)"],
  [3, 4, "=SUM(A2:B2)"],
  [5, 6, 7],
  [8, 9, 10],
  [null]
],
  container = document.getElementById('example1'),
  hot;

hot = new Handsontable(container, {
  data: sourceDataObject,
  rowHeaders: true,
  colHeaders: ['A', 'B', 'Total'],
  contextMenu: true,
  formulas: true,
  licenseKey: 'non-commercial-and-evaluation',
  columnSummary: [
    {
      sourceColumn: 2,
      type: 'sum',
      reversedRowCoords: true,
      destinationRow: 0,
      destinationColumn: 2,
      forceNumeric: true,
    }
  ]
});

总结中还应包括配制的细胞。

javascript handsontable
1个回答
0
投票

感谢您分享这个问题。这是来自 Handsontable 技术支持的 Aleksandra。

我们似乎没有意识到这个问题(Github 上尚未报告)。我将在内部报告此问题,并在问题解决后更新此线程。 (如果您希望我通过电子邮件通知您,请通过 [email protected] 向我发送消息。)

作为临时解决方法,我建议从

columnSummary
切换到公式来总结该列。

© www.soinside.com 2019 - 2024. All rights reserved.