Hidden Column with responsive dataTable
Hidden Column with responsive dataTable
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
Responsive works here with your above code snippet:
http://live.datatables.net/pabesoxu/1/edit
Please provide a link to your page or a test case replicating the issue so we can help troubleshoot.
https://datatables.net/manual/tech-notes/10#How-to-provide-a-test-case
Kevin