Is it possible to detect if the cell value has been changed compared to the initial data source in my custom renderer?
I need to change the colour of the cell if the cell has been edited.
function customRenderer(hotInstance, td, row, column, prop, value, cellProperties) {
Handsontable.renderers.NumericRenderer.apply(this, arguments);
if (// detect if cell value has changed here) {
td.style.backgroundColor = myColor;
}
return td;
}