Guest User

Untitled

a guest
Dec 13th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. //Category list
  2. function list() {
  3. table = $("#tblList").dataTable({
  4. "aProcessing" : true,
  5. "aServerSide" : true,
  6. dom : "Bfrtip",
  7. buttons : [
  8. "copyHtml5",
  9. "excelHtml5",
  10. "csvHtml5",
  11. "pdf"
  12. ],
  13. "ajax" : {
  14. url : "../../ajax/categoria.php?op=listar",
  15. type : "get",
  16. dataType : "json",
  17. error : function (e) {
  18. console.log(e.responseText);
  19. }
  20. }
  21. }).DataTable();
  22. }
Add Comment
Please, Sign In to add comment