[AngularJS] Re: Form Validation Not Working For Some Users

2014-05-28 Thread cutey Love
Thank you that makes sense, what function is there in angular to make it re evaluate the fields? On Tuesday, May 13, 2014 6:25:02 PM UTC+1, cutey Love wrote: Hi, A few users are having an issue where my submit button is not active when they fill forms in.

[AngularJS] Re: Form Validation Not Working For Some Users

2014-05-16 Thread Garry Taylor
Hi Cutey, a solution to this would be to call the validate method when the focus is on the login button.. not the best solution but this would fix the issue. Checkout the following thread for more details : https://github.com/angular/angular.js/issues/1460 Some Password Managers are not

[AngularJS] Re: Form Validation Not Working For Some Users

2014-05-15 Thread cutey Love
I'm not really sure what you mean? the only validation im using is default ng-length and form type email, the rest I leave to angular. On Wednesday, May 14, 2014 9:08:22 AM UTC+1, Sander Elias wrote: Hi, Its not about validators. The problem is that the programs I told you about change

[AngularJS] Re: Form Validation Not Working For Some Users

2014-05-15 Thread Justin Walsh
Sander is saying that the password manager/form-filling solution built into the browser *may be* pre-populating the username/password fields *outside of the digest cycle of angular* and therefore the submit button is not enabled (as the validation has not run). A few users are having an issue

[AngularJS] Re: Form Validation Not Working For Some Users

2014-05-14 Thread cutey Love
Hi, It's not my own validations, it's the .$invalid property on a form, the form is very simple one field is email and one is ng-min-length of 5 It's a very few users having the issue. On Wednesday, May 14, 2014 8:02:54 AM UTC+1, Sander Elias wrote: Hi, Did you verify if your users