Guest User

Untitled

a guest
Jan 23rd, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.80 KB | None | 0 0
  1. [
  2. {
  3. "_id": "5a61acfdd5df1761dd2eb1ef",
  4. "branch": "Lucena City",
  5. "__v": 0,
  6. "building": [
  7. {
  8. "name": "mhq",
  9. "floors": [
  10. "1st",
  11. "2nd",
  12. "3rd"
  13. ]
  14. }
  15. ],
  16. "dateCreated": "2018-01-19T08:31:57.121Z"
  17. },
  18. {
  19. "_id": "5a61ad6fd5df1761dd2eb1f1",
  20. "branch": "Lucban",
  21. "__v": 0,
  22. "building": [
  23. {
  24. "name": "mhq",
  25. "floors": [
  26. "ground floor",
  27. "2nd floor",
  28. "3rd floor",
  29. "4th floor",
  30. "5th floor"
  31. ]
  32. }
  33. ],
  34. "dateCreated": "2018-01-19T08:33:51.761Z"
  35. },
  36. {
  37. "_id": "5a61ada1d5df1761dd2eb1f2",
  38. "branch": "loperz",
  39. "__v": 0,
  40. "building": [
  41. {
  42. "name": "lope",
  43. "floors": [
  44. "ground floor",
  45. "1st floor"
  46. ]
  47. }
  48. ],
  49. "dateCreated": "2018-01-19T08:34:41.904Z"
  50. }]
  51.  
  52. <div class="row justify-content-md-center">
  53. <div class="col-md-4">
  54. <label for="branch">
  55. <strong>Branch</strong>
  56. </label>
  57. <select ng-options="loc as loc.branch for loc in vm.locations" ng-model="vm.locationTest" class="form-control">
  58. </select>
  59. <small id="emailHelp" class="form-text text-muted">Select branch.</small>
  60. </div>
  61. <div class="col-md-4">
  62. <label for="building">
  63. <strong>Building</strong>
  64. </label>
  65. <select ng-options="ds as ds.building for ds in vm.locationTest" ng-model="vm.roomData.building" class="form-control">
  66. </select>
  67. </div>
  68. <div class="col-md-4">
  69. <label for="roomFloor">
  70. <strong>Room Floor</strong>
  71. </label>
  72. <select ng-options="ds as ds for ds in vm.locationTest.floors" ng-model="vm.roomData.roomFloor" class="form-control">
  73. </select>
  74. </div>
Add Comment
Please, Sign In to add comment