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
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°ree="+degree+"&exam_no="+exam_no+"§ionfrom="+sectionfrom+"§ionto="+sectionto+"°reename="+$("#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();
}
|