Hi, although the dbc.DropdownMenu has a disable property, i’ve failed to apply the CSS cursor property to not-allowed.
Any known workaround?
Snippet:
More details:
Many thanks!
Hi, although the dbc.DropdownMenu has a disable property, i’ve failed to apply the CSS cursor property to not-allowed.
Any known workaround?
Snippet:
More details:
Many thanks!
Hi together,
As a matter of clarification, with dbc.Button the implementation works perfectly, both with the disabled and style={“cursor”: “pointer”}.
Snippet:
dbc.Button('Not Allowed Button Example', id='not_allowed_btn', disabled=True, color="info", className="mr-1", style={"cursor": "not-allowed"})])
Interestingly, with the dbc.DropdownMenu, it doesn’t.
Cheers
Hey @vcmorini
Use toggle_style
instead of style
and it should work.
dbc.DropdownMenu(..., toggle_style={"cursor": "not-allowed"}, disabled=True)