Berkeley CSUA MOTD:Entry 28209
Berkeley CSUA MOTD
 
WIKI | FAQ | Tech FAQ
http://csua.com/feed/
2025/04/03 [General] UID:1000 Activity:popular
4/3     

2003/4/24 [Computer/SW/Languages/Web, Computer/SW/Languages/Misc] UID:28209 Activity:nil
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.
2025/04/03 [General] UID:1000 Activity:popular
4/3     

You may also be interested in these entries...
2013/4/9-5/18 [Computer/SW/Mail, Academia/Berkeley/CSUA] UID:54647 Activity:nil
4/8     What's a good free e-mail provider? I don't want to use Gmail,
        Yahoo, Outlook, or any of those sites with features I never use that
        track my personal info and keep changing their interface. I want just
        simple e-mail without privacy issues or all the baggage these large,
        for-profit companies are adding. I might even be willing to pay.
        Recommendations?
	...