Replies: 2 comments
-
Who's this Jason guy that everyone keeps talking about? Great readable code, lots of optimizations and I appreciate you sharing your code. The smaller data would improve performance passing data via API. Which I will implement in my PWA app this week. |
Beta Was this translation helpful? Give feedback.
0 replies
-
Looks interesting @hjrb. I've coincidentally been working on some sheet serialization to JSON in the branch json-serialization |
Beta Was this translation helpful? Give feedback.
0 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.
-
I'm using this code to convert the Cell data to JSON and load cell data from JSON
`
record CellContent(int Row, int Col, object? Value, string? Formula, CellFormat? Format, string Type, CellValueType ValueType);
`
Including the row and column as JSON properties has the advantage that only those cell be included that either has a value or a formula, which reduces data volume. The value 10 for the minimum number of columns and rows is abitrary and could be made an optional parameter.
Any comments appreciated.
Beta Was this translation helpful? Give feedback.
All reactions