PHP Classes

File: assets/js/datatables/unit_testing/tests_onhold/6_delayed_rendering/oLanguage.sInfoEmpty.js

Recommend this page to a friend!
  Classes of Tran Tuan   Pretty PHP S3 Files Manager   assets/js/datatables/unit_testing/tests_onhold/6_delayed_rendering/oLanguage.sInfoEmpty.js   Download  
File: assets/js/datatables/unit_testing/tests_onhold/6_delayed_rendering/oLanguage.sInfoEmpty.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: 2,169 bytes
 

Contents

Class file image Download
// DATA_TEMPLATE: empty_table oTest.fnStart( "oLanguage.sInfoEmpty" ); $(document).ready( function () { /* Check the default */ var oTable = $('#example').dataTable( { "sAjaxSource": "../../../examples/ajax/sources/arrays.txt", "bDeferRender": true } ); 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/ajax/sources/arrays.txt", "bDeferRender": true, "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 replaced", function () { oSession.fnRestore(); oTable = $('#example').dataTable( { "sAjaxSource": "../../../examples/ajax/sources/arrays.txt", "bDeferRender": true, "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 1 0 0 test"; return bReturn; } ); oTest.fnComplete(); } );