Dear Handsontable,
I have an issue with the column renderer.
I have my column set up like this:
columns: [
{
//Sectie
type: "text",
data: "foo",
renderer: boldRenderer,
},
],
The boldRenderer is like this:
export function boldRenderer(instance, td, row, col, prop, value, cellProperties) {
if (isUpperCase(td.innerHTML)) {
td.className = "cell-bold"
} else {
td.className = "cell-underline"
}
Handsontable.renderers.NumericRenderer.apply(this, arguments);
}
This works but when I start scrolling the rows which are bold move around and become inconsistent until I click on the table again.
Any help with this would be greatly appreciated.
Best regards,
Ömer