Skip to content

Instantly share code, notes, and snippets.

@locnguyen
Created November 1, 2014 21:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save locnguyen/3a72918ef86ad8257d6b to your computer and use it in GitHub Desktop.
Save locnguyen/3a72918ef86ad8257d6b to your computer and use it in GitHub Desktop.
<ul>
<li ng-repeat="(key, errors) in myForm.$error track by $index">
<strong ng-bind="key"></strong> errors
<ul>
<li ng-repeat="e in errors">
<span ng-bind="e.$name"></span> has an error: <strong ng-bind="key"></strong>.
</li>
</ul>
</li>
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment