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


Current Path : /var/www/html/stph/js/Report/
Upload File :
Current File : /var/www/html/stph/js/Report/studentsectionlist.js

function reportstudentsectionlist()
{
    $("#page_main_div").load('html_modules/studentsectionlist.html?v=07052016',function()
	{
		document.getElementById('display_module_name').innerHTML = 'Section List';
		document.getElementById('module_name_for_save').value = 'Section List';  	
	}
	);
}

function  Genarentsectionwiselist()
{
	var degree=$("#stud_section_degree_code").val();
	var exam_no=$("#stud_section_Examno").val();
	var sectionfrom=$("#sectionfrom").val();
	var sectionto=$("#sectionto").val();
	
	if(empty(degree))
	{
		alert("Degree cannot be empty");
		$("#stud_section_degree_code").focus();
		return;
	}
	
	if(empty(exam_no))
	{
		alert("Exam cannot be empty");
		$("#stud_section_Examno").focus();
		return;
	}
	
	if(sectionfrom == '' || sectionto == '')
	{
		alert('Enter the Section');
		$("#sectionfrom").focus();
		return;
	}
	
	window.location.href = $host_url+"Genarentsectionwiselist&degree="+degree+"&exam_no="+exam_no+"&sectionfrom="+sectionfrom+"&sectionto="+sectionto+"&degreename="+$("#stud_section_degree_name").val()+"&exam_name="+$("#stud_section_Examno_name").val(); 
}

function to_upperx(id)
{	
	var x = document.getElementById(id).value;
	document.getElementById(id).value = x.toUpperCase();
}