[Mailman-Developers] [ mailman-Feature Requests-670171 ] Adding [label] tag to HTML pages

SourceForge.net noreply at sourceforge.net
Fri Jan 17 22:28:21 EST 2003


Feature Requests item #670171, was opened at 2003-01-18 07:28
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=350103&aid=670171&group_id=103

Category: None
Group: None
Status: Open
Resolution: None
Priority: 5
Submitted By: Benjamin Sonntag (benjaminsonntag)
Assigned to: Nobody/Anonymous (nobody)
Summary: Adding [label] tag to HTML pages

Initial Comment:
The <label> tag allow a text to be associated with a
form component.

eg. : 

do you like pizza ? <br>
Yes: <input type="radio" name="geek" value="1"><br>
No: <input type="radio" name="geek" value="0"><br>

The problem is that those radiobutton MUST be clicked
precisely, you cannot click on the "yes" or "no" text
associated with the radio button. In fact they are only
graphically associated. Since HTML 2.0, you can
associate a text to a field form. This tag, named
"label" is known by all major browsers (mozilla, ie,
ns...) 

So you may add a LABEL tag for each checkbox or radio
button to mailman's web pages : 

eg. : 

 <td>Languages supported by this list. </td>
      <td>
          <table CELLSPACING="5">
            <tr>
              <td><input name="available_languages"
type="CHECKBOX" value="cs" >Czech</td>
            </tr>
            <tr>
              <td><input name="available_languages"
type="CHECKBOX" value="de" >German</td>
            </tr>
         
will become : 



 <td>Languages supported by this list. </td>
      <td>
          <table CELLSPACING="5">
            <tr>
              <td><input name="available_languages"
type="CHECKBOX" value="cs" id="alcs"><label
for="alcs">Czech</label></td>
            </tr>
            <tr>
              <td><input name="available_languages"
type="CHECKBOX" value="de" id="alde"><label
for="alde">German</label></td>
            </tr>


So, the user may click on the word "German" to
check/uncheck the associated checkbox.



----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=350103&aid=670171&group_id=103



More information about the Mailman-Developers mailing list