I’m planning to use HandsOnTable in my ASP.NET project in C#.
For quick start, is there a sample I can refer to? I checked out tutorial in this site and tried to use it but running into issues like no error in loadData but data not getting loaded.
It would be good if there is a small working sample in C# I can refer to.
The issue is:
JSON string that works in initialization i.e.
hot = new Handsontable(container, {
startRows: 10,
startCols: 7,
rowHeaders: true,
colHeaders: columnHeaders,
data : objectData,
manualColumnResize: true,
minsparerows: 1
});
same objectData variable when used in hot.loadData(objectData); doesn’t work. It doesn’t show any js error but no data is displayed in table.