Created
April 11, 2015 00:48
-
-
Save anonymous/6ee89fec78623d6354de to your computer and use it in GitHub Desktop.
forms anidados
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <ng-form name="formPadre"> | |
| <div ng-repeat="obj1 in lista1"> | |
| <ng-form name="formObj1"> | |
| <input type="text" name="obj1" ng-model="obj1.attr" > | |
| </ng-form> | |
| </div> | |
| <div ng-repeat="obj2 in lista2"> | |
| <ng-form name="formObj2"> | |
| <input type="text" name="obj2" ng-model="obj2.attr" > | |
| </ng-form> | |
| </div> | |
| </ng-form> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment