Handson表和Rulejs自动填充公式

时间:2015-11-09 14:36:33

标签: javascript jquery excel-formula handsontable

我想根据代码中的C1和C2单元格自动填充具有公式的列(不是我手动双击或拖动)

1 个答案:

答案 0 :(得分:0)

我试图利用Autofill(apply)插件,最后找到了如何使用它。以下是为“C”列设置公式的代码,并将其应用于代码

中的前10行

var hot = $('#TableContainer').handsontable('getInstance'); hot.setDataAtCell(1,2,"=sum(A2,b2)"); // 1,2 is C2 hot.selectCell(1,2, 1,2); // select C2 and apply this formula hot.autofill.instance.view.wt.selections.fill.add(new WalkontableCellCoords(1, 2)); hot.autofill.instance.view.wt.selections.fill.add(new WalkontableCellCoords(9, 2)); hot.autofill.apply(); // applies formula to the coords C2 to C10