first commit
This commit is contained in:
@@ -0,0 +1,139 @@
|
||||
/* ------------------------------------------------------------------------------
|
||||
*
|
||||
* # Select extension for Datatables
|
||||
*
|
||||
* Demo JS code for datatable_extension_select.html page
|
||||
*
|
||||
* ---------------------------------------------------------------------------- */
|
||||
|
||||
|
||||
// Setup module
|
||||
// ------------------------------
|
||||
|
||||
var DatatableSelect = function() {
|
||||
|
||||
|
||||
//
|
||||
// Setup module components
|
||||
//
|
||||
|
||||
// Basic Datatable examples
|
||||
var _componentDatatableSelect = function() {
|
||||
if (!$().DataTable) {
|
||||
console.warn('Warning - datatables.min.js is not loaded.');
|
||||
return;
|
||||
}
|
||||
|
||||
// Setting datatable defaults
|
||||
$.extend( $.fn.dataTable.defaults, {
|
||||
autoWidth: false,
|
||||
columnDefs: [{
|
||||
orderable: false,
|
||||
width: 100,
|
||||
targets: [ 5 ]
|
||||
}],
|
||||
dom: '<"datatable-header"fl><"datatable-scroll-wrap"t><"datatable-footer"ip>',
|
||||
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' ? '→' : '←' }
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
// Basic initialization
|
||||
$('.datatable-select-basic').DataTable({
|
||||
select: true
|
||||
});
|
||||
|
||||
|
||||
// Single item selection
|
||||
$('.datatable-select-single').DataTable({
|
||||
select: {
|
||||
style: 'single'
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
// Multiple items selection
|
||||
$('.datatable-select-multiple').DataTable({
|
||||
select: {
|
||||
style: 'multi'
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
// Checkbox selection
|
||||
$('.datatable-select-checkbox').DataTable({
|
||||
columnDefs: [
|
||||
{
|
||||
orderable: false,
|
||||
className: 'select-checkbox',
|
||||
targets: 0
|
||||
},
|
||||
{
|
||||
orderable: false,
|
||||
width: 100,
|
||||
targets: 6
|
||||
}
|
||||
],
|
||||
select: {
|
||||
style: 'os',
|
||||
selector: 'td:first-child'
|
||||
},
|
||||
order: [[1, 'asc']]
|
||||
});
|
||||
|
||||
|
||||
// Buttons
|
||||
$('.datatable-select-buttons').DataTable({
|
||||
dom: '<"dt-buttons-full"B><"datatable-header"fl><"datatable-scroll-wrap"t><"datatable-footer"ip>',
|
||||
buttons: [
|
||||
{extend: 'selected', className: 'btn btn-light'},
|
||||
{extend: 'selectedSingle', className: 'btn btn-light'},
|
||||
{extend: 'selectAll', className: 'btn bg-blue'},
|
||||
{extend: 'selectNone', className: 'btn bg-blue'},
|
||||
{extend: 'selectRows', className: 'btn bg-teal-400'},
|
||||
{extend: 'selectColumns', className: 'btn bg-teal-400'},
|
||||
{extend: 'selectCells', className: 'btn bg-teal-400'}
|
||||
],
|
||||
select: true
|
||||
});
|
||||
};
|
||||
|
||||
// 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() {
|
||||
_componentDatatableSelect();
|
||||
_componentSelect2();
|
||||
}
|
||||
}
|
||||
}();
|
||||
|
||||
|
||||
// Initialize module
|
||||
// ------------------------------
|
||||
|
||||
document.addEventListener('DOMContentLoaded', function() {
|
||||
DatatableSelect.init();
|
||||
});
|
||||
Reference in New Issue
Block a user