freddy0512

view

Nov 27th, 2016
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. //ini datatable tampung barang beli
  2. $(document).ready(function () {
  3. var oTable = $('#big_table').dataTable({
  4. "bProcessing": true,
  5. "bServerSide": true,
  6. "sAjaxSource": '<?php echo base_url(); ?>pembelian/datatablebarangbelisatuan',
  7. "bJQueryUI": true,
  8. "sPaginationType": "full_numbers",
  9. "iDisplayStart ": 20,
  10. "oLanguage": {
  11. "sProcessing": "<img src='<?php echo site_url('assets/loader/ajax-loader_dark.gif'); ?>'>"
  12. },
  13. "fnInitComplete": function () {
  14. //oTable.fnAdjustColumnSizing();
  15. },
  16. 'fnServerData': function (sSource, aoData, fnCallback) {
  17. $.ajax
  18. ({
  19. 'dataType': 'json',
  20. 'type': 'POST',
  21. 'url': sSource,
  22. 'data': aoData,
  23. 'success': fnCallback
  24. });
  25. }
  26. });
  27. });
Add Comment
Please, Sign In to add comment