简体   繁体   中英

DataTable bSortable columnDefs issue

$(document).ready(function () {
    var dt = $('#example').DataTable({
        "processing": true,
            "serverSide": true,
            "ajax": "api.php?t=clients",
            "aoColumnDefs": [{
            'bSortable': false,
                'aTargets': [0]
        }],
            "columns": [{
            "className": "details-control",
                "data": null,
                "defaultContent": "   "
        }, {
            "data": "c_name"
        }, {
            "data": "c_number"
        }, {
            "data": "c_link"
        }]
    });
});

My code throw an error of SQL access violation when I included the following with

"aoColumnDefs": [ 
    { 'bSortable': false, 'aTargets': [0] } 
]

But if i remove it, everything works fine, basically I just want disable sorting for column 0

How do I achieve it.

Thanks!!

Change "aoColumnDefs" to "columnDefs"

"columnDefs": [{ 
     'bSortable': false, 'aTargets': [0]  
 }]

make sure you include these script files:

http://code.jquery.com/jquery-1.11.3.min.js https://cdn.datatables.net/1.10.9/js/jquery.dataTables.min.js

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM