≡
×
Plus
Manual
Examples
Reference
Download
Blog
Community
Support
Disable sorting on the last column
Disable sorting on the last column
jgauffin
Posts: 5
Questions: 0
Answers: 0
March 2010
edited March 2010
in
General
I'm having some icons in the last column (for editing and removing items).
How can I in a generic way always disable sorting on the last column?
Replies
dmorrison
Posts: 3
Questions: 0
Answers: 0
January 2011
edited January 2011
You should be able to use the aoColumnDefs option to do this.
Here's an example that disables sorting on columns with their es marked with the "noSort" class.
[code]
aoColumnDefs: [
{ bSortable: false, aTargets: ['noSort'] } // Disable sorting on columns marked as so
]
[/code]
This discussion has been closed.
Replies
Here's an example that disables sorting on columns with their es marked with the "noSort" class.
[code]
aoColumnDefs: [
{ bSortable: false, aTargets: ['noSort'] } // Disable sorting on columns marked as so
]
[/code]