Sha256: 26c16f7bfe658de88198a252f0c71dd944914061896fe0a14dfe581b23c18ef6
Contents?: true
Size: 1.12 KB
Versions: 28
Compression:
Stored size: 1.12 KB
Contents
// DATA_TEMPLATE: empty_table oTest.fnStart( "bInfo" ); $(document).ready( function () { /* Check the default */ $('#example').dataTable( { "bServerSide": true, "sAjaxSource": "../../../examples/server_side/scripts/server_processing.php" } ); 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( { "bServerSide": true, "sAjaxSource": "../../../examples/server_side/scripts/server_processing.php", "bInfo": false } ); }, function () { return document.getElementById('example_info') == null; } ); /* Enable makes no difference */ oTest.fnWaitTest( "Info enabled override", function () { oSession.fnRestore(); $('#example').dataTable( { "bServerSide": true, "sAjaxSource": "../../../examples/server_side/scripts/server_processing.php", "bInfo": true } ); }, function () { return document.getElementById('example_info') != null; } ); oTest.fnComplete(); } );
Version data entries
28 entries across 28 versions & 1 rubygems