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.137.198.181
Current Path : /var/www/html/stph/js/ |
| Current File : /var/www/html/stph/js/roomallotmantsummary.js |
function callroomallotmantsummary() {
$("#page_main_div").load(
"html_modules/roomallotmantsummary.html",
function() {
document.getElementById("display_module_name").innerHTML =
"Room Allotment Summary";
document.getElementById("module_name_for_save").value =
"Room Allotment Summary";
getDefaultHeadFooterLinks("Room Allotment Summary");
}
);
//$('#module_details_div').hide();
}
function Generateroomallotmantsummary() {
if (date_format($("#frm_date").val()) == "") {
alert("Enter Date");
$("#frm_date").focus();
return false;
}
if (date_format($("#session").val()) == "") {
alert("Select Session.");
$("#session").focus();
return false;
}
if ($("#deggrp").val() == "") {
alert("Select Degree Group.");
$("#deggrp").focus();
return false;
}
var datastring =
"&frm_date=" +
trim($("#frm_date").val()) +
"&session=" +
trim($("#session").val()) +
"°grp=" +
$("#deggrp").val();
window.location.href =
$host_url + "Generateroomallotmantsummary" + datastring;
}
|