Statistics
| Branch: | Revision:

m2u-upass-admin / WebContent / jsp / ss105_content / ibssEditTdTerm.jsp @ 120:ae1d99468601

History | View | Annotate | Download (3.38 KB)

1 0:ea666cc7880e hadi
<%@ taglib uri="/WEB-INF/tld/struts-html-el" prefix="htmlEL" %>
2
<%@ taglib uri="/WEB-INF/tld/struts-bean" prefix="bean" %>
3
<%@ taglib uri="/WEB-INF/tld/struts-bean-el" prefix="beanEL" %>
4
<%@ taglib uri="/WEB-INF/tld/struts-logic" prefix="logic" %>
5
<%@ taglib uri="/WEB-INF/tld/struts-logic-el" prefix="logicEL" %>
6
<%@ taglib uri="/WEB-INF/tld/c" prefix="c" %>
7
8
<script>
9
window.onload = function() {
10
	  document.getElementById("termDisplay").focus();
11
	};
12
13
</script>
14
<%@page import="java.util.HashMap"%>
15
<h3 class="title"><STRONG><bean:message key="title_sub_edit_td_term"/></STRONG></h3><br/>
16
<table id="errorTable">
17
<tr>
18
	<td>
19
		<span id="serverSideError" class="error"><jsp:include flush="true" page="/jsp/errorHandler.jsp"></jsp:include></span>
20
	</td>
21
</tr>
22
</table>
23
24
<bean:define id="viewBean" name="contentForm" property="contentsBean"/>
25
<htmlEL:form action="/ss105/updateTdTerm.do">
26
<table class="stepTable">
27
<tr>
28
<td>&nbsp;</td>
29
<td><div id="steps"><span><bean:message key="general.title.steps" arg0="1" arg1="2"/></span></div></td>
30
31
</tr>
32
</table>
33
<table class="tabularForm">
34
	<tr><td colspan="3">&nbsp;</td></tr>
35
	<tr>
36
		<td width="10%">&nbsp;</td>
37
		<td width="45%"><bean:message key="content_product_code"/>:</td>
38
		<td><strong><c:out value="${contentForm.map.tdTermProductCode}"/></strong></td>
39
	</tr>
40
	<tr>
41
		<td width="10%">&nbsp;</td>
42
		<td width="45%"><bean:message key="content_td_deposit_term"/>:</td>
43
		<td><htmlEL:text property="tdDepositTerm" name="contentForm" maxlength="2" autocomplete="off"/></td>
44
	</tr>
45
	<tr>
46
		<td width="10%">&nbsp;</td>
47
		<td width="45%"><bean:message key="content_td_deposit_term_code"/>:</td>
48
		<td>
49
			<htmlEL:select property="tdDepositTermCode" name="contentForm">
50
				<htmlEL:option value="M"><bean:message key="general.month"/></htmlEL:option>
51
				<htmlEL:option value="D"><bean:message key="general.day"/></htmlEL:option>
52
			</htmlEL:select>
53
		</td>
54
	</tr>
55
	<tr>
56
		<td width="10%">&nbsp;</td>
57
		<td width="45%"><bean:message key="content_td_interest_term"/>:</td>
58
		<td><htmlEL:text property="tdInterestTerm" name="contentForm" maxlength="2" autocomplete="off"/></td>
59
	</tr>
60
	<tr>
61
		<td width="10%">&nbsp;</td>
62
		<td width="45%"><bean:message key="content_td_interest_term_code"/>:</td>
63
		<td>
64
			<htmlEL:select property="tdInterestTermCode" name="contentForm">
65
				<htmlEL:option value="M"><bean:message key="general.month"/></htmlEL:option>
66
				<htmlEL:option value="D"><bean:message key="general.day"/></htmlEL:option>
67
			</htmlEL:select>
68
		</td>
69
	</tr>
70
	<tr>
71
		<td width="10%">&nbsp;</td>
72
		<td width="45%"><bean:message key="content_td_payment_freq"/>:</td>
73
		<td>
74
			<logicEL:iterate id="element" name="viewBean" property="paymentFreqMap">
75
				<bean:define id="key" name="element" property="key"/>
76
				<bean:define id="value" name="element" property="value"/>
77
				<htmlEL:radio name="contentForm" property="tdPayFreq" value="${key}"><c:out value="${value}"/></htmlEL:radio>
78
			</logicEL:iterate>
79
		</td>
80
	</tr>
81
</table>
82
<div class="floatRight">
83
<htmlEL:submit property="action" onclick="overlay();">
84
	<bean:message key="general.button.cancel"/>
85
</htmlEL:submit>
86
<c:if test="${contentForm.map.hasTDTermCreateAccess eq true}">
87
<htmlEL:submit property="action" onclick="overlay();">
88
	<bean:message key="input_button_create_category_done"/>
89
</htmlEL:submit>
90
</c:if>
91
</div>
92
</htmlEL:form>
93
<br/><br/>