如果任何单元格值为空,如何更改背景?此功能仅更改TD背景,而不是整行。
function invalidRowRenderer(instance, td, row, col, prop, value, cellProperties) {
Handsontable.renderers.TextRenderer.apply(this, arguments);
td.style.fontWeight = 'bold';
td.style.background = '#A9A9A9';
}
答案 0 :(得分:0)
如果要更改整个父行的颜色,可以执行以下操作:
$(td).parent().style.background = '#A9A9A9';
这会将样式应用于td
的父级,即行tr
。