89 lines
2.6 KiB
Plaintext
89 lines
2.6 KiB
Plaintext
<%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic" %>
|
|
<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %>
|
|
<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
|
|
<%@ taglib uri="/WEB-INF/enrgise-html.tld" prefix="enrgise" %>
|
|
|
|
<SCRIPT language=javascript src="../includes/ENRGISE.js"></SCRIPT>
|
|
|
|
<html:html locale="true">
|
|
<head>
|
|
<meta pragma="http-equiv" content="no-cache" >
|
|
<html:base />
|
|
<LINK href="../includes/ENRGISE.css" rel=stylesheet> <title></title>
|
|
</head>
|
|
<enrgise:errors />
|
|
|
|
<body scroll="auto" >
|
|
<html:form name="SearchDriverForm" action="SearchDriverMap" type="wenrgise.help.webtier.form.SearchDriverForm" >
|
|
<!-- Hidden Fields -->
|
|
<html:hidden property="moduleName" />
|
|
<html:hidden property="moduleId" />
|
|
|
|
|
|
|
|
<!-- Hidden Fields For Parent Field -->
|
|
<table cellpadding="0" cellspacing="0" class="blueBar" >
|
|
<tr >
|
|
<td width="15%" align="right"><bean:message key="wenrgise.common.search" /></td>
|
|
<td width="30%" align="left"><html:text property="searchText" name="SearchDriverForm" size="30" /></td>
|
|
<td width="30%" align="right" ><button accesskey="S" property="butSearch" onclick="Search();" ><bean:message key="wenrgise.common.search" /></button></td>
|
|
</tr>
|
|
</table>
|
|
|
|
|
|
|
|
<div id="divDtlTable" style="height:310px">
|
|
<table id="tableId" cellpadding="0" cellspacing="0">
|
|
<logic:iterate name="SearchDriverForm" property="chapterList" id="oChapterList" type="wenrgise.help.bean.SearchBean" indexId="iDtl">
|
|
<tr >
|
|
|
|
<enrgise:setAttribute id="atr" name="SearchDriverForm" property="chapterList" indexId="iDtl" >
|
|
<enrgise:setProperty property="txtScreenName" paramKey="ScreenName" name="atr" indexId="iDtl" />
|
|
<enrgise:setProperty property="txtModuleName" paramKey="ModuleName" name="atr" indexId="iDtl" />
|
|
<enrgise:setProperty property="txtAction" paramKey="ActionName" name="atr" indexId="iDtl" />
|
|
</enrgise:setAttribute>
|
|
<td align="center" ><html:link action="/SearchChapterContent" name="mapId" styleClass="labelText" ><bean:write name="oChapterList" property="chapterName" /></html:link></td>
|
|
</td>
|
|
</tr>
|
|
</logic:iterate>
|
|
</table>
|
|
|
|
</div>
|
|
<html:hidden property="optype" name="SearchDriverForm" />
|
|
<html:hidden property="firstLoad" name="SearchDriverForm" />
|
|
</html:form>
|
|
</body>
|
|
</html:html>
|
|
|
|
|
|
|
|
|
|
<script language="javascript" >
|
|
|
|
function OnLoadHelp()
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
function OnUnloadHelp()
|
|
{
|
|
document.forms[0].optype.value="Unload";
|
|
}
|
|
|
|
function Search()
|
|
{
|
|
document.forms[0].action="/hrms/ultraSearch.do";
|
|
document.forms[0].optype.value="Search";
|
|
document.forms[0].submit();
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
</script>
|
|
|
|
|