-
-
Notifications
You must be signed in to change notification settings - Fork 79.1k
Checkbox and Radio Button-groups #8919
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
Comments
Gonna need a more concrete example of the problem(s) you're seeing. |
I have a form-element default value for checkbox or radiobutton. I use 'data-toggle="buttons"' instead of simple checkboxes. So, when I try to set "selected=selected" for this element it appears as non-selected. Thank you! |
If you could put together a jsFiddle, that would be great. |
There are 2 examples with buttons and checkboxes |
you need to add the |
Maybe this helps. Its how to add the active class automatically... $("form").bind("reset", function (e) { $('input[type=radio]').parent().removeClass('active'); |
Hi guys! Love your work!
Have some issues with checkbox and radio Buttons on Button-groups. I've try to pre-load option with a form, but got all buttons disabled. Hope you'll fix it.
Thank you!
The text was updated successfully, but these errors were encountered: