Sorting!
Sorting!
Hi Allan
I have question about disable a sorting. I mean don't use the the initializating feature. U said in previous discussion:
http://datatables.net/forums/comments.php?DiscussionID=1583
that it can be made in 1.7 release.
I'm interesting is it really was made or not?
Thank u very much!
I have question about disable a sorting. I mean don't use the the initializating feature. U said in previous discussion:
http://datatables.net/forums/comments.php?DiscussionID=1583
that it can be made in 1.7 release.
I'm interesting is it really was made or not?
Thank u very much!
This discussion has been closed.
Replies
Allan
if u can give please link on some example!
Thanks A lot!
[code]
/* Using aoColumnDefs */
$(document).ready(function() {
$('#example').dataTable( {
"aoColumns": [
{ "bSortable": false, "aTargets": [ "no_sort" ] }
] } );
} );
[/code]
Allan