AnonSec Shell
Server IP : 92.204.138.22  /  Your IP : 18.117.170.135
Web Server : Apache
System : Linux ns1009439.ip-92-204-138.us 4.18.0-553.8.1.el8_10.x86_64 #1 SMP Tue Jul 2 07:26:33 EDT 2024 x86_64
User : internationaljou ( 1019)
PHP Version : 7.4.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : ON
Directory :  /home/internationaljou/www/application/admin1/bower_components/datatables/media/unit_testing/tests_onhold/4_server-side/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME ]     

Current File : /home/internationaljou/www/application/admin1/bower_components/datatables/media/unit_testing/tests_onhold/4_server-side/fnRowCallback.js
// DATA_TEMPLATE: empty_table
oTest.fnStart( "fnRowCallback" );

/* Note - fnRowCallback MUST return the first arguments (modified or not) */

$(document).ready( function () {
	/* Check the default */
	var oTable = $('#example').dataTable( {
		"bServerSide": true,
		"sAjaxSource": "../../../examples/server_side/scripts/server_processing.php"
	} );
	var oSettings = oTable.fnSettings();
	var mPass;
	
	oTest.fnWaitTest( 
		"Default should be null",
		null,
		function () { return oSettings.fnRowCallback == null; }
	);
	
	
	oTest.fnWaitTest( 
		"Four arguments passed",
		function () {
			oSession.fnRestore();
			
			mPass = -1;
			$('#example').dataTable( {
				"bServerSide": true,
		"sAjaxSource": "../../../examples/server_side/scripts/server_processing.php",
				"fnRowCallback": function ( nTr ) {
					mPass = arguments.length;
					return nTr;
				}
			} );
		},
		function () { return mPass == 4; }
	);
	
	
	oTest.fnWaitTest( 
		"fnRowCallback called once for each drawn row",
		function () {
			oSession.fnRestore();
			
			mPass = 0;
			$('#example').dataTable( {
				"bServerSide": true,
		"sAjaxSource": "../../../examples/server_side/scripts/server_processing.php",
				"fnRowCallback": function ( nTr, asData, iDrawIndex, iDataIndex ) {
					mPass++;
					return nTr;
				}
			} );
		},
		function () { return mPass == 10; }
	);
	
	oTest.fnWaitTest( 
		"fnRowCallback allows us to alter row information",
		function () {
			oSession.fnRestore();
			$('#example').dataTable( {
				"bServerSide": true,
		"sAjaxSource": "../../../examples/server_side/scripts/server_processing.php",
				"fnRowCallback": function ( nTr, asData, iDrawIndex, iDataIndex ) {
					$(nTr).addClass('unit_test');
					return nTr;
				}
			} );
		},
		function () { return $('#example tbody tr:eq(1)').hasClass('unit_test'); }
	);
	
	oTest.fnWaitTest( 
		"Data array has length matching columns",
		function () {
			oSession.fnRestore();
			
			mPass = true;
			$('#example').dataTable( {
				"bServerSide": true,
		"sAjaxSource": "../../../examples/server_side/scripts/server_processing.php",
				"fnRowCallback": function ( nTr, asData, iDrawIndex, iDataIndex ) {
					if ( asData.length != 5 )
						mPass = false;
					return nTr;
				}
			} );
		},
		function () { return mPass; }
	);
	
	oTest.fnWaitTest( 
		"Data array has length matching columns",
		function () {
			oSession.fnRestore();
			
			mPass = true;
			var iCount = 0;
			$('#example').dataTable( {
				"bServerSide": true,
		"sAjaxSource": "../../../examples/server_side/scripts/server_processing.php",
				"fnRowCallback": function ( nTr, asData, iDrawIndex, iDataIndex ) {
					if ( iCount != iDrawIndex )
						mPass = false;
					iCount++;
					return nTr;
				}
			} );
		},
		function () { return mPass; }
	);
	
	
	
	oTest.fnComplete();
} );

Anon7 - 2022
AnonSec Team