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/storeSelectSubmit">
6
<table class="info">
7
  <tbody>
8
    <tr>
9
      <td class="label">
10
        <span class="help" title="<bean:message key="help.dataStore_id"/>">
11
		  <bean:message key="label.dataStoreID"/>:
12
        </span>
13
      </td>
14
      <td class="datum" colspan=2>
15
        <html:select property="selectedDataStoreId">
16
			<html:options name="Config.Data" property="dataStoreIds"/>
17
		</html:select>
18
      </td>
19
    </tr>
20
    <tr>
21
      <td class="label">&nbsp;</td>
22
      <td class="datum">
23
		<html:submit property="buttonAction">
24
			<bean:message key="label.edit"/>
25
		</html:submit>
26
      </td>
27
      <td>
28
        <html:submit property="buttonAction">
29
			<bean:message key="label.delete"/>
30
		</html:submit>
31
	  </td>
32
    </tr>
33
  </tbody>
34
</table>
35
</html:form>
(3-3/6)