Project

General

Profile

1 3032 perry
<%@ 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/styleEditorSubmit" enctype="multipart/form-data">
6
7
<table class="info">
8
  <tr>
9
    <td class="label"><bean:message key="label.styleID"/>:</td>
10
    <td class="datum"><html:text property="styleID" size="60"/></td>
11
  </tr>
12
  <tr>
13
    <td class="label"><bean:message key="label.filename"/></td>
14
    <td class="datum"><html:file size="60" property="sldFile"/></td>
15
  </tr>
16
   <!--- add the "fully validate" option-->
17
  <tr>
18
    <td class="label">&nbsp;</td>
19
    <td><html:checkbox property="fullyValidate">Fully Validate against the SLD schema</html:checkbox></td>
20
21
  </tr>
22
  <tr>
23
    <td class="label">&nbsp;</td>
24
    <td class="datum">
25
      <html:submit property="action"><bean:message key="label.submit"/></html:submit>
26
      <html:reset><bean:message key="label.reset"/></html:reset>
27
    </td>
28
  </tr>
29
30
</table>
31
32
</html:form>