I have a project using Handsontable in Electron. I want to make custom renderer that can make an autocomplete in the next of the cell when on previous cell i write some text. For example when i type “hello” on cell A1, on cell B1 will automatically create autocomplete with data choice “world”.
i’m trying to change the example renderer function from handsontable-skeleton to my logic as above
function helloWorldRenderer(instance, td, row, col, prop, value, cellProperties) {
var changed = false;
…
}
sorry i’m new in electron. Please help me