I'm working on a dynamic form using angular.js. Inputs field
<div ng-show="condition()">
<input type="text" name="field" required>
</div>
If condition() returns false, the input field won't be shown. But by clicking on a submit button, I'll get on chrome, the message:
An invalid form control with name='field' is not focusable.
Well, a solution is, to use ng-required:
<div ng-show="condition()">
<input type="text" name="field" ng-required="condition()">
</div>
Well, here I have to repeat code, using the condition() several times.
It becomes bad, when you can encapsulated ng-show's:
<div ng-show="condition1()">
<div ng-show="condition2()">
<input type="text" name="field"
ng-required="condition1() && condition2()">
</div>
</div>
Is there a better way, the required tag should be there when the input is visible, and not, if it's hidden.
Instead of using ng-show , use ng-if, because when you use ng-show then that element is still part of DOM.
something like this:
<div ng-if="condition()">
<input type="text" name="field" required>
</div>
This way you will not get error
An invalid form control with name='field' is not focusable.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With