I am trying to use a custom cell renderer with Handsontable React but it must be a specific cell and column which has that cell renderer. Cell renderers like date or autocomplete exist within Handsontable but I cannot find them when using with react.
Without react I am usually doing
function firstRowRenderer(instance, td, row, col, prop2, value, cellProperties) {
HandsonTable.renderers.AutocompleteRenderer.apply(this, arguments);
…}