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
<% try { %>
6
<html:form action="/config/data/typeSelectSubmit">
7
  <table class="info">
8
	<tr>
9
      <td class="label">
10
		<bean:message key="label.featureTypes"/>:
11
	  </td>
12
      <td class="datum">
13
		<html:select property="selectedFeatureTypeName">
14
			<html:options property="typeNames"/>
15
		</html:select>
16
      </td>
17
    </tr>
18
	<tr>
19
      <td class="label">&nbsp;</td>
20
      <td class="datum">
21

    
22
		<html:submit property="buttonAction">
23
			<bean:message key="label.edit"/>
24
		</html:submit>
25

    
26
		<html:submit property="buttonAction">
27
			<bean:message key="label.delete"/>
28
		</html:submit>
29
					
30
	  </td>
31
    </tr>
32
  </table>
33
</html:form>
34
<% } catch (Throwable hate ){
35
   System.err.println( "FeatureType Editor problem:"+ hate );
36
   hate.printStackTrace();
37
   throw hate;
38
} %>
(3-3/4)