rekonConfig_create.jsp 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <%@ include file="../common/header.jsp" %>
  2. <script type="text/javascript" language="javascript">
  3. <!--
  4. function doCreateChannel(){
  5. var x = window.confirm("<bean:message key="confirm.create"/>")
  6. if (x) {
  7. document.forms.channel.action.value="create_ok";
  8. document.forms.channel.post.value = "true";
  9. document.forms.channel.submit();
  10. }
  11. }
  12. function doBack(){
  13. document.forms.channel.action.value="list";
  14. document.forms.channel.clear.value="true";
  15. document.forms.channel.submit();
  16. }
  17. -->
  18. </script>
  19. <!-- CONTENT -->
  20. <form name="channel" method="post" action="rekonConfig.do">
  21. <input type="hidden" name="action"/>
  22. <input type="hidden" name="clear"/>
  23. <input type="hidden" name="sequence"/>
  24. <input type="hidden" name="post"/>
  25. <input type="hidden" name="redirect" value="create"/>
  26. <!--td width="80%" valign="top"-->
  27. <table width="100%" border="0" align="center" cellpadding="2" cellspacing="4">
  28. <td class="titleHeader" align="left"><bean:message key="project.reconConfig.key"/> CREATE</td>
  29. </table>
  30. <table width="100%" border="0" align="center" cellpadding="2" cellspacing="4">
  31. <td>
  32. <tr>
  33. <td width="25%" class="titleField"><a href="rekonConfig.do?action=create&clear=true">Define <bean:message key="project.channel.key"/></a></td>
  34. <td width="25%" class="titleField"><a href="rekonConfig.do?action=create_reconProcess&clear=true">Define <bean:message key="project.reconProcess.key"/></a></td>
  35. <td width="25%" class="titleField"><a href="rekonConfig.do?action=create_reconAction&clear=true">Define <bean:message key="project.reconAction.key"/></a></td>
  36. <td width="25%" class="titleField"><a href="rekonConfig.do?action=create_actionConfig&clear=true">Define<bean:message key="project.actionConfig.key"/></a></td>
  37. </tr>
  38. </td>
  39. </table>
  40. <table width="100%" border="0" align="center" cellpadding="2" cellspacing="4">
  41. <tr>
  42. <td align="center">
  43. <table width="100%" border="0" cellspacing="1" cellpadding="2">
  44. <tr>
  45. <td><b>DEFINE <bean:message key="project.channel.key"/></b></td>
  46. </tr>
  47. <BR>
  48. <tr><td colspan="6"><html:errors/></td></tr>
  49. <tr>
  50. <td width="15%"><b><bean:message key="channel.channelName.key"/></b></td>
  51. <td width="1%">:</td>
  52. <td width="25%" colspan="4" align="left">
  53. <html:text name="channel" property="channelName" size="50"/>
  54. </td>
  55. <td width="50%" align="left"><input type="button" value="<bean:message key="button.submit"/>" onclick="javascript:doCreateChannel();"/></td>
  56. </tr>
  57. </table>
  58. </td>
  59. </tr>
  60. <tr>
  61. <td>&nbsp;</td>
  62. </tr>
  63. </table>
  64. </td>
  65. </form>
  66. <!-- END CONTENT -->
  67. <%@ include file="../common/footer.jsp"%>