Guest User

Untitled

a guest
Jan 23rd, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.78 KB | None | 0 0
  1. <table class="mygrid mydataTable table table-striped display table-striped table-stroke table-responsive wordwrap" width="100%">
  2. <thead>
  3. <tr>
  4. <th>Chef Name</th>
  5. <th>Date</th>
  6. <th>Description</th>
  7. </tr>
  8. </thead>
  9. <tbody>
  10. @if (Model != null && Model._FeedBacklist != null && Model._FeedBacklist.Count > 0)
  11. {
  12. int i = 0;
  13. foreach (var item in Model._FeedBacklist)
  14. {
  15. <tr>
  16. <td>@item.Name</td>
  17. <td>@item.ModifyDate</td>
  18. <td><a data-toggle="collapse" data-target="#Feedback_@i"><i class="fa fa-chevron-down" aria-hidden="true"></i></a></td>
  19. @*<table> <tr><td></td><td></td><td>@item.Feedback</td></tr> </table>*@
  20. </tr>
  21. <tr id="Feedback_@i" class="collapse hidden">
  22. <td colspan="3">
  23. <div class="descDiv">
  24. @item.Feedback
  25. </div>
  26. </td>
  27. </tr>
  28. i++;
  29. }
  30. }
  31. </tbody>
  32. </table>
Add Comment
Please, Sign In to add comment