Problem in Group By

Problem in Group By

antoniocibantoniocib Posts: 277Questions: 62Answers: 1

This is the pic of the problem:

The code in Js is:

var table4 = $('#dl1').DataTable( {
    dom: 'Bfrtip',
    ajax: {
            url: 'php/table.dl1.php',
            type: 'POST'
    },
    order:[1],
rowGroup:{
                    dataSrc: function (data) {
                    return data.dlinea;
                    }
        },

hello all, I used the rowGroup function to group all the data in the table through the column "Autista Linea" but I didn't understand why it duplicates the filters.

Answers

This discussion has been closed.