2010-08-17 09:42:13 +02:00
|
|
|
// DATA_TEMPLATE: empty_table
|
|
|
|
oTest.fnStart( "aoColumns.fnRender" );
|
|
|
|
|
|
|
|
$(document).ready( function () {
|
|
|
|
/* Check the default */
|
|
|
|
var mTmp = 0;
|
|
|
|
var oTable = $('#example').dataTable( {
|
2011-04-19 20:35:33 +02:00
|
|
|
"sAjaxSource": "../../../examples/ajax/sources/arrays.txt",
|
2010-08-17 09:42:13 +02:00
|
|
|
"aoColumns": [
|
|
|
|
null,
|
|
|
|
{ "fnRender": function (a) {
|
|
|
|
mTmp++;
|
|
|
|
return a.aData[a.iDataColumn];
|
|
|
|
} },
|
|
|
|
null,
|
|
|
|
null,
|
|
|
|
null
|
|
|
|
]
|
|
|
|
} );
|
|
|
|
var oSettings = oTable.fnSettings();
|
|
|
|
|
|
|
|
oTest.fnWaitTest(
|
2011-04-22 20:51:06 +02:00
|
|
|
"Single column - fnRender is called twice for each row",
|
2010-08-17 09:42:13 +02:00
|
|
|
null,
|
2011-05-02 23:32:54 +02:00
|
|
|
function () { return mTmp == 57; }
|
2010-08-17 09:42:13 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
oTest.fnWaitTest(
|
2011-12-27 14:54:22 +01:00
|
|
|
"Confirm that fnRender passes two arguments with four parameters",
|
2010-08-17 09:42:13 +02:00
|
|
|
function () {
|
|
|
|
mTmp = true;
|
|
|
|
oSession.fnRestore();
|
|
|
|
oTable = $('#example').dataTable( {
|
2011-04-19 20:35:33 +02:00
|
|
|
"sAjaxSource": "../../../examples/ajax/sources/arrays.txt",
|
2010-08-17 09:42:13 +02:00
|
|
|
"aoColumns": [
|
|
|
|
null,
|
|
|
|
{ "fnRender": function (a) {
|
2011-12-27 14:54:22 +01:00
|
|
|
if ( arguments.length != 2 || typeof a.iDataRow=='undefined' ||
|
|
|
|
typeof a.iDataColumn=='undefined' || typeof a.aData=='undefined' ||
|
|
|
|
typeof a.mDataProp=='undefined' )
|
2010-08-17 09:42:13 +02:00
|
|
|
{
|
|
|
|
mTmp = false;
|
|
|
|
}
|
|
|
|
return a.aData[a.iDataColumn];
|
|
|
|
} },
|
|
|
|
null,
|
|
|
|
null,
|
|
|
|
null
|
|
|
|
]
|
|
|
|
} );
|
|
|
|
},
|
|
|
|
function () { return mTmp; }
|
|
|
|
);
|
|
|
|
|
|
|
|
oTest.fnWaitTest(
|
|
|
|
"fnRender iDataColumn is the column",
|
|
|
|
function () {
|
|
|
|
mTmp = true;
|
|
|
|
oSession.fnRestore();
|
|
|
|
oTable = $('#example').dataTable( {
|
2011-04-19 20:35:33 +02:00
|
|
|
"sAjaxSource": "../../../examples/ajax/sources/arrays.txt",
|
2010-08-17 09:42:13 +02:00
|
|
|
"aoColumns": [
|
|
|
|
null,
|
|
|
|
{ "fnRender": function (a) {
|
|
|
|
if ( a.iDataColumn != 1 )
|
|
|
|
{
|
|
|
|
mTmp = false;
|
|
|
|
}
|
|
|
|
return a.aData[a.iDataColumn];
|
|
|
|
} },
|
|
|
|
null,
|
|
|
|
null,
|
|
|
|
null
|
|
|
|
]
|
|
|
|
} );
|
|
|
|
},
|
|
|
|
function () { return mTmp; }
|
|
|
|
);
|
|
|
|
|
|
|
|
oTest.fnWaitTest(
|
|
|
|
"fnRender aData is data array of correct size",
|
|
|
|
function () {
|
|
|
|
mTmp = true;
|
|
|
|
oSession.fnRestore();
|
|
|
|
oTable = $('#example').dataTable( {
|
2011-04-19 20:35:33 +02:00
|
|
|
"sAjaxSource": "../../../examples/ajax/sources/arrays.txt",
|
2010-08-17 09:42:13 +02:00
|
|
|
"aoColumns": [
|
|
|
|
null,
|
|
|
|
{ "fnRender": function (a) {
|
|
|
|
if ( a.aData.length != 5 )
|
|
|
|
{
|
|
|
|
mTmp = false;
|
|
|
|
}
|
|
|
|
return a.aData[a.iDataColumn];
|
|
|
|
} },
|
|
|
|
null,
|
|
|
|
null,
|
|
|
|
null
|
|
|
|
]
|
|
|
|
} );
|
|
|
|
},
|
|
|
|
function () { return mTmp; }
|
|
|
|
);
|
|
|
|
|
|
|
|
oTest.fnWaitTest(
|
|
|
|
"Passed back data is put into the DOM",
|
|
|
|
function () {
|
|
|
|
oSession.fnRestore();
|
|
|
|
oTable = $('#example').dataTable( {
|
2011-04-19 20:35:33 +02:00
|
|
|
"sAjaxSource": "../../../examples/ajax/sources/arrays.txt",
|
2010-08-17 09:42:13 +02:00
|
|
|
"aoColumns": [
|
|
|
|
null,
|
|
|
|
{ "fnRender": function (a) {
|
|
|
|
return 'unittest';
|
|
|
|
} },
|
|
|
|
null,
|
|
|
|
null,
|
|
|
|
null
|
|
|
|
]
|
|
|
|
} );
|
|
|
|
},
|
|
|
|
function () { return $('#example tbody tr:eq(0) td:eq(1)').html() == 'unittest'; }
|
|
|
|
);
|
|
|
|
|
|
|
|
oTest.fnWaitTest(
|
|
|
|
"Passed back data is put into the DOM",
|
|
|
|
function () {
|
|
|
|
oSession.fnRestore();
|
|
|
|
oTable = $('#example').dataTable( {
|
2011-04-19 20:35:33 +02:00
|
|
|
"sAjaxSource": "../../../examples/ajax/sources/arrays.txt",
|
2010-08-17 09:42:13 +02:00
|
|
|
"aoColumns": [
|
|
|
|
null,
|
|
|
|
null,
|
|
|
|
{ "fnRender": function (a) {
|
|
|
|
return 'unittest1';
|
|
|
|
} },
|
|
|
|
{ "fnRender": function (a) {
|
|
|
|
return 'unittest2';
|
|
|
|
} },
|
|
|
|
null
|
|
|
|
]
|
|
|
|
} );
|
|
|
|
},
|
|
|
|
function () {
|
|
|
|
var bReturn =
|
|
|
|
$('#example tbody tr:eq(0) td:eq(2)').html() == 'unittest1' &&
|
|
|
|
$('#example tbody tr:eq(0) td:eq(3)').html() == 'unittest2';
|
|
|
|
return bReturn; }
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
oTest.fnComplete();
|
|
|
|
} );
|