Hi,  I’m working on an online questionnaire and am fairly new to java
web dev and struts.  What I already have is a dynamically generated
questionnaire that has topics, sub-topics then offers 5 choices to the
user.  The 5 options are a single radio group with the values 0-4 

So my generated html looks something like this
                                                
<td id="choice7_1_1" >
      <input type="radio" id="7_1" value="0">Choice 1
</td>
<td id="choice7_1_2" >
      <input type="radio" id="7_1" value="1">Choice 2
</td>
etc….

the id choice7_1_1 identifies that it is the 7th topic, 1st sub topic
and 1st option

What I’m currently trying to figure out is if it is possible to have a
dynaActionForm that will allow me to set/get the properties for this
form given that the number of topics and subtopics varies depending on
the questionnaire selected from db.  What I’m currently looking at doing
is just having the action process the request and parse the values
posted and from that create an arrayList of subtopics with the results
but this doesn’t really seem the most elegant or simplest solution.

Cheers
Murdo





---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to