Guest User

Untitled

a guest
Jan 30th, 2019
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.89 KB | None | 0 0
  1. <table data-toggle="table"
  2. data-click-to-select="true"
  3. data-pagination="true"
  4. data-page-list="[5, 10, 15, 20]"
  5. data-height="340"
  6.  
  7.  
  8.  
  9. data-search="true" class="table-hover table-responsive" id="tableRoomList">
  10. <thead>
  11. <tr>
  12. <th data-sortable="true">Date</th>
  13. <th data-sortable="true">Time</th>
  14. <th data-sortable="true">Type of Appointments</th>
  15. <th data-sortable="true">Doctor Name</th>
  16. <th data-sortable="true">Facility Name</th>
  17. <th data-sortable="true">Facility Address</th>
  18. </tr>
  19. </thead>
  20. <tbody>
  21. @foreach (var item in Model)
  22. {
  23. <tr>
  24. <td data-sortable="true">@Html.DisplayFor(modelItem => item.TransDate)</td>
  25. <td data-field="record" data-sortable="true">@Html.DisplayFor(modelItem => item.TimeIn)</td>
  26. <td data-sortable="true">@Html.DisplayFor(modelItem => item.ApptType)</td>
  27. <td data-sortable="true">@Html.DisplayFor(modelItem => item.DoctorName)</td>
  28. <td data-sortable="true">@Html.DisplayFor(modelItem => item.FacilityName)</td>
  29. <td data-sortable="true">@Html.DisplayFor(modelItem => item.FacilityAddress_1)</td>
  30. </tr>
  31. }
  32. </tbody>
  33. </table>
Add Comment
Please, Sign In to add comment