Advertisement
Guest User

Untitled

a guest
Jul 27th, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.50 KB | None | 0 0
  1. <table class="mediaTable dataTableExt">
  2. <thead>
  3. <tr>
  4. <th class="essential persist">
  5. <a data-bind="click: function () {sortGrid('cust','ConfirmationNumber')}" href="#">@Model.GetLabel("Confirmation #")</a> </th>
  6.  
  7. <th class="essential">
  8. <a data-bind="click: function () {sortGrid('cust','FirstName')}" href="#">@Model.GetLabel("First Name")</a>
  9. </th>
  10. <th class="optional">
  11. <a data-bind="click: function () {sortGrid('cust','LastName')}" href="#">@Model.GetLabel("Last Name")</a>
  12. </th>
  13.  
  14. </tr>
  15. </thead>
  16. <!-- ko foreach: customerOrders-->
  17. <tbody>
  18. <tr>
  19. <td class="essential persist" data-bind="text:ConfirmationNumber">
  20. </td>
  21.  
  22. <td class="essential" data-bind="text:CustomerFirstName">
  23. </td>
  24. <td class="optional" data-bind="text:CustomerLastName">
  25. </td>
  26.  
  27. </tr>
  28. </tbody>
  29. <!-- /ko-->
  30. </table>
  31.  
  32. <table class="mediaTable dataTableExt">
  33. <thead>
  34. <tr>
  35. <th class="essential persist" data-bind="visible: $root.hidden() != 'ConfirmationNumber'">
  36. <a data-bind="click: function () {sortGrid('cust','ConfirmationNumber')}" href="#">@Model.GetLabel("Confirmation #")</a> </th>
  37.  
  38. <th class="essential" data-bind="visible: $root.hidden() != 'FirstName'">
  39. <a data-bind="click: function () {sortGrid('cust','FirstName')}" href="#">@Model.GetLabel("First Name")</a>
  40. </th>
  41. <th class="optional" data-bind="visible: $root.hidden() != 'LastName'">
  42. <a data-bind="click: function () {sortGrid('cust','LastName')}" href="#">@Model.GetLabel("Last Name")</a>
  43. </th>
  44.  
  45. </tr>
  46. </thead>
  47. <!-- ko foreach: customerOrders-->
  48. <tbody>
  49. <tr>
  50. <th class="essential persist" data-bind="visible: hidden() != 'ConfirmationNumber'"> <a data-bind="click: function () {sortGrid('cust','ConfirmationNumber')}" href="#">@Model.GetLabel("Confirmation #")</a>
  51. </th>
  52. <th class="essential" data-bind="visible: hidden() != 'FirstName'"> <a data-bind="click: function () {sortGrid('cust','FirstName')}" href="#">@Model.GetLabel("First Name")</a>
  53.  
  54. </th>
  55. <th class="optional" data-bind="visible: hidden() != 'LastName'"> <a data-bind="click: function () {sortGrid('cust','LastName')}" href="#">@Model.GetLabel("Last Name")</a>
  56.  
  57. </th>
  58. </tr>
  59. </tbody>
  60. <!-- /ko-->
  61. </table>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement