Guest User

Untitled

a guest
Feb 25th, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.13 KB | None | 0 0
  1. <div style="overflow:scroll; -webkit-overflow-scrolling:touch">
  2. <table cellpadding="2" cellspacing="2">
  3. <thead>
  4. <tr>
  5. <th>Edit</th>
  6. <th>Delete</th>
  7. <th>LSL_SYS_ID</th>
  8. <th>ID</th>
  9. <th>Building Type</th>
  10. <th>Name/Number</th>
  11. <th>Flat No</th>
  12. <th>Room Type </th>
  13. <th>Room No</th>
  14. <th>Wall Number</th>
  15. <th>Window No</th>
  16. <th>Window Type </th>
  17. </tr>
  18. </thead>
  19. <tbody>
  20. <tr *ngFor="let ID of measure_lines; let rowIndex = index">
  21. <ion-col><button ion-button> <ion-icon name="open" (Click)="goEditing()"> </ion-icon></button></ion-col>
  22. <ion-col><button ion-button color="danger"> <ion-icon name="trash"> </ion-icon></button></ion-col>
  23. <td><p>{{ID.lsl_sys_id}}</p></td>
  24. <td><p>{{ID.ml_sys_id}}</p></td>
  25. <td><p>{{ID.ml_build_type}}</p></td>
  26. <td><p>{{ID.ml_build}}</p></td>
  27. <td><p>{{ID.ml_flat}}</p></td>
  28. <td><p>{{ID.ml_unit}}</p></td>
  29. <td><p>{{ID.ml_room_no}}</p></td>
  30. <td><p>{{ID.ml_wall_no}}</p></td>
  31. <td><p>{{ID.ml_window_no}}</p></td>
  32. <td><p>{{ID.ml_window_type}}</p></td>
  33. </tr>
  34. </tbody>
  35. </table>
Add Comment
Please, Sign In to add comment