mirror of
https://github.com/DataTables/DataTables.git
synced 2024-11-30 12:24:10 +01:00
73 lines
1.8 KiB
JavaScript
Executable File
73 lines
1.8 KiB
JavaScript
Executable File
// DATA_TEMPLATE: dom_data
|
|
oTest.fnStart( "oLanguage.sInfoPostFix" );
|
|
|
|
$(document).ready( function () {
|
|
/* Check the default */
|
|
var oTable = $('#example').dataTable();
|
|
var oSettings = oTable.fnSettings();
|
|
|
|
oTest.fnTest(
|
|
"Info post fix language is '' (blank) by default",
|
|
null,
|
|
function () { return oSettings.oLanguage.sInfoPostFix == ""; }
|
|
);
|
|
|
|
oTest.fnTest(
|
|
"Width no post fix, the basic info shows",
|
|
null,
|
|
function () { return document.getElementById('example_info').innerHTML = "Showing 1 to 10 of 57 entries"; }
|
|
);
|
|
|
|
|
|
oTest.fnTest(
|
|
"Info post fix language can be defined",
|
|
function () {
|
|
oSession.fnRestore();
|
|
oTable = $('#example').dataTable( {
|
|
"oLanguage": {
|
|
"sInfoPostFix": "unit test"
|
|
}
|
|
} );
|
|
oSettings = oTable.fnSettings();
|
|
},
|
|
function () { return oSettings.oLanguage.sInfoPostFix == "unit test"; }
|
|
);
|
|
|
|
oTest.fnTest(
|
|
"Info empty language default is in the DOM",
|
|
null,
|
|
function () { return document.getElementById('example_info').innerHTML = "Showing 1 to 10 of 57 entries unit test"; }
|
|
);
|
|
|
|
|
|
oTest.fnTest(
|
|
"Macros have no effect in the post fix",
|
|
function () {
|
|
oSession.fnRestore();
|
|
oTable = $('#example').dataTable( {
|
|
"oLanguage": {
|
|
"sInfoPostFix": "unit _START_ _END_ _TOTAL_ test"
|
|
}
|
|
} );
|
|
},
|
|
function () { return document.getElementById('example_info').innerHTML = "Showing 1 to 10 of 57 entries unit _START_ _END_ _TOTAL_ test"; }
|
|
);
|
|
|
|
|
|
oTest.fnTest(
|
|
"Post fix is applied after fintering info",
|
|
function () {
|
|
oSession.fnRestore();
|
|
oTable = $('#example').dataTable( {
|
|
"oLanguage": {
|
|
"sInfoPostFix": "unit test"
|
|
}
|
|
} );
|
|
oTable.fnFilter("nothinghere");
|
|
},
|
|
function () { return document.getElementById('example_info').innerHTML = "Showing 0 to 0 of 0 entries unit (filtered from 57 total entries) test"; }
|
|
);
|
|
|
|
|
|
oTest.fnComplete();
|
|
} ); |