0xV3NOMx
Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64



Your IP : 3.145.44.46


Current Path : /var/www/html/mum/js/
Upload File :
Current File : /var/www/html/mum/js/studentphotolist.js

function Enablestudentphoto() {
	$("#page_main_div").load('html_modules/studentphotolist.html?v=26092016', function () {
		document.getElementById('display_module_name').innerHTML = 'Student Photo List';
		document.getElementById('module_name_for_save').value = 'Student Photo List';
		getDefaultHeadFooterLinks('Student Photo List');
	});
}


function downloadAllStudentPhotos() {
	if (trim($('#Reg_from').val()) == '') {
		alert("Enter Register no. From");
		$("#Reg_from").focus();
		return;
	}

	if ($('#deg_code').val() == '') {
		alert("Enter Degree ");
		$("#deg_code").focus();
		return;
	}


	window.location.href = $host_url +
		"generateAllStudentPhotosreport.demo&deg_code=" + $('#degree_code').val()
		+ "&Reg_from=" + $('#Reg_from').val()
		+ "&Reg_to=" + $('#Reg_to').val();

}