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.15.17.137
function calliamarksempty() {
$("#page_main_div").load("../../html_modules/iaemptyformat.html", function() {
document.getElementById("display_module_name").innerHTML =
"IA Marks list (empty format)";
document.getElementById("module_name_for_save").value = "iaemptyformat";
getDefaultHeadFooterLinks("IA Marks list (empty format)");
$("#report_marklist_student_degree_code").focus();
$("#report_marklist_student_degree_code").val("");
$("#report_marklist_student_degree_name").val("");
$("#report_marklist_student_Examno_name").val("");
$("#report_marklist_student_Examno").val("");
});
$("#module_details_div").hide();
}
function reportiamarksempty() {
if (trim($("#ia_empty_degree_code").val()) == "") {
alert("Please Enter Degree Code.");
$("#ia_empty_degree_code").focus();
return;
}
if (trim($("#ia_empty_examno").val()) == "") {
alert("Please Exam No.");
$("#ia_empty_examno").focus();
return;
}
var dataString =
"°ree_code=" +
trim($("#ia_empty_degree_code").val()) +
"&exam_code=" +
trim($("#ia_empty_examno").val());
dataString +=
"®_start=" +
trim($("#ia_empty_reg_start_from").val()) +
"®_end=" +
trim($("#ia_empty_reg_end_to").val());
dataString +=
"&subwise_start=" +
trim($("#ia_empty_subject_start_from").val()) +
"&subwise_end=" +
trim($("#ia_empty_subject_end_to").val());
window.location.href =
$host_url + "genearteiamarksemptylist.demo" + dataString;
}
function GetMarklistStudentGeneralGetExamNO($Examno) {
switch (document.getElementById("module_name_for_save").value) {
case "saveMarklistStudentWise":
$degcode = document.getElementById("report_marklist_student_degree_code")
.value;
if ($degcode == "") {
alert("please Enter Degree Code");
document.getElementById("report_marklist_student_degree_code").focus();
return;
}
PopupMarkEntrySubGetExamNO($degcode, $Examno);
break;
}
}
|