Hi all,
I’m working on massive facelifting of our system (Angular SPA) implemented by another engineer. One of the pages contains 4 dynamically build hot-table elements. Trimming down everything this is the code to initialise them:
table.updateHotTable({ data: grid, colHeaders: colHeaders.map(col => col.label), rowHeaders: rowHeaders.map(row => row.label), className: 'htCenter', rowHeaderWidth: 125, stretchH: 'all', });
This is how they look using Angular 7, handsontable 6.2.2 and @handsontable/angular 3.0.0
And this is how they look after upgrade to Angular 8, handsontable 7.4.2 and @handsontable/angular 5.1.1
Sadly, I was unable to find much information about updateHotTable
method to be able to fix the issue. Please guide me.
Thank you