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


Current Path : /proc/thread-self/root/var/www/oasis/js_old/
Upload File :
Current File : //proc/thread-self/root/var/www/oasis/js_old/apprCandidList.js

const CallenableCandidList = () => {
  $("#page_main_div").load("../html_modules/apprCandidList.html", function() {
    document.getElementById("display_module_name").innerHTML =
      "Approved Candidate List";
    getDefaultHeadFooterLinks("Approved Candidate List");
  });
};

const getReport = () => {
  var frmdeg = $("#degfrom").val();
  var todeg = $("#degto").val();
  var frmappno = $("#appnoto").val();
  var toappno = $("#appnoto").val();
  if (frmdeg == "") {
    alert("Please enter Degree");
    $("#degfrom").focus();
    return;
  }

  if (frmappno == "") {
    alert("Please enter the Application No.");
    $("#appnofrm").focus();
    return;
  }

  $.blockUI({
    message:
      "<h1 class='h1' style='font-size:12px'><img src='img/ajax-loader.gif' border='0'></h1>"
  });

  $.ajax({
    type: "POST",
    data:
      "&frmdeg=" +
      frmdeg +
      "&todeg=" +
      todeg +
      "&frmappno=" +
      frmappno +
      "&toappno=" +
      toappno,
    url: $host_url + "generateApprCandidRprt",
    success: ExmAppDataRes
  });
};