Hidden Column with responsive dataTable

Hidden Column with responsive dataTable

otavio_laskosk_pcotavio_laskosk_pc Posts: 21Questions: 6Answers: 0

I'm hiddening the columns with the following codes:

$(document).ready(function() {
$('#example').DataTable( {
"columnDefs": [
{
"targets": [ 2 ],
"visible": false,
"searchable": false
},
{
"targets": [ 3 ],
"visible": false
}
]
} );
} );

but after this, the responsive layout of dataTable doens't work.

I've already put the code "responsive: true" but also didn't work.

Replies

This discussion has been closed.