Uncaught TypeError: Cannot read property 'aDataSort' of undefined

use something like the following in your code to disable sorting on DataTables (adapted from a project of mine which uses latest DataTables)

$(document).ready(function() {
     $('.datatable').dataTable( {
        'bSort': false,
        'aoColumns': [ 
              { sWidth: "45%", bSearchable: false, bSortable: false }, 
              { sWidth: "45%", bSearchable: false, bSortable: false }, 
              { sWidth: "10%", bSearchable: false, bSortable: false } 
        ],
        "scrollY":        "200px",
        "scrollCollapse": true,
        "info":           true,
        "paging":         true
    } );
} );

the aoColumns array describes the width of each column and its sortable properties, adjust as needed for your own table (number of) columns.


I faced same issue and later found a typing mistake in "targets" property under columnDefs. See below example,

WRONG code below,

{
 "name": "firstName",
 "target": [1],
 "visible": false
}

Correction - missed 's' in targets :(

{
 "name": "firstName",
 "targets": [1],
 "visible": false
}

Looks like this error occurs when something causing columns not getting initialized. I checked that event 'preInit.dt' is not fired in this case.

Hope this helps someone.


I ran into this issue using KnockoutJS because the columns were not yet defined when the javascript was trying to apply the DataTable to it. My approach with knockoutJS was to move my data-bind code into a knockout template and use the afterRender event to apply the DataTable to the table.

Here is a link to the knockoutJS docs for the template afterRender event.

Here is what my data-bind looks like:

<div data-bind="template: { name: 'schedule-table', data: $data, afterRender: setupDataTable }"></div>

There was one more trick. In the setupDataTable function, the table still isn't setup completely, (I was trying to get the fixedHeaders and the widths weren't setup yet). So I called setTimeout with a 0 millisecond delay to get the code to run on the first idle cycle.

Here is my setupDataTable:

function setupDataTable() {
    setTimeout(function() {
        $("#schedule").DataTable({fixedHeader: true});
    }, 0);
}

Hope this helps somebody else looking for a knockoutJS solution and running into the same problem I ran into.