32 lines
970 B
JavaScript
32 lines
970 B
JavaScript
(function($) {
|
|
'use strict';
|
|
$(function() {
|
|
$('#order-listing').DataTable({
|
|
"aLengthMenu": [
|
|
[5, 10, 15, -1],
|
|
[5, 10, 15, "All"]
|
|
],
|
|
"iDisplayLength": 10,
|
|
"language": {
|
|
search: ""
|
|
},
|
|
dom: 'Bfrtip',
|
|
buttons: [
|
|
'copyHtml5',
|
|
'excelHtml5',
|
|
'csvHtml5',
|
|
'pdfHtml5'
|
|
]
|
|
});
|
|
$('#order-listing').each(function() {
|
|
var datatable = $(this);
|
|
// SEARCH - Add the placeholder for Search and Turn this into in-line form control
|
|
var search_input = datatable.closest('.dataTables_wrapper').find('div[id$=_filter] input');
|
|
search_input.attr('placeholder', 'Search');
|
|
search_input.removeClass('form-control-sm');
|
|
// LENGTH - Inline-Form control
|
|
var length_sel = datatable.closest('.dataTables_wrapper').find('div[id$=_length] select');
|
|
length_sel.removeClass('form-control-sm');
|
|
});
|
|
});
|
|
})(jQuery); |