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'm working with cakephp and therefore getting on all reuired input field the attribute "required" set. This does not work with bootstrap-select because it's hidden and therefore the user doesn't get any feedback.
Error message in Chrome: An invalid form control with name='membership[0][year]' is not focusable.
The required attribute gets added by several framworks for all required fields. For example CakePHP.
A possible solution would be to remove all required attributes on selects that get hidden by bootstrap-select. Since there should always be some server side validation, this would not hurt anybody.
Bernhard
The text was updated successfully, but these errors were encountered:
Hello!
I'm working with cakephp and therefore getting on all reuired input field the attribute "required" set. This does not work with bootstrap-select because it's hidden and therefore the user doesn't get any feedback.
Original:
Error message in Chrome:
An invalid form control with name='membership[0][year]' is not focusable.
The
required
attribute gets added by several framworks for all required fields. For example CakePHP.A possible solution would be to remove all
required
attributes on selects that get hidden bybootstrap-select
. Since there should always be some server side validation, this would not hurt anybody.Bernhard
The text was updated successfully, but these errors were encountered: