如何在Handsontable上进行条件格式化?

时间:2017-10-30 18:33:27

标签: javascript handsontable

var data = [
    ["", "Tesla", "Volvo", "Toyota", "Honda"],
    ["2017", 10, 11, 12, 13],
    ["2018", 20, 11, 14, 13],
    ["2019", 30, 15, 12, 13]
];

var container = document.getElementById('example');
var hot = new Handsontable(container, {
    data: data,
    rowHeaders: true,
    colHeaders: true
});

以下是Handsontable示例。 我想改变第一行文本格式。例如粗体

我认为 cells 回调函数会有所帮助,但我不确定参数是什么以及如何使用它。

cells: function (row, col, prop) {
    var cellProperties = {};
    if (row === 0) {
         cellProperties.renderer = function () {
             ...
         }
    }
}

感谢。

1 个答案:

答案 0 :(得分:1)

cells: function(td, row, col, prop) {
    var cellProperties = {};
    if (row > 0 && col > 0) {
        cellProperties.type = 'numeric',
            cellProperties.format = '0,0.00 $';
        cellProperties.renderer = celulasBold;
    }
    return cellProperties;
}

我可以使用这个回调,这使我可以使用单元格格式。 如果有任何遇到此类问题的访客请询问。 感谢。