I\'ve read several articles and StackOverflow questions relating to the setting of focus in AngularJs.
Unfortunately all the examples that I have read assume that th
You can add an attribute in each form element which is a function (ideally a directive) that receives a field id. This field id would have to correlate somehow to your $error object. The function can check if the id is in your $error object, and if so return the attribute setting for an error.
If you had an error, it would generate this.
You can use this to set your style and you now know which fields have errors. Unfortunately you don't know which is the first field.
One solution would be to use jQuery and the .first filter. If you go this route, check out http://docs.angularjs.org/api/angular.element
Another solution would be to add into your form fields a field order parameter for the function: {{errorCheck('name', 1)}}. You could push the error field names to an array, then sort them by the field order parameter. This could give you more flexibility.
Hope this helps.