Disable sort fonctionnalities on the thead of the datatable
Disable sort fonctionnalities on the thead of the datatable
rostopopoff
Posts: 2Questions: 0Answers: 0
I want to disable the sort option on the "thead" of my datatable.
I didn't find any solution.
If you have an idea, it would be helful
Thanks
M
I didn't find any solution.
If you have an idea, it would be helful
Thanks
M
This discussion has been closed.
Replies
For information you just have to use the bsort option
[code]
var oTable = $('#example').dataTable( {
"bSort": false,
} );
[/code]