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 using a choice element, rendered by a select element, if the empty_value is not null and the required is set to true, the validation still pass even if no option is selected. This issue is occurring at least on Chrome 33.0.1750.152 @ Linux.
Looking at the source code, I guess the problem is that no empty value is associated to the option of the empty_value. Adding value="" after option in the line 197 of file bootstrap.html.twig solved my problem.
The text was updated successfully, but these errors were encountered:
When using a choice element, rendered by a select element, if the empty_value is not null and the required is set to true, the validation still pass even if no option is selected. This issue is occurring at least on Chrome 33.0.1750.152 @ Linux.
Looking at the source code, I guess the problem is that no empty value is associated to the option of the empty_value. Adding
value=""
afteroption
in the line 197 of file bootstrap.html.twig solved my problem.The text was updated successfully, but these errors were encountered: