Sha256: 0e114f6a7ee9e4be42872dcffad8eab476c0c20c0ddf546573fdea9b25bd929c
Contents?: true
Size: 693 Bytes
Versions: 28
Compression:
Stored size: 693 Bytes
Contents
// DATA_TEMPLATE: empty_table oTest.fnStart( "bServerSide" ); /* Not interested in server-side processing here other than to check that it is off */ $(document).ready( function () { /* Check the default */ var oTable = $('#example').dataTable( { "sAjaxSource": "../../../examples/ajax/sources/objects.txt", "aoColumns": [ { "mDataProp": "engine" }, { "mDataProp": "browser" }, { "mDataProp": "platform" }, { "mDataProp": "version" }, { "mDataProp": "grade" } ] } ); var oSettings = oTable.fnSettings(); oTest.fnWaitTest( "Server side is off by default", null, function () { return oSettings.oFeatures.bServerSide == false; } ); oTest.fnComplete(); } );
Version data entries
28 entries across 28 versions & 1 rubygems