mxlei01
December 14, 2018, 10:52pm
1
I’m trying to update a DashTables (https://github.com/plotly/dash-table )
It seems that if we want to create one dynamically we would need 2 functions that updates the row and the column.
Output('table', 'columns'),
Output('table', 'data'),
Is it possible to change the column and the data just like the old DashTables-Experiment?
Previously you just need to update:
Output('table', 'rows')
It’s not yet, you’ll need two callbacks for now.
We’re working on support for multiple outputs from a single callback in Dash though, so soon you’ll be able to update both properties from a single callback.
mxlei01
December 15, 2018, 5:19am
3
Thanks for the reply!
I think I’ll just wait until the multiple output and then move migrate from the old experiment to the new dash tables.
Is there a thread or GitHub issue I can follow for multiple outputs?