-
Notifications
You must be signed in to change notification settings - Fork 692
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
How do I hide empty option values with classes? #874
Comments
You might consider using the Otherwise you might try using css to hide |
Otherwise you might try using css to hide li tags with no text that are under the ui-multiselect-checkboxes css class. This seems my best option I didn't know it rendered in li tags. So the css would then be |
If you inspect the HTML on the demo page, it's not the Something like: |
What is the current behavior?
My empty value tags still appear in the ui.
I put style="display:none;" in the option tag.
I put option[value=""] {display: none;} in the style sheet
I even tried using the hidden attribute
What is the expected behavior?
I want to hide an option tag with empty value. Is there a custom css class I need to use?
The text was updated successfully, but these errors were encountered: