the multiple outputs is great but i face some issue.
if i have a lots of outputs, it need a way to control which output i don’t want to update .
the code maybe like as follows:
@app.callback([
Output('graph', 'figure'),
Output('data-table', 'data'),
Output('data-table', 'columns'),
Output('container', 'style')
], [Input('data-dropdown', 'value')])
def multi_output(value):
if condition_1:
...
return [preventupdate, b, c, d]
elif condition_2:
...
return [a, preventupdate, c, d]
else:
...
return [a, b, c, preventupdate]