mirror of
https://github.com/DataTables/DataTables.git
synced 2024-11-30 12:24:10 +01:00
21 lines
520 B
JavaScript
21 lines
520 B
JavaScript
// DATA_TEMPLATE: empty_table
|
|
oTest.fnStart( "bServerSide" );
|
|
|
|
/* All the other scripts blast the ssp processing */
|
|
|
|
$(document).ready( function () {
|
|
/* Check the default */
|
|
var oTable = $('#example').dataTable( {
|
|
"bServerSide": true,
|
|
"sAjaxSource": "../../../examples/examples_support/server_processing.php"
|
|
} );
|
|
var oSettings = oTable.fnSettings();
|
|
|
|
oTest.fnWaitTest(
|
|
"Server side can be set to on",
|
|
null,
|
|
function () { return oSettings.oFeatures.bServerSide == true; }
|
|
);
|
|
|
|
oTest.fnComplete();
|
|
} ); |