HandsonTable条件格式

时间:2015-07-21 14:07:31

标签: javascript formatting conditional handsontable

如果任何单元格值为空,如何更改背景?此功能仅更改TD背景,而不是整行。

function invalidRowRenderer(instance, td, row, col, prop, value, cellProperties) {
    Handsontable.renderers.TextRenderer.apply(this, arguments);
    td.style.fontWeight = 'bold';    
    td.style.background = '#A9A9A9';
}

1 个答案:

答案 0 :(得分:0)

如果要更改整个父行的颜色,可以执行以下操作:

$(td).parent().style.background = '#A9A9A9';

这会将样式应用于td的父级,即行tr