PHP Classes

File: assets/js/datatables/unit_testing/tests_onhold/3_ajax/oLanguage.sSearch.js

Recommend this page to a friend!
  Classes of Tran Tuan   Pretty PHP S3 Files Manager   assets/js/datatables/unit_testing/tests_onhold/3_ajax/oLanguage.sSearch.js   Download  
File: assets/js/datatables/unit_testing/tests_onhold/3_ajax/oLanguage.sSearch.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Pretty PHP S3 Files Manager
Web based interface to manage files in Amazon S3
Author: By
Last change:
Date: 8 years ago
Size: 1,706 bytes
 

Contents

Class file image Download
// DATA_TEMPLATE: empty_table oTest.fnStart( "oLanguage.sSearch" ); $(document).ready( function () { /* Check the default */ var oTable = $('#example').dataTable( { "sAjaxSource": "../../../examples/ajax/sources/arrays.txt" } ); var oSettings = oTable.fnSettings(); oTest.fnWaitTest( "Search language is 'Search:' by default", null, function () { return oSettings.oLanguage.sSearch == "Search:"; } ); oTest.fnTest( "A label input is used", null, function () { return $('label', oSettings.aanFeatures.f[0]).length == 1 } ); oTest.fnTest( "Search language default is in the DOM", null, function () { return $('label', oSettings.aanFeatures.f[0]).text() == "Search: "; } ); oTest.fnWaitTest( "Search language can be defined", function () { oSession.fnRestore(); oTable = $('#example').dataTable( { "sAjaxSource": "../../../examples/ajax/sources/arrays.txt", "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 $('label', oSettings.aanFeatures.f[0]).text().indexOf('unit test') !== -1; } ); oTest.fnWaitTest( "Blank search has a no space (separator) inserted", function () { oSession.fnRestore(); oTable = $('#example').dataTable( { "sAjaxSource": "../../../examples/ajax/sources/arrays.txt", "oLanguage": { "sSearch": "" } } ); oSettings = oTable.fnSettings(); }, function () { return document.getElementById('example_filter').childNodes.length == 1; } ); oTest.fnComplete(); } );