| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- <%@ include file="../common/header.jsp"%>
-
- <script type="text/javascript" language="javascript">
- <!--
-
- function doUpdateParamMap(group,name){
- var x = window.confirm("<bean:message key="confirm.edit"/>");
- if(x){
- document.forms.paramMap.group.value=group;
- document.forms.paramMap.name.value=name;
- document.forms.paramMap.action.value = "edit_ok";
- document.forms.paramMap.post.value = "true";
- document.forms.paramMap.submit();
- }
- }
-
- function doBack(){
- document.forms.paramMap.action.value="edit";
- document.forms.paramMap.submit();
- doDisable(document.forms.paramMap, "button");
- }
- -->
- </script>
- <!-- CONTENT -->
- <form name="paramMap" method="post" action="paramMap.do">
- <input type="hidden" name="action" value ="">
- <input type="hidden" name="group" value ="">
- <input type="hidden" name="name" value ="">
- <input type="hidden" name="post">
- <!--td width="80%" valign="top"-->
- <table width="100%" border="0" align="center" cellpadding="2" cellspacing="4">
- <tr>
- <td class="titleHeader"><bean:message key="project.paramMap.key"/> - EDIT</td>
- </tr>
- </table>
- <table width="100%" border="0" align="center" cellpadding="2" cellspacing="4">
- <tr><td colspan="7"><html:errors/></td></tr>
- <tr>
- <td align="center">
- <table width="100%" border="0" cellspacing="1" cellpadding="2">
- <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="4" align="left">
- <bean:write name="paramMap" property="id.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="4" align="left">
- <bean:write name="paramMap" property="id.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="4" align="left">
- <html:text name="paramMap" property="value"/>
- </td>
- </tr>
- <tr>
- <td width="15%"><b><bean:message key="paramMap.seq.key"/><font color="#FF0000">*</font></b></td>
- <td width="1%">:</td>
- <td width="84%" colspan="4" align="left">
- <html:text name="paramMap" property="seq"/>
- </td>
- </tr>
-
- <tr>
- <td width="15%"></td>
- <td width="1%"></td>
- <td width="84%" colspan="4" align="left">
- <input type="button" value="<bean:message key="button.back"/>" onclick="javascript:doBack();">
-
- <input type="button" value="<bean:message key="button.submit"/>" onclick="doUpdateParamMap('<bean:write name="paramMap" property="id.group"/>','<bean:write name="paramMap" property="id.name"/>');">
- </td>
- </tr>
- </table>
- </td>
- </tr>
- <tr>
- <td> </td>
- </tr>
- </table>
- </form>
- <!-- END CONTENT -->
- <%@ include file="../common/footer.jsp"%>
-
|