"use strict"; var KTDatatablesBasicScrollable = function() { var initTable1 = function() { var table = $('#kt_table_1'); // begin first table table.DataTable({ scrollY: '50vh', scrollX: true, scrollCollapse: true, columnDefs: [ { targets: -1, title: 'Actions', orderable: false, render: function(data, type, full, meta) { return ` `; }, }, { targets: 8, 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 '' + status[data].title + ''; }, }, { targets: 9, 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 ' ' + '' + status[data].title + ''; }, }, ], }); }; var initTable2 = function() { var table = $('#kt_table_2'); // begin second table table.DataTable({ scrollY: '50vh', scrollX: true, scrollCollapse: true, createdRow: function(row, data, index) { 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'}, }; var badge = '' + status[data[18]].title + ''; row.getElementsByTagName('td')[18].innerHTML = badge; status = { 1: {'title': 'Online', 'state': 'danger'}, 2: {'title': 'Retail', 'state': 'primary'}, 3: {'title': 'Direct', 'state': 'success'}, }; badge = ' ' + '' + status[data[19]].title + ''; row.getElementsByTagName('td')[19].innerHTML = badge; }, columnDefs: [ { targets: -1, title: 'Actions', orderable: false, render: function(data, type, full, meta) { return ` `; }, }], }); }; return { //main function to initiate the module init: function() { initTable1(); initTable2(); }, }; }(); jQuery(document).ready(function() { KTDatatablesBasicScrollable.init(); });