| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- <%@ include file="../common/header.jsp" %>
- <script type="text/javascript" language="javascript">
- <!--
- function doCreateParamMap(){
- var x = window.confirm("<bean:message key="confirm.create"/>")
- if (x) {
- document.forms.paramMap.action.value="create_ok";
- document.forms.paramMap.post.value = "true";
- document.forms.paramMap.submit();
- }
- }
- function doBack(){
- document.forms.paramMap.action.value="list";
- document.forms.paramMap.clear.value="true";
- document.forms.paramMap.submit();
- }
- -->
- </script>
- <!-- CONTENT -->
- <form name="paramMap" method="post" action="paramMap.do">
- <input type="hidden" name="action">
- <input type="hidden" name="clear">
- <input type="hidden" name="sequence">
- <input type="hidden" name="post">
- <input type="hidden" name="redirect" value="create">
- <!--td width="80%" valign="top"-->
- <table width="100%" border="0" align="center" cellpadding="2" cellspacing="4">
- <tr>
- <td class="titleHeader" align="left"><bean:message key="project.paramMap.key"/> CREATE</td>
- </tr>
- </table>
- <table width="100%" border="0" align="center" cellpadding="2" cellspacing="4">
- <tr>
- <td align="center">
- <table width="100%" border="0" cellspacing="1" cellpadding="2">
- <logic:messagesPresent property="error.paramMap">
- <tr>
- <td colspan="7">
- <font color="#FF0000"><html:errors property="error.paramMap"/></font>
- </td>
- </tr>
- </logic:messagesPresent>
- <tr>
- <td width="15%"><b><bean:message key="paramMap.group.key"/> <font color="#FF0000">*</font></b></td>
- <td width="1">:</td>
- <td width="84%" colspan="5">
- <input type="text" name="group"/>
- </td>
- </tr>
- <tr>
- <td width="15%"><b><bean:message key="paramMap.name.key"/> <font color="#FF0000">*</font></b></td>
- <td width="1%">:</td>
- <td width="84%" colspan="5">
- <input type="text" name="name"/>
- </td>
- </tr>
- <tr>
- <td width="15%"><b><bean:message key="paramMap.value.key"/><font color="#FF0000">*</font></b></td>
- <td width="1%">:</td>
- <td width="84%" colspan="5">
- <input type="text" name="paramMapValue"/>
- </td>
- </tr>
-
- <tr>
- <td width="15%"><b><bean:message key="paramMap.seq.key"/></b></td>
- <td width="1%">:</td>
- <td width="84%" colspan="5">
- <input type="text" name="seq"/>
- </td>
- </tr>
- <tr>
- <td width="15%"><b><bean:message key="paramMap.description.key"/></b></td>
- <td width="1%">:</td>
- <td width="84%" colspan="5">
- <input type="text" name="description"/>
- </td>
- </tr>
-
- <tr>
- <td width="15%"></td>
- <td width="1%"></td>
- <td width="84%" colspan="5">
- <input type="button" value="<bean:message key="button.back"/>" onclick="javascript:doBack();">
- <input type="button" value="<bean:message key="button.submit"/>" onclick="javascript:doCreateParamMap();"></td>
- <td colspan="4"> </td>
- </tr>
- </table>
- </td>
- </tr>
- <tr>
- <td> </td>
- </tr>
- </table>
- </form>
- <!-- END CONTENT -->
- <%@ include file="../common/footer.jsp"%>
-
|