Thank you for your response. So, if I had a dynamic # of drop downs, I could do something like this:
html.Div(id='dropdown_container', children=[]),
html.Div(id='dropdown_container_output'),
@app.callback(
Output({'type': 'dynamic-output', 'index': MATCH}, 'children'),
Input({'type': 'dynamic-dropdown', 'index': MATCH}, 'value'),
State({'type': 'dynamic-dropdown', 'index': MATCH}, 'id'),
)
Is similar functionality supported for a dcc.Store ? If you wouldn’t mind, can you share an example.
Thanks