Is it possible to get parent tr element and set its style?
td.parentNode is null and td.parentElement is also null. Siblings are also null
i need to highlight a row if cell has a specific value.
function highlightRowRenderer(instance, td, row, col, prop, value, cellProperties) {
Handsontable.renderers.TextRenderer.apply(this, arguments);
td.parentNode.style.background = 'yellow';
}
Thanks in advance.