mirror of
https://github.com/DataTables/DataTables.git
synced 2024-11-30 12:24:10 +01:00
44 lines
1.0 KiB
JavaScript
44 lines
1.0 KiB
JavaScript
// DATA_TEMPLATE: empty_table
|
|
oTest.fnStart( "bInfo" );
|
|
|
|
$(document).ready( function () {
|
|
/* Check the default */
|
|
$('#example').dataTable( {
|
|
"sAjaxSource": "../../../examples/examples_support/json_source.txt"
|
|
} );
|
|
|
|
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( {
|
|
"sAjaxSource": "../../../examples/examples_support/json_source.txt",
|
|
"bInfo": false
|
|
} );
|
|
},
|
|
function () { return document.getElementById('example_info') == null; }
|
|
);
|
|
|
|
/* Enable makes no difference */
|
|
oTest.fnWaitTest(
|
|
"Info enabled override",
|
|
function () {
|
|
oSession.fnRestore();
|
|
$('#example').dataTable( {
|
|
"sAjaxSource": "../../../examples/examples_support/json_source.txt",
|
|
"bInfo": true
|
|
} );
|
|
},
|
|
function () { return document.getElementById('example_info') != null; }
|
|
);
|
|
|
|
|
|
oTest.fnComplete();
|
|
} ); |