Uncaught TypeError: Cannot read property 'aDataSort' of undefined

前端 未结 5 1686
独厮守ぢ
独厮守ぢ 2020-12-18 01:00

i am working on pagination and i am using DataTables plugin , on some tables it\'s work but on some tables it gives error:

Uncaught TypeError: Cannot

相关标签:
5条回答
  • 2020-12-18 01:24

    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.

    0 讨论(0)
  • 2020-12-18 01:25

    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.

    0 讨论(0)
  • 2020-12-18 01:29

    This error showed up for me, I believe because my "mData" and "sTitle" were undefined.

    0 讨论(0)
  • 2020-12-18 01:36

    I had faced a similar issue when binding data table to a .Net GridView if grid view did not have any data and no header values defined then it was throwing:

    Uncaught TypeError: Cannot read property 'aDataSort' of undefined
    

    Below was the code for the same.

    $("#GridView1").prepend($("<thead</thead>").append($("#GridView1").find("tr:first"))).dataTable();
    $("#GridView1").dataTable();
    

    I guess you are also facing the same issue, as you are also getting the table header names dynamically and if the result for it is null or empty then you are getting the mentioned error. Therefore, either you try giving column names when binding it to data table or make sure that your PHP code always returns some data for the table header.

    0 讨论(0)
  • 2020-12-18 01:38

    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.

    0 讨论(0)
提交回复
热议问题