1234567891011121314151617181920212223242526272829303132333435363738394041 |
- var minDate, maxDate;
-
- // Custom filtering function which will search data in column four between two values
- $.fn.dataTable.ext.search.push(
- function( settings, data, dataIndex ) {
- var min = minDate.val();
- var max = maxDate.val();
- var date = new Date( data[4] );
-
- if (
- ( min === null && max === null ) ||
- ( min === null && date <= max ) ||
- ( min <= date && max === null ) ||
- ( min <= date && date <= max )
- ) {
- return true;
- }
- return false;
- }
- );
-
- // Create date inputs
- minDate = new DateTime($('#min'), {
- format: 'MMMM Do YYYY'
- });
- maxDate = new DateTime($('#max'), {
- format: 'MMMM Do YYYY'
- });
- // DataTables initialisation
- var table = $('#datetime-table').DataTable();
- // Refilter the table
- $('#min, #max').on('change', function () {
- table.draw();
- });
- //______Select2
- $('.select2').select2({
- minimumResultsForSearch: Infinity
- });
|