Web Developer's Virtual Library: Encyclopedia of Web Design Tutorials, Articles and Discussions


WDVL Newsletter

Active Server Pages
JSP/Java Servlets
Microsoft SQL Server
Daily Backup
Dedicated Servers
Streaming Audio/Video
24-hour Support    

jobs.webdeveloper.com

Hiermenus


e-commerce
Partner With Us















Developer Channel
FlashKit.com
JavaScript.com
JavaScriptSource
Developer Jobs
ScriptSearch
StreamingMediaWorld
Web Developer's Journal
Web Developer's Virtual Library
WebDeveloper.com
Webreference
Web Hosts
XMLfiles.com

internet.com
IT
Developer
Internet News
Small Business
Personal Technology

Search internet.com
Advertise
Corporate Info
Newsletters
Tech Jobs
E-mail Offers


The Check Box Widget

The Check Box Widget

  • Besides allowing the user to enter lines of text, you often want to give them the ability to select from a number of choices. One of the most familiar widgets for selecting choices is the Check Box. A check box can be set to either an "on" state or an "off" state by the user. Typically, the "on" state will look like a checked box or a filled in circle. A standard check box is shown below:

    Try it out...check it and uncheck it.

    Behind the scenes, the above check box was created with the following HTML code

        <FORM>
        <INPUT 	TYPE 	= "CHECKBOX"
    		NAME 	= "check"
    		>
        </FORM>
    

  • Notice that the Check Box widget is specified as an input TYPE of "CHECKBOX".

  • The Check Box widget also has several other attributes that affect how it works. The following table outlines them:

Attribute Description
TYPE Specifies the type of interface widget. For a check box widget, you use "CHECKBOX"
NAME Specifies the variable name associated with this widget
VALUE Specifies the VALUE that will be sent in the URL encoded string if the check box is checked. If it is not checked, neither the name nor the value will be part of the URL encoded string.
CHECKED Specifies that the check box will be checked by default.

  • Let's take a closer look at each of these attributes.

The NAME and VALUE attributes

  • The NAME and VALUE attributes are essential and allow you to specify the name and value portion of the name/value pair that is sent as part of the URL encoded string. For example, consider the following checkboxes:

    Apples
    Oranges

    Here is the code that we used to make them.

        <FORM>
        <TABLE BORDER = "1">
        <TR>
        <TD>Apples</TD>
        <TD><INPUT TYPE = "CHECKBOX" 
                   NAME = "apple_is_checked" 
                   VALUE= "yes"
    	       >
        </TD>
        </TR>
    
        <TR>
        <TD>Oranges</TD>
        <TD><INPUT TYPE = "CHECKBOX" 
                   NAME = "orange_is_checked" 
                   VALUE= "yes"
    	       >
        </TD>
        </TR>
        </TABLE>
        </FORM>
    

  • Notice that if you checked both check boxes and submitted this data over the web, the URL encoded string would look like the following:

        apple_is_checked=yes&orange_is_checked=yes
        

The CHECKED Attribute

  • The CHECKED attribute allows you to set the state of the check box to "on" by default. Take a look at the following example:

    Download JDK 1.1.4 for Java
    Download the AFC for Java

    And here is the code that we used to make those checkboxes.

    	
        <FORM>
        <TABLE BORDER = "1">
        <TR>
        <TD>Download JDK 1.1.4 for Java</TD>
        <TD><INPUT TYPE = "CHECKBOX" 
                   NAME = "download_jdk" 
                   VALUE = "yes"
    	       >
        </TD>
        </TR>
    
        <TR>
        <TD>Download the AFC for Java</TD>
        <TD><INPUT TYPE = "CHECKBOX" 
                   NAME = "download_afc" 
                   VALUE = "yes" CHECKED
    	       >
        </TD>
        </TR>
        </TABLE>
        </FORM>
    

The Password Widget
Table of Contents
The Radio Widget


Up to => Home / Authoring / Scripting / Tutorial




Jupiter Online Media: internet.comearthweb.comDevx.commediabistro.comGraphics.com

Search:

Jupitermedia Corporation has two divisions: Jupiterimages and Jupiter Online Media

Jupitermedia Corporate Info


Legal Notices, Licensing, & Permissions, Privacy Policy.

Web Hosting | Newsletters | Tech Jobs | Shopping | E-mail Offers