Hello everyone!
I have a custom renderer cell. At the end of its method, I use the method Handsontable.DateCell.renderer.apply(this, arguments);
I would like to know how to updating the Pikaday datePickerConfig param:
This is an example of the code:
function departureDateRender(instance, td, row, col, prop, value, cellProperties) {
$(instance.getCell(row, col)).css({‘background’: ‘#ff4c42’});
Handsontable.DateCell.renderer.apply(this, arguments);
}
Thanks