Guest User

Untitled

a guest
Aug 30th, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. function changeStatus(id, st){
  2. $.ajax({
  3. url: '/dcm/list_instructors.php?action=status&id=' + id + '&st=' + st,
  4. });
  5.  
  6. $(document).ready(function() {
  7. console.log($("#status"));
  8. var table = $('#instructors').DataTable({
  9. "ajax": "/dcm/list_instructors.php?data=json",
  10. "columns": [
  11. {"data": "Actions"},
  12. {"data": "ID"},
  13. {"data": "Name"},
  14. {"data": "Address"},
  15. {"data": "Homephone"},
  16. {"data": "Workphone"},
  17. {"data": "Cellphone"},
  18. {"data": "Status"}
  19. ]
  20. });
Add Comment
Please, Sign In to add comment