Mixing HTML and STRUTS2 tags
- by ryan
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?