Hi Team, We have created a table from handsontable in angular. We have 5 columns and 50 rows. Data headers are the first columns and data rendering to be done row-wise.
We have used settings and cells to describe the data-type of each cell.
cells: function (row, col) {
var cp = { type: ‘numeric’};
if (row === 0 || row === 2) {
cp.type = ‘text’
}
else if (row === 1) {
cp.type = ‘checkbox’;
}
return cp;
},
This is actually calling multiple times. And making the performance worse, especially in the editing mode.
Please help to resolve the issue.
Attaching the screenshot :