PHP Classes

File: assets/js/datatables/unit_testing/tests_onhold/4_server-side/2440.js

Recommend this page to a friend!
  Classes of Tran Tuan   Pretty PHP S3 Files Manager   assets/js/datatables/unit_testing/tests_onhold/4_server-side/2440.js   Download  
File: assets/js/datatables/unit_testing/tests_onhold/4_server-side/2440.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: 926 bytes
 

Contents

Class file image Download
// DATA_TEMPLATE: empty_table /* * NOTE: There are some differences in this zero config script for server-side * processing compared to the other data sources. The main reason for this is the * difference in how the server-side processing does it's filtering. Also the * sorting state is always reset on each draw. */ oTest.fnStart( "Info element with display all" ); $(document).ready( function () { var oTable = $('#example').dataTable( { "bServerSide": true, "sAjaxSource": "../../../examples/server_side/scripts/server_processing.php" } ); oTable.fnSettings()._iDisplayLength = -1; oTable.oApi._fnCalculateEnd( oTable.fnSettings() ); oTable.fnDraw(); /* Basic checks */ oTest.fnWaitTest( "Check length is correct when -1 length given", null, function () { return document.getElementById('example_info').innerHTML == "Showing 1 to 57 of 57 entries"; } ); oTest.fnComplete(); } );