Replies: 1 comment 2 replies
-
Hey @Heenkkk , |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hey!
I have a problem when using
DynamicDataSheetGrid
when the unit (percent, float, etc...) of the underlying data changes. It seems that when the data consists of cells with the value 0, the grid doesn't re-render when the unit of the data changes (for those exact cells where the data is still 0).Here is an example. In the first image the values are correctly rendered with the % sign. In the second image, the data has changed and the values should now be absolute values (floats), but the cells that were 0% and should be 0 in the new data haven't been re-rendered. The cells that had a nonzero percentage or are nonzero in the new data have been re-rendered correctly. The first grid uses
percentColumn
for all columns and the second grid usesfloatColumn
.I have checked that the data itself and the columns are updated when the corresponding action is triggered (data is fetched from a Redux store and the columns and rows are then generated accordingly when clicking a specific button).
The grid does re-render correctly when the entire view is re-rendered.
Is there anything that can be done about this?
Beta Was this translation helpful? Give feedback.
All reactions