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
I believe I've found a bug in the markup Twig outputs for expanded choices, using block choice_widget_expanded. The generated HTML (reformatted for ease of reading) is:
The issue? Note the extra <div class="form-group"> divs around every radio button. This causes problems with styling, as Bootstrap doesn't expect nested form groups; it also makes displaying jQuery Validation errors harder, as the structure changes for expanded choices vs single radio/checkbox markup.
I have hacked around in the Twig template, but I've only had success at breaking Twig...
The text was updated successfully, but these errors were encountered:
I believe I've found a bug in the markup Twig outputs for expanded choices, using block
choice_widget_expanded
. The generated HTML (reformatted for ease of reading) is:The issue? Note the extra
<div class="form-group">
divs around every radio button. This causes problems with styling, as Bootstrap doesn't expect nested form groups; it also makes displaying jQuery Validation errors harder, as the structure changes for expanded choices vs single radio/checkbox markup.I have hacked around in the Twig template, but I've only had success at breaking Twig...
The text was updated successfully, but these errors were encountered: