$(function() {
$('table').on('scroll', function() {
$("table > *").width($("table").width() + $("table").scrollLeft());
});
$("tbody").mCustomScrollbar({
theme: "light-3",
scrollButtons: {
enable: false
},
mouseWheel: {
preventDefault: true
},
scrollbarPosition: 'inside',
autoExpandScrollbar: true,
theme: 'dark',
axis: "yx",
setWidth: "auto"
});
});