2010-08-17 09:42:13 +02:00
|
|
|
// DATA_TEMPLATE: empty_table
|
|
|
|
oTest.fnStart( "bInfo" );
|
|
|
|
|
|
|
|
$(document).ready( function () {
|
|
|
|
/* Check the default */
|
|
|
|
$('#example').dataTable( {
|
2011-04-19 20:35:33 +02:00
|
|
|
"sAjaxSource": "../../../examples/ajax/sources/arrays.txt"
|
2010-08-17 09:42:13 +02:00
|
|
|
} );
|
|
|
|
|
|
|
|
oTest.fnWaitTest(
|
|
|
|
"Info div exists by default",
|
|
|
|
null,
|
|
|
|
function () { return document.getElementById('example_info') != null; }
|
|
|
|
);
|
|
|
|
|
|
|
|
/* Check can disable */
|
|
|
|
oTest.fnWaitTest(
|
|
|
|
"Info can be disabled",
|
|
|
|
function () {
|
|
|
|
oSession.fnRestore();
|
|
|
|
$('#example').dataTable( {
|
2011-04-19 20:35:33 +02:00
|
|
|
"sAjaxSource": "../../../examples/ajax/sources/arrays.txt",
|
2010-08-17 09:42:13 +02:00
|
|
|
"bInfo": false
|
|
|
|
} );
|
|
|
|
},
|
|
|
|
function () { return document.getElementById('example_info') == null; }
|
|
|
|
);
|
|
|
|
|
|
|
|
/* Enable makes no difference */
|
|
|
|
oTest.fnWaitTest(
|
|
|
|
"Info enabled override",
|
|
|
|
function () {
|
|
|
|
oSession.fnRestore();
|
|
|
|
$('#example').dataTable( {
|
2011-04-19 20:35:33 +02:00
|
|
|
"sAjaxSource": "../../../examples/ajax/sources/arrays.txt",
|
2010-08-17 09:42:13 +02:00
|
|
|
"bInfo": true
|
|
|
|
} );
|
|
|
|
},
|
|
|
|
function () { return document.getElementById('example_info') != null; }
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
oTest.fnComplete();
|
|
|
|
} );
|