Dropdown and Date Range Picker for Dash Bootstrap

Hi,

I was wondering if anyone knows if there are dropdown and daterangepicker components for bootstrap. Specifically, I am looking for dbc_dropdown and dbc_daterangepicker. I have been using the dcc versions, but they don’t seem to combine well with the othe dbc components.

Thank you!

Hi @cvalero

There is a dbc_select for a dropdown, but it doesn’t have a multi-select feature. You can find it here: Input - dbc docs

There are no date pickers in the dbc library. If you would like to style the dcc date pickers with a Bootstrap theme, the best option at the moment is to use a stylesheet from this library: GitHub - tcbegley/dash-bootstrap-css: Bootstrap CSS for use with Plotly Dash

Thank you!