The Radio Group dialog box creates a group of radio buttons for use in an HTML form.
If you want the radio buttons to pass parameters back to the server, the parameters will be associated with the name. For example, if you name the group myGroup
and set the form method to GET
(that is, you want the form to pass URL parameters instead of form parameters when the user clicks the submit button), then the expression myGroup="
CheckedValue
"
will be passed in the URL to the server.
If you want, enter a label and checked value for the new button.
You can enter a static value or you can specify a dynamic one by clicking the lightning bolt icon beside the box and selecting a recordset containing possible checked values. In either case, the value you specify should match the checked value of one of the radio buttons in the group. To view the checked values of the radio buttons, select each radio button and open its Property inspector (Window > Properties).
Dreamweaver can lay out the buttons using line breaks or a table. If you select the table option, Dreamweaver creates a single-column table, and places the radio buttons on the left and the labels on the right.
Dreamweaver inserts the radio button group in the HTML form. If you havent inserted a form on your page yet, Dreamweaver inserts one for you. You can use any layout or formatting tool to fine-tune the layout of the group.