4/23 HTML form JSP question:
What I have is essentially, an array of a set of radio buttons.
Since radio buttons are identified by its name and there is no
concept of scope in HTML, how do I deal with this? I really want
to avoid things like
<input type="radio" name="radio1">
<input type="radio" name="radio2">
<input type="radio" name="radio3">
mainly because the javabean for this form is going to be a pain
in the butt to write.
any pointer? custom tag? thanks in advance
\_ Well, any form inputs are basically parameters to a function
(read cgi). So name them accordingly. A terse, descriptive
name. And there certainly is "scope" in HTML. It's global per-
page (correct me if I'm wrong). Also, you mention JSP, which
definitely has definable scope (e.g. page, session, etc.)
--scotsman
\_ what i want is a radio input which has the scope of
let say, 1 table row!
\_ radio buttons belong to a group, so you could do the following:
<input type="radio" name="group1" value="radio1"/>
<input type="radio" name="group1" value="radio2"/>
<input type="radio" name="group1" value="radio3"/>
So, the parameter is group1 and then whichever radio button
is selected will pass the value.
\_ Well, this is what you would do for, say, a multiple choice
question or the like.
\_ What is your use case exactly?
\_ example: a page of 10 multiple choice questions.
idealy we want be able use an array to handle
them, instead of hardcoding the name.
\_ I wouldn't recommend this, but if you want to use an
array you could give each question-group the same name
and then make the value for each answer something like
q1_a2 (1 and 2 would be values from the question and
answer loops). Then you could retrieve every
answer by getting the parameter value array for the
parameter named "questions". An example entry would
be:
<input type="radio" name="questions" value="q1_a2"/>
But I'd rather name each question-group something
like q1 ... qn and then each answer in that group
a1 ... an and then just pull out the parameter values
using a loop of names q1 ... qn and stop when the
value for q_current is empty. |