What do i need to do to have some columns with no sorting
What do i need to do to have some columns with no sorting
naijacoder
Posts: 6Questions: 0Answers: 0
Hi All,
Just wandering if there is an option that i can use to have some columns without sorting.
I'm asking because i want to use an image on in the rows and don't want the column header to sort
Thanks
Just wandering if there is an option that i can use to have some columns without sorting.
I'm asking because i want to use an image on in the rows and don't want the column header to sort
Thanks
This discussion has been closed.
Replies
[code]
var oTable = $('#table_id').dataTable( {
"aoColumns": [
/* Project */ null,
/* Customer / Model */ null,
/* Assigned To */ null,
/* Action Item */ null,
/* Status */ null,
/* Due Date */ null,
/* Age */ null,
/* Comment */ { "bSortable": false },
/* Delete */ { "bSortable": false }
]
} );[/code]