disable sorting to first column

disable sorting to first column

sachingaikwadsachingaikwad Posts: 1Questions: 0Answers: 0
edited January 2013 in General
Anybody know how to disable sorting to first column in datatable

Replies

  • equisdeequisde Posts: 34Questions: 0Answers: 0
    You should use aoColumnsDefs property at your datatable initialisation:

    "aoColumnDefs": [
    { "bSortable": false, "aTargets": [ 0 ] },
    ],
This discussion has been closed.