Insert Form Element: Check Box / Radio Box

Check Boxes and Radio Boxes allow visitors to select from one or more options which you predefine. On an online shopping site, an example use of Radio Boxes would be select a color of the item you're purchasing. A Check Box could also be used to indicate if you want your item gift wrapped.
Options
Type of BoxHere you can choose between:
Check Box
Radio Box
Name of BoxAn internal name for your input. This name will become a "variable" holding the state (checked/unchecked) of the box when the form is submitted. This name can also be used to access the form element through scripting. For groups of radio boxes, keep this name the same. In the following example, the three radio boxes on the top row all have the same name, meaning one of them can be selected at any one time. The second row of three radio boxes each have a different name, meaning they can all be selected at once:
Example
Value of BoxAllows you to enter a value that will be sent with the form if the check/radio box is selected
Box selected by defaultIs the check/radio box selected by default when the page loads?
Box is disabledIs the check/radio box disabled when the page loads. A "disabled" element cannot be changed by visitors to the page. (Scripts on your page can still access disabled elements and enable them as necessary)
EventsAttach scripted "events" which trigger upon certain user actions/events - Read More about Events
Style ClassAttach a previously defined Style Class to your check/radio boxes to further customize their appearance
StylesThe "Styles" button allows you to further customize the appearance of check boxes and radio boxes

Next Topic: Insert Form Element: Button >