I build a page with several tabs. Selecting the tabs results in a different charts.
In some charts i caln use a dropdownmenu to make changes. Can i disable the dropdownmenu when a certain tab is selected ?
Hi @marvy,
If you are using dcc.Dropdown
you can set the property disabled=True
to disable the selection. Dropdown | Dash for Python Documentation | Plotly
You can make this dynamic using a callback which triggers on tab changed and updates the disabled
property.