Answers for "hide datatable cell"

3

Datatable hide columns

"columnDefs": [
            {
                "targets": [1,2],
                "visible": false,
                "searchable": false
            }
        ]
Posted by: Guest on October-07-2021
0

datatable hide no data available in table

var someTableDT = $("#some-table").on("draw.dt", function () {
    $(this).find(".dataTables_empty").parents('tbody').empty();
}).DataTable(/*init object*/);
Posted by: Guest on January-20-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language