MINI Sh3ll
/* ------------------------------------------------------------------------------
*
* # Scroller extension for Datatables
*
* Demo JS code for datatable_extension_scroller.html page
*
* ---------------------------------------------------------------------------- */
// Setup module
// ------------------------------
var DatatableScroller = function() {
//
// Setup module components
//
// Basic Datatable examples
var _componentDatatableScroller = function() {
if (!$().DataTable) {
console.warn('Warning - datatables.min.js is not loaded.');
return;
}
// Datatable defaults
$.extend( $.fn.dataTable.defaults, {
columnDefs: [
{
width: 100,
targets: [ 0 ]
},
{
width: "23%",
targets: [ 1, 2, 3, 4 ]
}
],
dom: '<"datatable-header info-right"fi><"datatable-scroll"tS>',
ajax: '../../../../global_assets/demo_data/tables/datatable_2500.json',
deferRender: true,
scrollY: 419,
scrollCollapse: true,
language: {
search: '<span>Filter:</span> _INPUT_',
searchPlaceholder: 'Type to filter...',
lengthMenu: '<span>Show:</span> _MENU_',
paginate: { 'first': 'First', 'last': 'Last', 'next': $('html').attr('dir') == 'rtl' ? '←' : '→', 'previous': $('html').attr('dir') == 'rtl' ? '→' : '←' }
}
});
// Table setup
// ------------------------------
// Basic scroller demo
$('.datatable-scroller').DataTable();
// Scroller with Buttons extension
$('.datatable-scroller-buttons').DataTable({
dom: '<"datatable-header dt-buttons-right"fB><"datatable-scroll"tS><"datatable-footer"i>',
buttons: {
dom: {
button: {
className: 'btn btn-light'
}
},
buttons: [
{extend: 'copy'},
{extend: 'csv'},
{extend: 'excel'},
{extend: 'pdf'},
{extend: 'print'}
]
}
});
// Saving state in scroller
$('.datatable-scroller-state').DataTable({
stateSave: true
});
// Using Scroller API
$('.datatable-scroller-api').DataTable({
stateSave: true,
initComplete: function () {
var api = this.api();
api.scroller().scrollToRow(1000);
}
});
};
// Select2 for length menu styling
var _componentSelect2 = function() {
if (!$().select2) {
console.warn('Warning - select2.min.js is not loaded.');
return;
}
// Initialize
$('.dataTables_length select').select2({
minimumResultsForSearch: Infinity,
dropdownAutoWidth: true,
width: 'auto'
});
};
//
// Return objects assigned to module
//
return {
init: function() {
_componentDatatableScroller();
_componentSelect2();
}
}
}();
// Initialize module
// ------------------------------
document.addEventListener('DOMContentLoaded', function() {
DatatableScroller.init();
});
OHA YOOOO