-
-
Notifications
You must be signed in to change notification settings - Fork 51
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Pivottable doesn't get updated in successive callbacks #10
Comments
has this been solved? |
+1, I am also running into this issue. If I use a dash_table, it updates when the callback is fired after the first time. Same callback structure and everything for dash_pivottable and it does not update when the callback is fired. Has anybody come up with a workaround? |
Still no luck on this one? Encountering the same issue.. |
I also had some trouble updating the pivot table properties though callbacks. You can hack it by placing the PT inside a |
Same issue here |
Same issue, @abogaard Could you please give us an example code? I tried to put the PT inside a dcc.Loading, and fire the callback using same input with the data generator(Some dropdown selector to filter data or choose file), but it still doesn't work. :( |
Update: My problem is caused by the table's ID, I generate every table with a random table id in callbacks solved my problem. |
@wittyfans could you explain it more or provide a code example? |
@adrienpacifico I had the same problem with loading in contents from a file that is chosen by a dropdown. This solution works for me. I think @wittyfans did it with some random number generator but the main point seems to be to change the id.
|
work like a charm! |
This works:
This doesn't:
The only difference of them is the 2 commented lines.
My environment:
Please run the cases to see the difference. Many thanks.
The text was updated successfully, but these errors were encountered: