Advertisement
Guest User

Untitled

a guest
Oct 20th, 2014
216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. $(document).ready(function () {
  2. $('.sorted_table').sortable({
  3. containerSelector: 'table',
  4. itemPath: '> tbody',
  5. itemSelector: 'tr',
  6. placeholder: '<tr class="placeholder"/>'
  7. });
  8. });
  9.  
  10. <table id="listOfFile" class="table table-hover sorted_table">
  11. <thead class="head">
  12. <tr>
  13. <td class="filename">File name</td>
  14. <td class="type">Type</td>
  15. <td class="detail">Details</td>
  16. <td class="status">Status</td>
  17. <td></td>
  18. </tr>
  19. </thead>
  20. <tbody class="body">
  21. </tbody>
  22. </table>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement