Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a text input field for address, whenever the address is entered and search button next to the input field is clicked, I geocode the address and replace the input text with the result from the geocoder. I also set a scope variable 'addressOk'.

is it possible to invalidate this specific form input field according to $scope.addressOk or do I have to write a directive for this address geocoding input that invalidates the form when needed ?

share|improve this question
What do you mean by invalidate? – SunnyShah Jan 23 at 11:34
I mean that to mark that field as invalid so the form can't be submitted – Gal Ben-Haim Jan 23 at 12:25
jsfiddle.net/sunnycpp/8dt94/23 Looks like, It is not possible, Please post this question on mailing-list. – SunnyShah Jan 23 at 15:36
github.com/angular/angular.js/blob/master/src/ng/directive/… Checking this out can help too. – SunnyShah Jan 23 at 15:39
I found the solution myself and posted the answer – Gal Ben-Haim Jan 23 at 15:59

1 Answer

I found the solution, add a name attribute to the <form> and <input>, and then in the controller its possible to do $scope.formName.inputName.$setValidity(errorKey, isValid).

Then, its possible to display errors with something like ng-show="formName.inputName.$error.errorkey"

according to http://docs.angularjs.org/api/ng.directive:form If name attribute is specified, the form controller is published onto the current scope under this name.

share|improve this answer
Example: jsfiddle.net/8dt94/36 ;) – SunnyShah Jan 23 at 16:29

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.