mirror of
https://github.com/DataTables/DataTables.git
synced 2024-12-01 13:24:10 +01:00
79 lines
2.1 KiB
JavaScript
79 lines
2.1 KiB
JavaScript
|
// DATA_TEMPLATE: empty_table
|
||
|
oTest.fnStart( "oLanguage.sInfoEmpty" );
|
||
|
|
||
|
$(document).ready( function () {
|
||
|
/* Check the default */
|
||
|
var oTable = $('#example').dataTable( {
|
||
|
"sAjaxSource": "../../../examples/examples_support/json_source.txt"
|
||
|
} );
|
||
|
var oSettings = oTable.fnSettings();
|
||
|
|
||
|
oTest.fnWaitTest(
|
||
|
"Info empty language is 'Showing 0 to 0 of 0 entries' by default",
|
||
|
function () { oTable.fnFilter("nothinghere"); },
|
||
|
function () { return oSettings.oLanguage.sInfoEmpty == "Showing 0 to 0 of 0 entries"; }
|
||
|
);
|
||
|
|
||
|
oTest.fnTest(
|
||
|
"Info empty language default is in the DOM",
|
||
|
null,
|
||
|
function () {
|
||
|
var bReturn = document.getElementById('example_info').innerHTML.replace(
|
||
|
' '+oSettings.oLanguage.sInfoFiltered.replace( '_MAX_', '57' ), "" ) ==
|
||
|
"Showing 0 to 0 of 0 entries";
|
||
|
return bReturn;
|
||
|
}
|
||
|
);
|
||
|
|
||
|
|
||
|
oTest.fnWaitTest(
|
||
|
"Info empty language can be defined",
|
||
|
function () {
|
||
|
oSession.fnRestore();
|
||
|
oTable = $('#example').dataTable( {
|
||
|
"sAjaxSource": "../../../examples/examples_support/json_source.txt",
|
||
|
"oLanguage": {
|
||
|
"sInfoEmpty": "unit test"
|
||
|
}
|
||
|
} );
|
||
|
oSettings = oTable.fnSettings();
|
||
|
oTable.fnFilter("nothinghere");
|
||
|
},
|
||
|
function () { return oSettings.oLanguage.sInfoEmpty == "unit test"; }
|
||
|
);
|
||
|
|
||
|
oTest.fnTest(
|
||
|
"Info empty language default is in the DOM",
|
||
|
null,
|
||
|
function () {
|
||
|
var bReturn = document.getElementById('example_info').innerHTML.replace(
|
||
|
' '+oSettings.oLanguage.sInfoFiltered.replace( '_MAX_', '57' ), "" ) ==
|
||
|
"unit test";
|
||
|
return bReturn;
|
||
|
}
|
||
|
);
|
||
|
|
||
|
|
||
|
oTest.fnWaitTest(
|
||
|
"Macro's not replaced",
|
||
|
function () {
|
||
|
oSession.fnRestore();
|
||
|
oTable = $('#example').dataTable( {
|
||
|
"sAjaxSource": "../../../examples/examples_support/json_source.txt",
|
||
|
"oLanguage": {
|
||
|
"sInfoEmpty": "unit _START_ _END_ _TOTAL_ test"
|
||
|
}
|
||
|
} );
|
||
|
oTable.fnFilter("nothinghere");
|
||
|
},
|
||
|
function () {
|
||
|
var bReturn = document.getElementById('example_info').innerHTML.replace(
|
||
|
' '+oSettings.oLanguage.sInfoFiltered.replace( '_MAX_', '57' ), "" ) ==
|
||
|
"unit _START_ _END_ _TOTAL_ test";
|
||
|
return bReturn;
|
||
|
}
|
||
|
);
|
||
|
|
||
|
|
||
|
oTest.fnComplete();
|
||
|
} );
|