You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello.
We currently have a situation where data object has an array of years under it which also have data that should be shown within table.
We calculate the columns based on available years on application but currently the only way to actually get value of cell is trough row original property.
Should we try to denormalize data before passing to table?
So from this data:[ {name: "ABC", years: [{from :2020, to:2022, price: 200}]}]
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hello.
We currently have a situation where data object has an array of years under it which also have data that should be shown within table.
We calculate the columns based on available years on application but currently the only way to actually get value of cell is trough row original property.
Should we try to denormalize data before passing to table?
So from this
data:[ {name: "ABC", years: [{from :2020, to:2022, price: 200}]}]
To
data:[ {name: "ABC", 2020price: 200}]
If the plan is to make rows editable as well.
Beta Was this translation helpful? Give feedback.
All reactions