Advertisement
Guest User

Untitled

a guest
Sep 17th, 2014
197
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.89 KB | None | 0 0
  1. { "father": { "name": "", "middlename": "", "lastname": "", "birthday": "", "birthmonth": "", "birthyear": "", "status": "", "birthstate": "", "nationality": "", "curp": "", "college": "", "job": "", "employer": "", "jobaddress": "", "jobphone": "", "cellphone_1": "", "cellphone_2": "", "email": "", "username": "", "dadpassword": "" }, "mother": { "name": "", "middlename": "", "lastname": "", "birthday": "", "birthmonth": "", "birthyear": "", "status": "", "birthstate": "", "nationality": "", "curp": "", "college": "", "job": "", "employer": "", "jobaddress": "", "jobphone": "", "cellphone_1": "", "cellphone_2": "", "email": "", "username": "", "mompassword": "" }, "kids": [], "invoicingdata": { "name": "", "address": "", "streetno": "", "suburb": "", "zip": "", "rfc": "" }, "familydata": { "street": "", "number": "", "suburb": "", "zip": "", "homephone": "" } };
  2.  
  3. { "matricula": "", "name": "", "middle": "", "last": "", "room": "", "grade": "", "level": "", "schoolyear": "", "birthday": "", "birthmonth": "", "birthyear": "", "nationality": "", "birthcountry": "", "birthstate": "", "birthcity": "", "curp": "", "brosamount": "", "brothers": [], "placeamongbros": "", "gender": "", "liveswith": "", "notes": [] };
  4.  
  5. <tbody>
  6. <tr ng-repeat="(id, member) in members | filter:searchtxt">
  7. <td><a href="" ng-click="openForm(id)">Add</a></td>
  8. <td>
  9. <ul class="list-unstyled">
  10. <li ng-repeat="(key, kid) in member.kids | filter:searchtxt"><input type="text" class="form-control" ng-model="member.kids[key].matricula" ng-blur="updateMember(key)" /></li>
  11. </ul>
  12. </td>
  13. <td>
  14. <ul class="list-unstyled">
  15. <li ng-repeat="(key, kid) in member.kids | filter:searchtxt"><input type="text" class="form-control" ng-model="member.kids[key].schoolyear" ng-blur="updateMember(key)" /></li>
  16. </ul>
  17. </td>
  18. .
  19. .
  20. .
  21. </tr>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement