// DATA_TEMPLATE: empty_table
oTest.fnStart( "sAjaxSource" );
/* Sanitfy check really - all the other tests blast this */
$(document).ready( function () {
/* Check the default */
var oTable = $('#example').dataTable( {
"sAjaxSource": "../../../examples/ajax/sources/arrays.txt",
"bDeferRender": true
} );
var oSettings = oTable.fnSettings();
oTest.fnWaitTest(
"Server side is off by default",
null,
function () {
return oSettings.sAjaxSource == "../../../examples/ajax/sources/arrays.txt";
}
);
oTest.fnComplete();
} );
|