mirror of
https://github.com/DataTables/DataTables.git
synced 2024-11-30 12:24:10 +01:00
61 lines
1.4 KiB
JavaScript
Executable File
61 lines
1.4 KiB
JavaScript
Executable File
// DATA_TEMPLATE: dom_data
|
|
oTest.fnStart( "oLanguage.sSearch" );
|
|
|
|
$(document).ready( function () {
|
|
/* Check the default */
|
|
var oTable = $('#example').dataTable();
|
|
var oSettings = oTable.fnSettings();
|
|
|
|
oTest.fnTest(
|
|
"Search language is 'Search:' by default",
|
|
null,
|
|
function () { return oSettings.oLanguage.sSearch == "Search:"; }
|
|
);
|
|
|
|
oTest.fnTest(
|
|
"Search language default is in the DOM",
|
|
null,
|
|
function () { return document.getElementById('example_filter').childNodes[0].nodeValue
|
|
== "Search: "; }
|
|
);
|
|
|
|
|
|
oTest.fnTest(
|
|
"Search language can be defined",
|
|
function () {
|
|
oSession.fnRestore();
|
|
oTable = $('#example').dataTable( {
|
|
"oLanguage": {
|
|
"sSearch": "unit test"
|
|
}
|
|
} );
|
|
oSettings = oTable.fnSettings();
|
|
},
|
|
function () { return oSettings.oLanguage.sSearch == "unit test"; }
|
|
);
|
|
|
|
oTest.fnTest(
|
|
"Info language definition is in the DOM",
|
|
null,
|
|
function () { return document.getElementById('example_filter').childNodes[0].nodeValue
|
|
== "unit test "; }
|
|
);
|
|
|
|
|
|
oTest.fnTest(
|
|
"Blank search has a no (separator) inserted",
|
|
function () {
|
|
oSession.fnRestore();
|
|
oTable = $('#example').dataTable( {
|
|
"oLanguage": {
|
|
"sSearch": ""
|
|
}
|
|
} );
|
|
oSettings = oTable.fnSettings();
|
|
},
|
|
function () { return document.getElementById('example_filter').childNodes.length == 1; }
|
|
);
|
|
|
|
|
|
oTest.fnComplete();
|
|
} ); |