DataTables date range filter displays rows for plus one day!

DataTables date range filter displays rows for plus one day!

olvaolva Posts: 19Questions: 8Answers: 0

There's a table. We need to make a selection by date. But if you enter for example min Apr 4, 2025 and max Apr 4, 2025 data is not displayed at all - no data. To view Apr 4, 2025 it is necessary to enter min Apr 3, 2025 and max Apr 4, 2025. Where is my trick? Everything works fine in the example.

$(document).ready(function () {
                    var hearing_array = 'ajax/data_array';
                    var table = $('#table-list').DataTable({
                        "autoWidth": false,
                        "order": [[1, 'asc']],
                        'ajax': hearing_array,
                        "deferRender": true,
                        columnDefs: [{
                            targets: 1,
                            render: DataTable.render.datetime('MMM DD, YYYY')
                        }], 
                        "columns": [
                            {"data": "id", "visible": false, "searchable": false},
                            {"data": "date", "width": "5%"},
                            {"data": "earliest"},
                            {"data": "earliest_dismissal"},
                           
                            {
                                "data": null,
                                "width": "3%",
                                "targets": -1,
                                "defaultContent": " ",
                                "visible": false
                            },
                            {"data": "manual_processing_required", "visible": false}
                        ],
                    })
                    let minDate, maxDate;
                    DataTable.ext.search.push(function (settings, data, dataIndex) {
                        let min = minDate.val();
                        let max = maxDate.val();
                        let date = new Date(data[1]);
                        if (
                            (min === null && max === null) ||
                            (min === null && date <= max) ||
                            (min <= date && max === null) ||
                            (min <= date && date <= max)
                        ) {
                            return true;
                        }
                        return false;
                    });
                    minDate = new DateTime('#min', {
                        format: 'MMM DD, YYYY'
                    });
                    maxDate = new DateTime('#max', {
                        format: 'MMM DD, YYYY'
                    });
                                      document.querySelectorAll('#min, #max').forEach((el) => {
                        el.addEventListener('change', () => table.draw());
                    });
                }
            );

Please pardon me for showing screenshots.
If 03 April to 03 April - no data

If 02 April to 03 April - then the data for 03 April

Any thoughts would be appreciated.

This question has an accepted answers - jump to answer

Answers

  • kthorngrenkthorngren Posts: 21,850Questions: 26Answers: 5,050

    I built a test case to show this issue:
    https://live.datatables.net/teloyewi/1/edit

    Selecting April 4 for Min results in these values:

    min: Thu Apr 03 2025 20:00:00 GMT-0400 (Eastern Daylight Time)
    max: null
    date: Fri Apr 04 2025 00:00:00 GMT-0400 (Eastern Daylight Time)
    

    The (min <= date && max === null) part of the if statement is true so April 4 is shown.

    Choosing April 4 for Max date has these values:

    min: Thu Apr 03 2025 20:00:00 GMT-0400 (Eastern Daylight Time)
    max: Thu Apr 03 2025 20:00:00 GMT-0400 (Eastern Daylight Time)
    date: Thu Apr 03 2025 00:00:00 GMT-0400 (Eastern Daylight Time)
    

    The (min <= date && date <= max) part of the if statement is false so all rows are hidden.

    @allan will need to look at why Thu Apr 03 2025 20:00:00 is the value when April 4 is selected.

    Kevin

  • allanallan Posts: 64,237Questions: 1Answers: 10,601 Site admin
    Answer ✓

    I'd use moment.utc() to parse the value from the table in the search function:

    let date = moment.utc(data[1], 'MMM DD, YYYY').toDate();
    

    Then that can be used in the comparisons: https://live.datatables.net/teloyewi/2/edit .

    Allan

  • olvaolva Posts: 19Questions: 8Answers: 0

    I thank you! It works great! :)

Sign In or Register to comment.