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 : 18.221.157.203


Current Path : /var/www/html/gcg/js/Report/
Upload File :
Current File : /var/www/html/gcg/js/Report/report_degree_list.js

/* 
 *
 * FOR THE Report degree list
 * PROGRAMED BY NAVEEN
 * DATE: 13/03/09
 * TIME: 1:15 PM 
  *
 */
function LoadDegreeList()
{
    $("#page_main_div").load('html_modules/degree_list.html',function()
	{ 
	document.getElementById('display_module_name').innerHTML = 'Degree List Report';
	document.getElementById('module_name_for_save').value = 'ReportDegreeList';	
	getDefaultHeadFooterLinks("Degree List"); 
	}
	);	
	 	
}

function GenerateDegreeReport()
{
/*    if(trim($("#report_degree_all").val()) == '')
	 {
		alert('Please Enter Radio Button!!');
		$("#report_degree_all").focus();
		return;
	  }	 */
	  
   if(document.getElementById('report_degree_all').checked)
	{
		$type='ALL';
	}
	else
	{
		$type='SELECTED';
	}	
	
			window.location.href = $host_url+"generateDegreeReport.demo&degree_types="+trim($type); 			
}