Hi,
My table load with regular HTML.
var container = document.getElementById(‘example’);
var hot = new Handsontable(container, {
data: data,
minSpareRows: 1,
rowHeaders: true,
colHeaders: true,
contextMenu: true
});
But when trying to load with jQuery it does not work.
$("#example").handsontable({
data: data,
rowHeaders: true,
colHeaders: true,
contextMenu: true
});
Does anyone have suggestions for this issue?
Thanks!