Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Select All | Deselect All buttons are functional when dropdown is disabled #1821

Closed
dott1718 opened this issue Feb 1, 2023 · 0 comments · Fixed by #1822
Closed

Select All | Deselect All buttons are functional when dropdown is disabled #1821

dott1718 opened this issue Feb 1, 2023 · 0 comments · Fixed by #1822
Assignees
Labels
bug Bug in code ui Related to UI

Comments

@dott1718
Copy link

dott1718 commented Feb 1, 2023

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

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,
    )

dropdown_disabled

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Bug in code ui Related to UI
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants