Advertisement
Guest User

Untitled

a guest
Mar 5th, 2015
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.38 KB | None | 0 0
  1. <div class="group" ng-repeat="group in Groups">
  2. <table>
  3. <tr>
  4. <td>{{group.Description}}</td>
  5. <td><input type="radio" value="1" name="{{group.Id}}" ng-model="group.SatisfactionLevel" /></td>
  6. <td><input type="radio" value="1" name="{{group.Id}}" ng-model="group.SatisfactionLevel" /></td>
  7. </tr>
  8. </table>
  9. <div class="group-detail" ng-class="{'hidden': group.SatisfactionLevel != 1}">
  10. <table>
  11. <tr ng-repeat="item in group.Details">
  12. <td>{{item.Description}}</td>
  13. <td><input type="radio" value="1" name="{{item.Id}}" ng-model="item.SatisfactionLevel" /></td>
  14. <td><input type="radio" value="1" name="{{item.Id}}" ng-model="item.SatisfactionLevel" /></td>
  15. </tr>
  16. </table>
  17. </div>
  18.  
  19. "Groups": [
  20. {
  21. "Id":"AA",
  22. "Description":"Service",
  23. "SatisfactionLevel":1,
  24. "Details":[{"Id":"AA1","Description":"Cleanliness","SatisfactionLevel":1},
  25. {"Id":"AA2","Description":"Timeliness","SatisfactionLevel":1}
  26. ]
  27. },
  28. {
  29. "Id":"AB",
  30. "Description":"Food",
  31. "SatisfactionLevel":1,
  32. "Details":[{"Id":"AB1","Description":"Price","SatisfactionLevel":1},
  33. {"Id":"AB2","Description":"Portion","SatisfactionLevel":1}
  34. ]
  35. }
  36. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement