Guest User

Untitled

a guest
Dec 12th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.27 KB | None | 0 0
  1. <table id="posts">
  2. <thead>
  3. <tr>
  4. <th>ID</th>
  5. <th>Title</th>
  6. <th>Date Created</th>
  7. <th>Published</th>
  8. </tr>
  9. </thead>
  10. <tbody>
  11. @foreach(var item in Model)
  12. {
  13. <tr>
  14. <td><a href="/@item.Id">Edit</a>|<a href="/@item.Id" class="btnDelete" id="del_@item.Id" data-url="/some/url/with/an/id/2">Delete</a></td>
  15. <td>@item.Title</td>
  16. <td>@item.DateCreated</td>
  17. <td>
  18. @{
  19. if (item.Published)
  20. <input type="checkbox" disabled="disabled" checked="checked" />
  21. else
  22. <input type="checkbox" disabled="disabled"/>
  23. }
  24. </td>
  25. </tr>
  26. }
  27. </tbody>
  28. </table>
  29.  
  30. <script type="text/javascript">
  31. $(document).ready(function () {
  32.  
  33. $('#posts').on('click', '.btnDelete', function()
  34. {
  35. var url = $(this).data('url');
  36.  
  37. $.ajax({
  38. url: url,
  39. type: 'DELETE',
  40. success: function(result) {
  41. // Do something with the result
  42. }
  43. });
  44.  
  45. });
  46. });
  47. </script>
Add Comment
Please, Sign In to add comment