Welcome to the React feedback portal. We’re happy you’re here! If you have feedback on how to improve the React, we’d love to hear it!

  • Check out the features or bugs others have reported and vote on your favorites. Feedback will be prioritized based on popularity.
  • If you have feedback that’s not listed yet, submit your own.

Thanks for joining our community and helping improve Syncfusion products!

1
Vote

Hi,


my situation: I have multiple tabs, one with the spreadsheet component, all tabs interact with each other. I want, that when switching away from the spreadsheet and then coming back, to see the table as I filled it before.

My idea to behave as needed is to saveAsJson (which I do anyway) on actionEnd in state


on tab change, a useEffect triggers, and does:

spreadsheetRef.current?.openFromJson({file: test.jsonObject})


Technically the data is there, but it renders the table twice. One linked with the other somehow.


If I click on the top, it changes range of the botttom. But typing is done on top, which then will be shown at the bottom again.

See attatched image.


Is there a smoother way of handling all that? Or how can I fix this problem.


Thank you in advance.