dash icon indicating copy to clipboard operation
dash copied to clipboard

[Feature Request] Dropdown Right/Control Click multi select

Open halemade opened this issue 3 years ago • 2 comments

Right now you need to click one element, then click the dropdown to click another - it would be wonderful (DE client request) to be able to right or control-click to select all options at once.

halemade avatar May 12 '22 19:05 halemade

@halemade maybe you can try the AntdSelect() in my components library fac, here is a simple example:

fac.AntdSelect(
    placeholder='AntdSelect demo',
    options=[
        {
            'label': f'label{i}',
            'value': f'label{i}'
        }
        for i in range(5)
    ],
    style={
        'width': '200px'
    },
    mode='multiple'
)

demo

CNFeffery avatar May 16 '22 06:05 CNFeffery

@CNFeffery thanks for the suggestion! This looks like a great component. I'll check it out 🎉

halemade avatar May 16 '22 09:05 halemade