I recently implemented handsontable in my project and everything was working perfectly up until last week.
However, for the past two days, I've been encountering an issue where it only displays a single row with readonly cells.
I have not made any changes to the code, so I'm unsure about what could be causing this problem.
hot = new Handsontable(document.getElementById('Scid'), {
rowHeaders: true,
minCols: 23,
maxCols: 23,
columnSorting: true,
colHeaders :['IssuerCode','ProductCode','ComponentCode','VariantCode','Platform','TrackingCode','MedicalPlanCode','PharmacyPlanCode','AvValue','MetallicLevel','Riders','Network','ScidStatus','ContributionAmountMin'
,'ContributionAmountMax','HIOSDescriptor','HIOSReason','LinkedHIOS','CaseEffectiveDate','GeoRating','DiscontinueDate','NewExisting','Note'],
minSpareRows: 1
});
If anyone has any insights or suggestions on how to resolve this issue, please help me out.