JSP CUSTOM TAG LIBRARIES


radio tag
In the context of the form tag, enables you to edit the value of an item in a document using a radio input control. This tag interacts with the form in either read mode (to generate a read only value) or edit mode (to generate an HTML <input> tag). In edit mode, this tag automatically updates the corresponding item values in the current document when the document is saved.

This tag interacts with the HTML value attribute of the input tag, it does not overwrite it. This tag is only valid for single value fields. Each of the input tags for the same radio group must use the same value for both the name and itemname attributes. If the value of the item is the same as the specified value attribute, the radio button is selected. Otherwise it is not selected.

When the document is saved, the value of the selected radio button is written into the item as the item value.

You cannot use the validation tags to validate user input. No error is thrown, but no validation is performed. If you want to ensure that a value is selected, provide a default value in the "value" attribute.

Contexts

Valid in:


Syntax
Attributes

bundle


clientvalidate
datatype
default
itemname
labelbefore
labelkey
locale
name
See the Common Domino JSP tag attributes section for definitions of debug, onfailure, and time.

HTML Attributes

Domino supports the following HTML tag attributes:

value


See the Common HTML tag attributes section for definitions of the following:
See Also