mirror of
https://github.com/yogeshojha/rengine.git
synced 2026-08-30 19:59:48 +02:00
146 lines
8.7 KiB
JavaScript
146 lines
8.7 KiB
JavaScript
$(document).ready(function() {
|
|
|
|
/*
|
|
Column Filter
|
|
*/
|
|
|
|
cf = $('#column-filter').DataTable({
|
|
"dom": "<'dt--top-section'<'row'<'col-12 col-sm-6 d-flex justify-content-sm-start justify-content-center'l><'col-12 col-sm-6 d-flex justify-content-sm-end justify-content-center mt-sm-0 mt-3'f>>>" +
|
|
"<'table-responsive'tr>" +
|
|
"<'dt--bottom-section d-sm-flex justify-content-sm-between text-center'<'dt--pages-count mb-sm-0 mb-3'i><'dt--pagination'p>>",
|
|
headerCallback:function(e, a, t, n, s) {
|
|
e.getElementsByTagName("th")[0].innerHTML='<label class="new-control new-checkbox checkbox-primary m-auto">\n<input type="checkbox" class="new-control-input chk-parent select-customers-info" id="customer-all-info">\n<span class="new-control-indicator"></span><span style="visibility:hidden">c</span>\n</label>'
|
|
},
|
|
columnDefs:[ {
|
|
targets:0, width:"30px", className:"", orderable:!1, render:function(e, a, t, n) {
|
|
return'<label class="new-control new-checkbox checkbox-primary" style="height: 21px; margin-bottom: 0; margin-right: 0">\n<input type="checkbox" class="new-control-input child-chk select-customers-info" id="customer-all-info">\n <span class="new-control-indicator"></span>\n</label>'
|
|
}
|
|
}],
|
|
"oLanguage": {
|
|
"oPaginate": { "sPrevious": '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-arrow-left"><line x1="19" y1="12" x2="5" y2="12"></line><polyline points="12 19 5 12 12 5"></polyline></svg>', "sNext": '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-arrow-right"><line x1="5" y1="12" x2="19" y2="12"></line><polyline points="12 5 19 12 12 19"></polyline></svg>' },
|
|
"sInfo": "Showing page _PAGE_ of _PAGES_",
|
|
"sSearch": '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-search"><circle cx="11" cy="11" r="8"></circle><line x1="21" y1="21" x2="16.65" y2="16.65"></line></svg>',
|
|
"sSearchPlaceholder": "Search...",
|
|
"sLengthMenu": "Results : _MENU_",
|
|
},
|
|
"stripeClasses": [],
|
|
"lengthMenu": [7, 10, 20, 50],
|
|
"pageLength": 7
|
|
});
|
|
|
|
multiCheck(cf);
|
|
|
|
|
|
/*
|
|
Individual Column Search
|
|
*/
|
|
|
|
// Setup - add a text input to each footer cell
|
|
$('#individual-col-search tfoot th').each( function () {
|
|
var title = $(this).text();
|
|
$(this).html( '<input type="text" class="form-control" placeholder="Search '+title+'" />' );
|
|
} );
|
|
|
|
// DataTable
|
|
var table = $('#individual-col-search').DataTable({
|
|
"dom": "<'dt--top-section'<'row'<'col-12 col-sm-6 d-flex justify-content-sm-start justify-content-center'l><'col-12 col-sm-6 d-flex justify-content-sm-end justify-content-center mt-sm-0 mt-3'f>>>" +
|
|
"<'table-responsive'tr>" +
|
|
"<'dt--bottom-section d-sm-flex justify-content-sm-between text-center'<'dt--pages-count mb-sm-0 mb-3'i><'dt--pagination'p>>",
|
|
"oLanguage": {
|
|
"oPaginate": { "sPrevious": '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-arrow-left"><line x1="19" y1="12" x2="5" y2="12"></line><polyline points="12 19 5 12 12 5"></polyline></svg>', "sNext": '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-arrow-right"><line x1="5" y1="12" x2="19" y2="12"></line><polyline points="12 5 19 12 12 19"></polyline></svg>' },
|
|
"sInfo": "Showing page _PAGE_ of _PAGES_",
|
|
"sSearch": '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-search"><circle cx="11" cy="11" r="8"></circle><line x1="21" y1="21" x2="16.65" y2="16.65"></line></svg>',
|
|
"sSearchPlaceholder": "Search...",
|
|
"sLengthMenu": "Results : _MENU_",
|
|
},
|
|
"stripeClasses": [],
|
|
"lengthMenu": [7, 10, 20, 50],
|
|
"pageLength": 7
|
|
});
|
|
|
|
// Apply the search
|
|
table.columns().every( function () {
|
|
var that = this;
|
|
|
|
$( 'input', this.footer() ).on( 'keyup change', function () {
|
|
if ( that.search() !== this.value ) {
|
|
that
|
|
.search( this.value )
|
|
.draw();
|
|
}
|
|
} );
|
|
} );
|
|
|
|
|
|
|
|
/*
|
|
Show Hide column
|
|
*/
|
|
|
|
var table = $('#show-hide-col').DataTable( {
|
|
"dom": "<'dt--top-section'<'row'<'col-sm-12 col-md-6 d-flex justify-content-md-start justify-content-center'B><'col-sm-12 col-md-6 d-flex justify-content-md-end justify-content-center mt-md-0 mt-3'f>>>" +
|
|
"<'table-responsive'tr>" +
|
|
"<'dt--bottom-section d-sm-flex justify-content-sm-between text-center'<'dt--pages-count mb-sm-0 mb-3'i><'dt--pagination'p>>",
|
|
"oLanguage": {
|
|
"oPaginate": { "sPrevious": '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-arrow-left"><line x1="19" y1="12" x2="5" y2="12"></line><polyline points="12 19 5 12 12 5"></polyline></svg>', "sNext": '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-arrow-right"><line x1="5" y1="12" x2="19" y2="12"></line><polyline points="12 5 19 12 12 19"></polyline></svg>' },
|
|
"sInfo": "Showing page _PAGE_ of _PAGES_",
|
|
"sSearch": '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-search"><circle cx="11" cy="11" r="8"></circle><line x1="21" y1="21" x2="16.65" y2="16.65"></line></svg>',
|
|
"sSearchPlaceholder": "Search...",
|
|
"sLengthMenu": "Results : _MENU_",
|
|
},
|
|
buttons: [
|
|
{
|
|
text: 'Name',
|
|
className: 'btn btn-primary btn-sm toggle-vis mb-1',
|
|
action: function(e, dt, node, config ) {
|
|
var column = table.column( 0 );
|
|
column.visible( ! column.visible() );
|
|
}
|
|
},
|
|
{
|
|
text: 'Position',
|
|
className: 'btn btn-primary btn-sm toggle-vis mb-1',
|
|
action: function(e, dt, node, config ) {
|
|
var column = table.column( 1 );
|
|
column.visible( ! column.visible() );
|
|
}
|
|
},
|
|
{
|
|
text: 'Office',
|
|
className: 'btn btn-primary btn-sm toggle-vis mb-1',
|
|
action: function(e, dt, node, config ) {
|
|
var column = table.column( 2 );
|
|
column.visible( ! column.visible() );
|
|
}
|
|
},
|
|
{
|
|
text: 'Age',
|
|
className: 'btn btn-primary btn-sm toggle-vis mb-1',
|
|
action: function(e, dt, node, config ) {
|
|
var column = table.column( 3 );
|
|
column.visible( ! column.visible() );
|
|
}
|
|
},
|
|
{
|
|
text: 'Start date',
|
|
className: 'btn btn-primary btn-sm toggle-vis mb-1',
|
|
action: function(e, dt, node, config ) {
|
|
var column = table.column( 4 );
|
|
column.visible( ! column.visible() );
|
|
}
|
|
},
|
|
{
|
|
text: 'Salary',
|
|
className: 'btn btn-primary btn-sm toggle-vis mb-1',
|
|
action: function(e, dt, node, config ) {
|
|
var column = table.column( 5 );
|
|
column.visible( ! column.visible() );
|
|
}
|
|
},
|
|
],
|
|
"stripeClasses": [],
|
|
"lengthMenu": [7, 10, 20, 50],
|
|
"pageLength": 7
|
|
} );
|
|
|
|
} ); |