mirror of
https://github.com/DataTables/DataTables.git
synced 2024-12-01 13:24:10 +01:00
29 lines
711 B
JavaScript
29 lines
711 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( {
|
|
"sAjaxSource": "../../../examples/ajax/sources/objects.txt",
|
|
"aoColumns": [
|
|
{ "mDataSource": "engine" },
|
|
{ "mDataSource": "browser" },
|
|
{ "mDataSource": "platform" },
|
|
{ "mDataSource": "version" },
|
|
{ "mDataSource": "grade" }
|
|
]
|
|
} );
|
|
var oSettings = oTable.fnSettings();
|
|
|
|
oTest.fnWaitTest(
|
|
"Server side is off by default",
|
|
null,
|
|
function () {
|
|
return oSettings.sAjaxSource == "../../../examples/ajax/sources/objects.txt";
|
|
}
|
|
);
|
|
|
|
oTest.fnComplete();
|
|
} ); |