Server IP : 173.249.157.85 / Your IP : 216.73.216.232 Web Server : Apache System : Linux server.frogzhost.com 3.10.0-1127.19.1.el7.x86_64 #1 SMP Tue Aug 25 17:23:54 UTC 2020 x86_64 User : econtech ( 1005) PHP Version : 7.3.33 Disable Function : NONE MySQL : OFF | cURL : OFF | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/econtech/public_html/public/back/assets/js/demo3/pages/crud/datatables/extensions/ |
Upload File : |
"use strict"; var KTDatatablesExtensionButtons = function() { var initTable1 = function() { // begin first table var table = $('#kt_table_1').DataTable({ responsive: true, // Pagination settings dom: `<'row'<'col-sm-6 text-left'f><'col-sm-6 text-right'B>> <'row'<'col-sm-12'tr>> <'row'<'col-sm-12 col-md-5'i><'col-sm-12 col-md-7 dataTables_pager'lp>>`, buttons: [ 'print', 'copyHtml5', 'excelHtml5', 'csvHtml5', 'pdfHtml5', ], columnDefs: [ { targets: 6, render: function(data, type, full, meta) { var status = { 1: {'title': 'Pending', 'class': 'kt-badge--brand'}, 2: {'title': 'Delivered', 'class': ' kt-badge--danger'}, 3: {'title': 'Canceled', 'class': ' kt-badge--primary'}, 4: {'title': 'Success', 'class': ' kt-badge--success'}, 5: {'title': 'Info', 'class': ' kt-badge--info'}, 6: {'title': 'Danger', 'class': ' kt-badge--danger'}, 7: {'title': 'Warning', 'class': ' kt-badge--warning'}, }; if (typeof status[data] === 'undefined') { return data; } return '<span class="kt-badge ' + status[data].class + ' kt-badge--inline kt-badge--pill">' + status[data].title + '</span>'; }, }, { targets: 7, render: function(data, type, full, meta) { var status = { 1: {'title': 'Online', 'state': 'danger'}, 2: {'title': 'Retail', 'state': 'primary'}, 3: {'title': 'Direct', 'state': 'success'}, }; if (typeof status[data] === 'undefined') { return data; } return '<span class="kt-badge kt-badge--' + status[data].state + ' kt-badge--dot"></span> ' + '<span class="kt-font-bold kt-font-' + status[data].state + '">' + status[data].title + '</span>'; }, }, ], }); }; var initTable2 = function() { // begin first table var table = $('#kt_table_2').DataTable({ responsive: true, buttons: [ 'print', 'copyHtml5', 'excelHtml5', 'csvHtml5', 'pdfHtml5', ], processing: true, serverSide: true, ajax: { url: 'https://keenthemes.com/metronic/themes/themes/metronic/dist/preview/inc/api/datatables/demos/server.php', type: 'POST', data: { // parameters for custom backend script demo columnsDef: [ 'OrderID', 'Country', 'ShipCity', 'ShipAddress', 'CompanyAgent', 'CompanyName', 'Status', 'Type',], }, }, columns: [ {data: 'OrderID'}, {data: 'Country'}, {data: 'ShipCity'}, {data: 'ShipAddress'}, {data: 'CompanyAgent'}, {data: 'CompanyName'}, {data: 'Status'}, {data: 'Type'}, ], columnDefs: [ { targets: 6, render: function(data, type, full, meta) { var status = { 1: {'title': 'Pending', 'class': 'kt-badge--brand'}, 2: {'title': 'Delivered', 'class': ' kt-badge--danger'}, 3: {'title': 'Canceled', 'class': ' kt-badge--primary'}, 4: {'title': 'Success', 'class': ' kt-badge--success'}, 5: {'title': 'Info', 'class': ' kt-badge--info'}, 6: {'title': 'Danger', 'class': ' kt-badge--danger'}, 7: {'title': 'Warning', 'class': ' kt-badge--warning'}, }; if (typeof status[data] === 'undefined') { return data; } return '<span class="kt-badge ' + status[data].class + ' kt-badge--inline kt-badge--pill">' + status[data].title + '</span>'; }, }, { targets: 7, render: function(data, type, full, meta) { var status = { 1: {'title': 'Online', 'state': 'danger'}, 2: {'title': 'Retail', 'state': 'primary'}, 3: {'title': 'Direct', 'state': 'success'}, }; if (typeof status[data] === 'undefined') { return data; } return '<span class="kt-badge kt-badge--' + status[data].state + ' kt-badge--dot"></span> ' + '<span class="kt-font-bold kt-font-' + status[data].state + '">' + status[data].title + '</span>'; }, }, ], }); $('#export_print').on('click', function(e) { e.preventDefault(); table.button(0).trigger(); }); $('#export_copy').on('click', function(e) { e.preventDefault(); table.button(1).trigger(); }); $('#export_excel').on('click', function(e) { e.preventDefault(); table.button(2).trigger(); }); $('#export_csv').on('click', function(e) { e.preventDefault(); table.button(3).trigger(); }); $('#export_pdf').on('click', function(e) { e.preventDefault(); table.button(4).trigger(); }); }; return { //main function to initiate the module init: function() { initTable1(); initTable2(); }, }; }(); jQuery(document).ready(function() { KTDatatablesExtensionButtons.init(); });