Mixing HTML and STRUTS2 tags

Posted by ryan on Stack Overflow See other posts from Stack Overflow or by ryan
Published on 2010-05-06T06:32:02Z Indexed on 2010/05/06 11:28 UTC
Read the original article Hit count: 186

Filed under:
|
|
|

I have a form which has both HMTL tags and struts tags. I use the HTML tags because of alignment issues with struts tags.

<s:form action = "setNode" name = "processing" method ="POST">



      <script>
      <!--
      createTree(catArray);

      </script>
      <br/>
      <s:radio name="processOption" label="" list="{'Add','Move','Delete'}" ></s:radio>

      <s:textfield name="node" ></s:textfield>

      <s:submit name="Go" value="              Go                " align="center" />
      </s:form>

the createTree function creates a tree form with HTML checkbox input types.

The action triggers a java function. How do i see which checkboxes are checked?

© Stack Overflow or respective owner

Related posts about struts2

Related posts about java