| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- <%@ include file="../common/header.jsp" %>
- <script type="text/javascript" language="javascript">
- <!--
- function doCreateChannel(){
- var x = window.confirm("<bean:message key="confirm.create"/>")
- if (x) {
- document.forms.channel.action.value="create_ok";
- document.forms.channel.post.value = "true";
- document.forms.channel.submit();
- }
- }
- function doBack(){
- document.forms.channel.action.value="list";
- document.forms.channel.clear.value="true";
- document.forms.channel.submit();
- }
- -->
- </script>
- <!-- CONTENT -->
- <form name="channel" method="post" action="rekonConfig.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">
- <td class="titleHeader" align="left"><bean:message key="project.reconConfig.key"/> CREATE</td>
- </table>
- <table width="100%" border="0" align="center" cellpadding="2" cellspacing="4">
- <td>
- <tr>
- <td width="25%" class="titleField"><a href="rekonConfig.do?action=create&clear=true">Define <bean:message key="project.channel.key"/></a></td>
- <td width="25%" class="titleField"><a href="rekonConfig.do?action=create_reconProcess&clear=true">Define <bean:message key="project.reconProcess.key"/></a></td>
- <td width="25%" class="titleField"><a href="rekonConfig.do?action=create_reconAction&clear=true">Define <bean:message key="project.reconAction.key"/></a></td>
- <td width="25%" class="titleField"><a href="rekonConfig.do?action=create_actionConfig&clear=true">Define<bean:message key="project.actionConfig.key"/></a></td>
- </tr>
- </td>
- </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">
- <tr>
- <td><b>DEFINE <bean:message key="project.channel.key"/></b></td>
- </tr>
- <BR>
- <tr><td colspan="6"><html:errors/></td></tr>
- <tr>
- <td width="15%"><b><bean:message key="channel.channelName.key"/></b></td>
- <td width="1%">:</td>
- <td width="25%" colspan="4" align="left">
- <html:text name="channel" property="channelName" size="50"/>
- </td>
- <td width="50%" align="left"><input type="button" value="<bean:message key="button.submit"/>" onclick="javascript:doCreateChannel();"/></td>
- </tr>
- </table>
- </td>
- </tr>
- <tr>
- <td> </td>
- </tr>
- </table>
- </td>
- </form>
- <!-- END CONTENT -->
- <%@ include file="../common/footer.jsp"%>
-
|