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

naijacodernaijacoder Posts: 6Questions: 0Answers: 0
edited June 2012 in DataTables 1.9
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

Replies

  • jamesaverybrownjamesaverybrown Posts: 5Questions: 0Answers: 0
    Use bSortable:false on the column/s you wish to remove sorting on.

    [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]
This discussion has been closed.