'aiDisplay' is null or not an object

'aiDisplay' is null or not an object

p_prnmp_prnm Posts: 5Questions: 0Answers: 0
edited April 2013 in DataTables 1.9
I'm using the following function for single column filtering:
(function($) {
$.fn.dataTableExt.oApi.fnGetColumnData = function ( oSettings, iColumn, bUnique, bFiltered, bIgnoreEmpty ) {
// check that we have a column id
if ( typeof iColumn == "undefined" ) return new Array();

// by default we only wany unique data
if ( typeof bUnique == "undefined" ) bUnique = true;

// by default we do want to only look at filtered data
if ( typeof bFiltered == "undefined" ) bFiltered = true;

// by default we do not wany to include empty values
if ( typeof bIgnoreEmpty == "undefined" ) bIgnoreEmpty = true;

// list of rows which we're going to loop through
var aiRows;

// use only filtered rows
if (bFiltered == true) aiRows = oSettings.aiDisplay;
// use all rows
else aiRows = oSettings.aiDisplayMaster; // all row numbers

// set up data array
var asResultData = new Array();

for (var i=0,c=aiRows.length; i -1) continue;

// else push the value onto the result data array
else asResultData.push(sValue);
}

return asResultData;
};}(jQuery));

Getting a js script error as "'aiDisplay' is null or not an object". how to resolve this error?

Replies

  • allanallan Posts: 63,386Questions: 1Answers: 10,449 Site admin
    Link to a test case please.
  • p_prnmp_prnm Posts: 5Questions: 0Answers: 0
    Hi allan,

    Didn't get what 'Link to a testcase' mean
  • allanallan Posts: 63,386Questions: 1Answers: 10,449 Site admin
    Link to a page showing the problem - http://datatables.net/forums/discussion/12899/post-test-cases-when-asking-for-help-please-read

    Allan
This discussion has been closed.