Hi Team ,
I was able to integrate handsontable with my project. Changes are working perfectly and happy to have such functionality.
My query is on performance ,
We use angular framework for our front end. Correct me if i am wrong Since we manipulate the DOM tree to assign the handsome table . Will it not impact performance ? They suggest that changing the DOm tree is good practise
Sample Code
var container = document.getElementById(‘XLsheet’);
var hot = new Handsontable(container, {
data: data,
rowHeaders: true,
colHeaders: true,
filters: true,
dropdownMenu: true
});