dash
dash copied to clipboard
[Feature Request] Dropdown Right/Control Click multi select
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 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'
)

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