mirror of
https://github.com/DataTables/DataTables.git
synced 2024-12-02 14:24:11 +01:00
206 lines
4.7 KiB
JavaScript
206 lines
4.7 KiB
JavaScript
|
// DATA_TEMPLATE: empty_table
|
||
|
oTest.fnStart( "aoColumns.fnRender" );
|
||
|
|
||
|
$(document).ready( function () {
|
||
|
/* Check the default */
|
||
|
var mTmp = 0;
|
||
|
var oTable = $('#example').dataTable( {
|
||
|
"sAjaxSource": "../../../examples/ajax/sources/objects.txt",
|
||
|
"aoColumns": [
|
||
|
{ "mDataSource": "engine" },
|
||
|
{
|
||
|
"mDataSource": "browser",
|
||
|
"fnRender": function (a) {
|
||
|
mTmp++;
|
||
|
return a.aData['browser'];
|
||
|
}
|
||
|
},
|
||
|
{ "mDataSource": "platform" },
|
||
|
{ "mDataSource": "version" },
|
||
|
{ "mDataSource": "grade" }
|
||
|
]
|
||
|
} );
|
||
|
var oSettings = oTable.fnSettings();
|
||
|
|
||
|
oTest.fnWaitTest(
|
||
|
"Single column - fnRender is called once for each row",
|
||
|
null,
|
||
|
function () { return mTmp == 57; }
|
||
|
);
|
||
|
|
||
|
oTest.fnWaitTest(
|
||
|
"Confirm that fnRender passes one argument (an object) with three parameters",
|
||
|
function () {
|
||
|
mTmp = true;
|
||
|
oSession.fnRestore();
|
||
|
oTable = $('#example').dataTable( {
|
||
|
"sAjaxSource": "../../../examples/ajax/sources/objects.txt",
|
||
|
"aoColumns": [
|
||
|
{ "mDataSource": "engine" },
|
||
|
{
|
||
|
"fnRender": function (a) {
|
||
|
if ( arguments.length != 1 || typeof a.iDataRow=='undefined' ||
|
||
|
typeof a.iDataColumn=='undefined' || typeof a.aData=='undefined' )
|
||
|
{
|
||
|
mTmp = false;
|
||
|
}
|
||
|
return a.aData['browser'];
|
||
|
},
|
||
|
"mDataSource": "browser"
|
||
|
},
|
||
|
{ "mDataSource": "platform" },
|
||
|
{ "mDataSource": "version" },
|
||
|
{ "mDataSource": "grade" }
|
||
|
]
|
||
|
} );
|
||
|
},
|
||
|
function () { return mTmp; }
|
||
|
);
|
||
|
|
||
|
oTest.fnWaitTest(
|
||
|
"fnRender iDataColumn is row number",
|
||
|
function () {
|
||
|
var iCount = 0;
|
||
|
mTmp = true;
|
||
|
oSession.fnRestore();
|
||
|
oTable = $('#example').dataTable( {
|
||
|
"sAjaxSource": "../../../examples/ajax/sources/objects.txt",
|
||
|
"aoColumns": [
|
||
|
{ "mDataSource": "engine" },
|
||
|
{
|
||
|
"mDataSource": "browser",
|
||
|
"fnRender": function (a) {
|
||
|
if ( iCount != a.iDataRow )
|
||
|
{
|
||
|
mTmp = false;
|
||
|
}
|
||
|
iCount++;
|
||
|
return a.aData['browser'];
|
||
|
}
|
||
|
},
|
||
|
{ "mDataSource": "platform" },
|
||
|
{ "mDataSource": "version" },
|
||
|
{ "mDataSource": "grade" }
|
||
|
]
|
||
|
} );
|
||
|
},
|
||
|
function () { return mTmp; }
|
||
|
);
|
||
|
|
||
|
oTest.fnWaitTest(
|
||
|
"fnRender iDataColumn is the column",
|
||
|
function () {
|
||
|
mTmp = true;
|
||
|
oSession.fnRestore();
|
||
|
oTable = $('#example').dataTable( {
|
||
|
"sAjaxSource": "../../../examples/ajax/sources/objects.txt",
|
||
|
"aoColumns": [
|
||
|
{ "mDataSource": "engine" },
|
||
|
{
|
||
|
"mDataSource": "browser",
|
||
|
"fnRender": function (a) {
|
||
|
if ( a.iDataColumn != 1 )
|
||
|
{
|
||
|
mTmp = false;
|
||
|
}
|
||
|
return a.aData['browser'];
|
||
|
}
|
||
|
},
|
||
|
{ "mDataSource": "platform" },
|
||
|
{ "mDataSource": "version" },
|
||
|
{ "mDataSource": "grade" }
|
||
|
]
|
||
|
} );
|
||
|
},
|
||
|
function () { return mTmp; }
|
||
|
);
|
||
|
|
||
|
oTest.fnWaitTest(
|
||
|
"fnRender aData is data array of correct size",
|
||
|
function () {
|
||
|
mTmp = true;
|
||
|
oSession.fnRestore();
|
||
|
oTable = $('#example').dataTable( {
|
||
|
"sAjaxSource": "../../../examples/ajax/sources/objects.txt",
|
||
|
"aoColumns": [
|
||
|
{ "mDataSource": "engine" },
|
||
|
{
|
||
|
"mDataSource": "browser",
|
||
|
"fnRender": function (a) {
|
||
|
if ( a.aData.length != 5 )
|
||
|
{
|
||
|
mTmp = false;
|
||
|
}
|
||
|
return a.aData['browser'];
|
||
|
}
|
||
|
},
|
||
|
{ "mDataSource": "platform" },
|
||
|
{ "mDataSource": "version" },
|
||
|
{ "mDataSource": "grade" }
|
||
|
]
|
||
|
} );
|
||
|
},
|
||
|
function () { return mTmp; }
|
||
|
);
|
||
|
|
||
|
oTest.fnWaitTest(
|
||
|
"Passed back data is put into the DOM",
|
||
|
function () {
|
||
|
oSession.fnRestore();
|
||
|
oTable = $('#example').dataTable( {
|
||
|
"sAjaxSource": "../../../examples/ajax/sources/objects.txt",
|
||
|
"aoColumns": [
|
||
|
{ "mDataSource": "engine" },
|
||
|
{
|
||
|
"mDataSource": "browser",
|
||
|
"fnRender": function (a) {
|
||
|
return 'unittest';
|
||
|
}
|
||
|
},
|
||
|
{ "mDataSource": "platform" },
|
||
|
{ "mDataSource": "version" },
|
||
|
{ "mDataSource": "grade" }
|
||
|
]
|
||
|
} );
|
||
|
},
|
||
|
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( {
|
||
|
"sAjaxSource": "../../../examples/ajax/sources/objects.txt",
|
||
|
"aoColumns": [
|
||
|
{ "mDataSource": "engine" },
|
||
|
{ "mDataSource": "browser" },
|
||
|
{
|
||
|
"mDataSource": "platform",
|
||
|
"fnRender": function (a) {
|
||
|
return 'unittest1';
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
"mDataSource": "version",
|
||
|
"fnRender": function (a) {
|
||
|
return 'unittest2';
|
||
|
}
|
||
|
},
|
||
|
{ "mDataSource": "grade" }
|
||
|
]
|
||
|
} );
|
||
|
},
|
||
|
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();
|
||
|
} );
|