File: /home/barbeatleanalyti/www/beatleanalytics.com/assets/admin/js/demo/table-manage-combine.demo.js
/*
Template Name: Color Admin - Responsive Admin Dashboard Template build with Twitter Bootstrap 4
Version: 4.4.0
Author: Sean Ngu
Website: http://www.seantheme.com/color-admin/admin/
*/
var handleDataTableCombinationSetting = function() {
"use strict";
if ($('#data-table-combine').length !== 0) {
var options = {
dom: '<"dataTables_wrapper dt-bootstrap"<"row"<"col-xl-7 d-block d-sm-flex d-xl-block justify-content-center"<"d-block d-lg-inline-flex mr-0 mr-sm-3"l><"d-block d-lg-inline-flex"B>><"col-xl-5 d-flex d-xl-block justify-content-center"fr>>t<"row"<"col-sm-5"i><"col-sm-7"p>>>',
buttons: [
{ extend: 'copy', className: 'btn-sm' },
{ extend: 'csv', className: 'btn-sm' },
{ extend: 'excel', className: 'btn-sm' },
{ extend: 'pdf', className: 'btn-sm' },
{ extend: 'print', className: 'btn-sm' }
],
responsive: true,
autoFill: true,
colReorder: true,
keys: true,
rowReorder: true,
select: true
};
if ($(window).width() <= 767) {
options.rowReorder = false;
options.colReorder = false;
options.autoFill = false;
}
$('#data-table-combine').DataTable(options);
}
};
var TableManageCombine = function () {
"use strict";
return {
//main function
init: function () {
handleDataTableCombinationSetting();
}
};
}();
$(document).ready(function() {
TableManageCombine.init();
});