MDOCHELP2.jsp 2.61 KB
Newer Older
Thitichaipun Wutthisak committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<%@page contentType="text/html; charset=UTF-8"%>
<%@page import="com.csc.library.entry.HelpEntry,com.csc.library.system.*"%>
<jsp:useBean id="PRU084" class="com.csc.library.system.Task" scope="page" />
<%
PRU084.setChannel(request, response);
HelpEntry screen = (HelpEntry) PRU084.process("HelpEntry", "MDOCHELP");
		screen.process();
%>
<html>
<head>
<title><%=screen.getInquiry().getCurrentDbRecord().getDescription()%></title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link href="../CSS/TISCO.css" rel="stylesheet" type="text/css">
<script  language="JavaScript" src="../JS/SCREEN.js"></script>
<script language='javascript'>setLang('<%=screen.getUProfile().get("lang")%>');</script>
<script language="JavaScript" type="text/JavaScript">
<!--
function back(unit){
	with(window.opener.document.cscform){
	        locateId.value =unit;
	}
	window.close();
}

function setAssessor(){
var tmpstr="";
		with(document.cscform){
		        if((typeof __check)!="undefined"){	
		          for(i=0;i<__check.length;i++){
				  			if(__check[i].checked){
							          tmpstr+=__check[i].value+",";
							}
				  }
		     }
		}
		return tmpstr;
}

//-->
</script>
</head>
<%
String helpReturn="";
if(request.getParameter("__helpReturn")!=null){
	helpReturn=request.getParameter("__helpReturn");
}
%>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<form name="cscform" method="post" >


<!----------BEGIN CSC INITIAL ZONE ------------------------>

<%=screen.InitialVariable()%>

<!----------END CSC INITIAL ZONE -------------------------->

<input type="hidden" name="__cmd" value="">
<input type="hidden" name="__help" value="">
<input type="hidden" name="__goPage" value="">
<input type="hidden" name="__orderBy" value="<%=request.getParameter("__orderBy")%>">
<input type="hidden" name="__helpName" value="<%=request.getParameter("__helpName")%>">
<input type="hidden" name="__pageCall" value="<%=request.getParameter("__screen")%>">
 <input type="hidden" name="__fixCon" value="<%=request.getParameter("__fixCon")%>">



  <table cellpadding="0" cellspacing="0" class="inframe" >
    <%int i=1; while (screen.nextRec()) { %>
    <tr> 
      <td class="forborder"><div align="center"></div>
        <div align="center"><%=screen.getInquiry().getCurrentDbRecord().getSystemCode("STATUS")%></div></td>
      <td class="forborder"><div align="center"><%=i%></div></td>
      <td class="forborder"><div align="center"><%=screen.getString("MDOCUMENT","TDESC")%></div></td>

    </tr>
    <%i++; }%>
  </table>
	</td>
    </tr>
  </table>
  
</form>
</body>
</html>