Dcc.dropdown: how to get what selection user made when multi=True

Hi,

I have a dropdown with multi=True, searchable=True. I want the user to multi select parameters from the drop down, and I plot those selection on Dash. How do I access the user selection information from the dropdown (multi=True) condition?

1 Like

Hello @Akshay91,

You are trying to figure out what the last selection of what the user selected?

Or just the list of selections?

If just the list of selections, the prop of value will give you that.

Ie:

Input(‘drop-down’,’value’)
1 Like

I understood. I debug the size of input in Callback function and its a list of multiple input selection.
I needed the elements of this multi selection input list to make subplots.

Thanks!

1 Like