Replies: 1 comment 4 replies
-
Handsontable does not support hyperformula 1.0.0 yet. "optionalDependencies": {
"hyperformula": "0.6.2"
}, https://github.com/handsontable/handsontable/blob/master/package.json You will need to downgrade to 0.6.* if you use handsontable with hyperformula. Also, handsontable issues should go on the handsontable repo I think. This is just for hyperformula. |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello!
I updated my Hyperformula to 1.0.0 and I start to have a error related to sheetId:
I've defined my sheetId and sheetName like this:
Even though I have set my sheetId, Hyperformula initialize it with the value of sheetName.
If I don't set the sheetName, sheetId is automatically set as "Sheet1" which is not a number.
If I set sheetName as a number, sheetId is ok, but then sheetName gives an error, because it needs to be a string.
Looking into Hyperformula code in devTools, I found this:
So it looks like Hyperformula actually is using sheetName as sheetId, even though it is not possible, because id needs to be a number and name needs to be a string.
If I remove Hyperformula, Handsontable is initiated without errors, so I think the problem is not there.
I'm not sure if I'm missing something, do I need to configure something else?
EDIT 1
Debuging I found this issue:
isItPossibleToReplaceSheetContent waits for sheetId but onAfterLoadData pass sheetName to it
Beta Was this translation helpful? Give feedback.
All reactions