"use strict"; var KTDatatablesAdvancedColumnVisibility = function() { var init = function() { var table = $('#kt_datatable'); // begin first table table.DataTable({ responsive: true, columnDefs: [ { // hide columns by index number targets: [0, 3], visible: false, }, { 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': 'label-light-brand'}, 2: {'title': 'Delivered', 'class': ' label-light-metal'}, 3: {'title': 'Canceled', 'class': ' label-light-primary'}, 4: {'title': 'Success', 'class': ' label-light-success'}, 5: {'title': 'Info', 'class': ' label-light-info'}, 6: {'title': 'Danger', 'class': ' label-light-danger'}, 7: {'title': 'Warning', 'class': ' label-light-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': 'accent'}, }; if (typeof status[data] === 'undefined') { return data; } return '' + '' + status[data].title + ''; }, }, ], }); }; return { //main function to initiate the module init: function() { init(); } }; }(); jQuery(document).ready(function() { KTDatatablesAdvancedColumnVisibility.init(); });