| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- <%@ include file="../common/header.jsp" %>
- <script type="text/javascript" language="javascript">
- <!--
- function doCreate(){
- var x = window.confirm("<bean:message key="confirm.create" />");
- if (x) {
- document.forms.billerCategory.action.value="create_ok";
- document.forms.billerCategory.post.value = "true";
- document.forms.billerCategory.submit();
- doDisable(document.forms.billerCategory, "button");
- }
- }
- function doBack(){
- document.forms.billerCategory.action.value="list";
- document.forms.billerCategory.clear.value="true";
- document.forms.billerCategory.submit();
- }
- -->
- </script>
- <!-- CONTENT -->
- <FORM name="billerCategory" method="post" action="billerCategory.do">
- <input type="hidden" name="action">
- <input type="hidden" name="post">
- <input type="hidden" name="clear">
- <input type="hidden" name="itemFocus">
- <!-- <td width="640" valign="top"> -->
- <!-- td width="80%" valign="top"-->
- <!-- <td valign="top">
- --> <table width="100%" border="0" align="center" cellpadding="2" cellspacing="4">
- <td class="titleHeader" align="left"><bean:message key="project.billerCategory.key"/> - CREATE</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 colspan="7"><html:errors/></td></tr>
- <tr>
- <td width="15%"><b><bean:message key="billerCategory.code.key"/> <font color="#FF0000">*</font></b></td>
- <td width="1%">:</td>
- <td width="34%">
- <html:text name="billerCategory" property="code" maxlength="50"/>
- </td>
- <td width="5%"> </td>
- <td width="15%"> </td>
- <td width="10"> </td>
- <td width="30%"> </td>
- </tr>
- <tr>
- <td width="15%"><b><bean:message key="billerCategory.name.key"/> <font color="#FF0000">*</font></b></td>
- <td width="1%">:</td>
- <td width="34%">
- <html:text name="billerCategory" property="name" maxlength="50"/>
- </td>
- <td width="5%"> </td>
- <td width="15%"> </td>
- <td width="10"> </td>
- <td width="30%"> </td>
- </tr>
- <tr>
- <td width="15%"></td>
- <td width="1%"></td>
- <td width="84%">
- <input type="button" value="<bean:message key="button.back"/>" onclick="javascript:doBack();"/>
- <input type="button" value="Submit" onclick="javascript:doCreate();"/></td>
- <td colspan="4"> </td>
- </tr>
- </table>
- </td>
- </tr>
- <tr>
- <td> </td>
- </tr>
- </table>
- </form>
- <!-- END CONTENT -->
- <%@ include file="../common/footer.jsp"%>
|