From 37b7cb9f926c76b251fdf132d1aaf259fee16241 Mon Sep 17 00:00:00 2001 From: xuechen5 <xuechen5@illinois.edu> Date: Wed, 18 Nov 2020 08:36:11 -0600 Subject: [PATCH] Add "Activate" & "Deactivate" Buttons, Add link to Patient Info --- .../hcp-uap/viewPreRegisteredPatientList.jsp | 25 +++++++++++++++++-- 1 file changed, 23 insertions(+), 2 deletions(-) diff --git a/iTrust/WebRoot/auth/hcp-uap/viewPreRegisteredPatientList.jsp b/iTrust/WebRoot/auth/hcp-uap/viewPreRegisteredPatientList.jsp index 49b3d1b..565d871 100644 --- a/iTrust/WebRoot/auth/hcp-uap/viewPreRegisteredPatientList.jsp +++ b/iTrust/WebRoot/auth/hcp-uap/viewPreRegisteredPatientList.jsp @@ -60,10 +60,21 @@ loggingAction.logEvent(TransactionType.PATIENT_LIST_VIEW, loggedInMID, 0, ""); <form action="viewReport.jsp" method="post" name="myform"> <table class="display fTable" id="patientList" align="center"> + + <script type="text/javascript"> + function showRisks(){ ///////////////////////////////////// for BUTTONS DEACTIVE, Should HIDE ROW. + //document.getElementById("risks").style.display="inline"; + //document.getElementById("riskButton").style.display="none"; + return; + } + </script> + <thead> <tr class=""> + <th>Approve</th> + <th>Deactivate</th> <th>Name</th> <th>Address</th> <th>Email</th> @@ -79,8 +90,19 @@ loggingAction.logEvent(TransactionType.PATIENT_LIST_VIEW, loggedInMID, 0, ""); patientsList.add(bean); %> <tr> + <td> + <a href="editPatient.jsp" style="text-decoration: none;"> + <input type=button value="Activate" onclick="javascript:showRisks();"> + </a> + </td> + <td> + <a href="editPatient.jsp" style="text-decoration: none;"> + <input type=button value="DeActivate" onclick="javascript:showRisks();"> + </a> + </td> + <td > - <a href="editPHR.jsp?patient=<%= StringEscapeUtils.escapeHtml("" + (index)) %>"> + <a href="viewPreRegisteredPatientInfo.jsp?patient=<%= StringEscapeUtils.escapeHtml("" + (index)) %>"> <%= StringEscapeUtils.escapeHtml("" + (bean.getFullName())) %> @@ -95,7 +117,6 @@ loggingAction.logEvent(TransactionType.PATIENT_LIST_VIEW, loggedInMID, 0, ""); </tr> <% index ++; - } session.setAttribute("patients", patientsList); //////////////////// ?????????????????????????????????????????? -- GitLab