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
When using header sorters and then editing the data in a tabulator widget the data gets inverted.
As an example, starting with this dataframe:
a b
0 1 x
1 2 y
2 3 z
Then applying a header/frontend sorter, editing a cell (here 3 to 4) and applying the header sorter again (the data should be displayed in the same order):
a b
0 4 z
1 2 y
2 1 x
The text was updated successfully, but these errors were encountered:
Damn, was worried this could happen when syncing the sorters. We'll have to apply the sorters only for the current_view and not for the internal _processed attribute.
When using header sorters and then editing the data in a tabulator widget the data gets inverted.
As an example, starting with this dataframe:
Then applying a header/frontend sorter, editing a cell (here
3
to4
) and applying the header sorter again (the data should be displayed in the same order):The text was updated successfully, but these errors were encountered: