Sha256: b2ab5cde1455e3468dd6d35793a6847e8be21cf5cb5218c6886186e5c1b4ea07
Contents?: true
Size: 1.07 KB
Versions: 28
Compression:
Stored size: 1.07 KB
Contents
// DATA_TEMPLATE: empty_table oTest.fnStart( "bInfo" ); $(document).ready( function () { /* Check the default */ $('#example').dataTable( { "sAjaxSource": "../../../examples/ajax/sources/arrays.txt", "bDeferRender": true } ); 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/ajax/sources/arrays.txt", "bDeferRender": true, "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/ajax/sources/arrays.txt", "bDeferRender": true, "bInfo": true } ); }, function () { return document.getElementById('example_info') != null; } ); oTest.fnComplete(); } );
Version data entries
28 entries across 28 versions & 1 rubygems