Project

General

Profile

1
<%@ taglib uri="/tags/struts-bean" prefix="bean" %>
2
<%@ taglib uri="/tags/struts-html" prefix="html" %>
3
<%@ taglib uri="/tags/struts-logic" prefix="logic" %>
4

    
5
<html:form action="/config/data/storeNewSubmit">
6
<table class="info">
7
  <tr>
8
    <td class="label">	
9
		<bean:message key="label.dataStoreDescription"/>:
10
	</td>
11
	<td class="datum">
12
	  <html:select property="selectedDescription">
13
	    <html:options property="dataStoreDescriptions"/>
14
	  </html:select>
15
	</td>
16
  </tr>
17
  <tr>
18
    <td class="label">	
19
      <span class="help" title="<bean:message key="help.dataStore_id"/>">
20
		<bean:message key="label.dataStoreID"/>:
21
      </span>
22
	</td>
23
	<td class="datum">      
24
	  <html:text property="dataStoreID"/>
25
	</td>
26
  </tr>
27
  <tr>
28
    <td class="label">&nbsp;</td>
29
    <td class="datum">
30
	  <html:submit>
31
	    <bean:message key="label.new"/>
32
	  </html:submit>
33
	</td>
34
  </tr>
35
</table>
36
</html:form>
(2-2/6)