mirror of
https://github.com/DataTables/DataTables.git
synced 2024-12-02 14:24:11 +01:00
23 lines
578 B
JavaScript
23 lines
578 B
JavaScript
|
// DATA_TEMPLATE: empty_table
|
||
|
oTest.fnStart( "sAjaxSource" );
|
||
|
|
||
|
/* Sanitfy check really - all the other tests blast this */
|
||
|
|
||
|
$(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 is off by default",
|
||
|
null,
|
||
|
function () {
|
||
|
return oSettings.sAjaxSource == "../../../examples/examples_support/server_processing.php";
|
||
|
}
|
||
|
);
|
||
|
|
||
|
oTest.fnComplete();
|
||
|
} );
|