Disable sorting on the last column

Disable sorting on the last column

jgauffinjgauffin Posts: 5Questions: 0Answers: 0
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

  • dmorrisondmorrison Posts: 3Questions: 0Answers: 0
    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.