Hi,
I have several problems with spreadseet control in REACT.
1) Control has trouble working in other cultures. I bypassed this problem by using default (en-US) culture.
<IntlProvider locale={"en-US"}>
<Spreadsheet
ref={spreadsheet}
style={{
width: "100%"
}}
/>
</IntlProvider>
2) After loading xlsx i revive error:
Uncaught (in promise) TypeError: Cannot read properties of undefined (reading 'suspendChanges')
at loadSheets (index-esm.js:25621:1)
at readWorkbook (index-esm.js:25609:1)
3) No matter how I use the control I always get errors when scrolling
index-esm.js:23212 Uncaught TypeError: Cannot read properties of null (reading 'render')
at View.render (index-esm.js:23212:1)
at Controller.onScroll (index-esm.js:10985:1)
Summary:
As far as point 1 is not important to me. While 2 and 3 make it impossible to use the control. The strangest thing is that the Excel file loads and displays correctly....
I use:
- "@progress/kendo-react-spreadsheet": "^6.0.2",
- typescript
I would ask for any hint as to what could be wrong
Ernest