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.21.12.122
function callenableReportApplicationForm() {
$("#page_main_div").load('html_modules/report_exam_application_form.html', function () {
document.getElementById('display_module_name').innerHTML = 'Report Exam Application';
document.getElementById('module_name_for_save').value = 'Report Exam Application';
getDefaultHeadFooterLinks('Exam Fee Report');
$("#report_marklist_student_degree_code").focus();
$("#report_marklist_student_degree_code").val('');
$("#report_marklist_student_degree_name").val('');
});
}
function ReportExamApplicationForm() {
if (trim($("#report_marklist_student_degree_code").val()) == '') {
alert('Please Enter Degree Code!!');
$("#report_marklist_student_degree_code").focus();
return;
}
if (trim($("#report_student_Examno").val()) == '') {
alert('Please Enter Exam No');
$("#report_student_Examno").focus();
return;
}
if (trim(($("#report_application_range_from").val())) == '' || trim(($("#report_application_end_to").val())) == '') {
alert('Please Enter Application Range');
return;
}
if (trim(($("#report_exam_reg_start_from").val())) == '' || trim(($("#report_exam_reg_end_to").val())) == '') {
alert('Please Enter Reg.No Range');
return;
}
var dataString = "°ree_code=" + trim(($("#report_marklist_student_degree_code").val())) +
"&exam_code=" + trim(($("#report_student_Examno").val()));
dataString += "&app_start=" + trim(($("#report_application_range_from").val())) +
"&app_end=" + trim(($("#report_application_end_to").val()));
dataString += "®_start=" + trim(($("#report_exam_reg_start_from").val())) +
"®_end=" + trim(($("#report_exam_reg_end_to").val())) + "&report_type=" + trim(($("#ack_type").val())) + "&payment_type=" + trim(($("#pay_mode").val()));
window.location.href = $host_url + "DownloadExamAppFormApplications" + dataString;
//var data="°ree_code="+trim(($("#report_marklist_student_degree_code").val()))
}
|