You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When a ui.dropdown component is rendered with disabled=True, the "Select All | Deselect All" buttons are still enabled and functional (see the gif below)
Expected behavior
When disabled=True, the "Select All | Deselect All" buttons should get disabled.
Steps To Reproduce
Example of the code
ui.dropdown(
name="cols",
label="Columns to Drop",
choices=[ui.choice(c, c) for c in cols],
values=cols,
required=True,
trigger=False,
disabled=True,
)
The text was updated successfully, but these errors were encountered:
Wave SDK Version, OS
Wave 0.24.2
Ubuntu 20.04
Actual behavior
When a ui.dropdown component is rendered with disabled=True, the "Select All | Deselect All" buttons are still enabled and functional (see the gif below)
Expected behavior
When disabled=True, the "Select All | Deselect All" buttons should get disabled.
Steps To Reproduce
Example of the code
The text was updated successfully, but these errors were encountered: