Drop down where you can select the same value twice

Hi All,

I am trying to create a drop down where I can select the same value multiple times. I put a picture below. So in the example drop down below I have Price Selected, I would like to select price a second time. Does anyone know if this is possible?

I don’t think it’s possible with the current Dropdown. Could you tell us about your use case to understand whether there are some workarounds?

You can try to do like this, :sweat_smile:

dcc.Dropdown(
    id='some-drop-down',
    options=[
        {'label':'Price','value':'price1'},
        {'label':'Price','value':'price2'},
        {'label':'Price','value':'price3'},
        {'label':'QTY','value':'qty'}],
    value=[],
    multi=True
)

1 Like

I think I am just going to have to use a second drop down and then concat the list into one.

1 Like

That sounds good!