admin管理员组文章数量:1344299
Doing form validation with angularjs I want to mark all required fields as erroneous when the user click submit.
I am using input.ng-dirty.ng-invalid to style the controls with error. So what I want is to set ng-dirty on required controls (or all controls.. it will be the same for me) when the user submits the form.
Validation is working. I understand why, what I am trying could be wrong, but I found no other way to do the same effect, except something that I think is too plicated to be right.
What I tried was:
<div ng-app>
<form novalidate>
<input name="formvalue" type="text" ng-model="formvalue" required />
<input type="submit" />
</form>
</div>
/
Doing form validation with angularjs I want to mark all required fields as erroneous when the user click submit.
I am using input.ng-dirty.ng-invalid to style the controls with error. So what I want is to set ng-dirty on required controls (or all controls.. it will be the same for me) when the user submits the form.
Validation is working. I understand why, what I am trying could be wrong, but I found no other way to do the same effect, except something that I think is too plicated to be right.
What I tried was:
<div ng-app>
<form novalidate>
<input name="formvalue" type="text" ng-model="formvalue" required />
<input type="submit" />
</form>
</div>
http://jsfiddle/yq4NG/
Share Improve this question asked Aug 19, 2013 at 23:41 FernandoFernando 2,1994 gold badges29 silver badges49 bronze badges1 Answer
Reset to default 8Let's start by adding angular to your jsfiddle by wrapping it in
<div ng-app>...</div>
http://jsfiddle/yq4NG/1/
By default the required field will be validated on input (dirty). If you want to have them validated on submit before any input (pristine), then you can run a function on your submit button that will check for pristine fields and dirty them.
That is what i have done in the example: http://jsfiddle/yq4NG/6/
You could probably build a reusable solution using custom formatters and validators but this is a simple on off solution.
EDIT:
Simpler again using just classes: http://jsfiddle/yq4NG/8/
EDIT [as suggested by @XMLilley in the ments]:
Because angular doesn't provide a $setDirty()
method that's equivalent to $setPristine()
we're triggering the $dirty
state by simply updating the $viewValue with the contents of the $modelValue
. It changes nothing, but simulates a user having manually entered each $pristine
field and messed around with the value without changing anything.
本文标签: javascriptForce ngdirty in angularjs form validationStack Overflow
版权声明:本文标题:javascript - Force ng-dirty in angularjs form validation - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743755424a2533422.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论