| Attributes |
| Name | Required | Request-time | Type | Description |
| id | false | true | java.lang.String |
Identification which can be used to
'pinpoint' dbForms fields for use in
JavaScript methods. Note: Not supported by
all browser!
Example:
<db:radio
fieldName="FIELD3"
id="radioGroup">
</db:radio>
|
| fieldName | true | true | java.lang.String |
name of the field this tag references to
|
| defaultValue | false | true | java.lang.String |
default field name to use if the specified field
is empty.
|
| growDirection | false | true | java.lang.String |
for radio groups only: in which direction should
the group grow: valid values are "horizontal"
and "vertical"
|
| growSize | false | true | java.lang.String |
Allows a developer to limit the number of
elements per row by generating [TABLE] [TR] [TD]
html tags.
|
| accessKey | false | true | java.lang.String |
The keyboard character used to move focus
immediately to thiselement.
|
| readOnly | false | true | java.lang.String |
Rendering of read-only html widgets
WARNING: This is not terribly secure as it
becomes editable if javascript is disabled
in the browser. A More secure option is not
placing an update button on your form.
|
| onBlur | false | true | java.lang.String |
JavaScript event handler executed when this
element loses inputfocus.
|
| onChange | false | true | java.lang.String |
JavaScript event handler executed when this
element loses inputfocus and its value has
changed.
|
| onClick | false | true | java.lang.String |
JavaScript event handler executed when this
element receives amouse click.
|
| onDblClick | false | true | java.lang.String |
JavaScript event handler executed when this
element receives amouse double click.
|
| onFocus | false | true | java.lang.String |
JavaScript event handler executed when this
element receives inputfocus.
|
| onKeyDown | false | true | java.lang.String |
JavaScript event handler executed when this
element has focus and akey is depressed.
|
| onKeyPress | false | true | java.lang.String |
JavaScript event handler executed when this
element has focus and akey is depressed and
released.
|
| onKeyUp | false | true | java.lang.String |
JavaScript event handler executed when this
element has focus and akey is released.
|
| onMouseDown | false | true | java.lang.String |
JavaScript event handler executed when this
element is under the mousepointer and a mouse
button is depressed.
|
| onMouseMove | false | true | java.lang.String |
JavaScript event handler executed when this
element is under themouse pointer and the
pointer is moved.
|
| onMouseOut | false | true | java.lang.String |
JavaScript event handler executed when this
element was under themouse pointer but the
pointer was moved outside the element.
|
| onMouseOver | false | true | java.lang.String |
JavaScript event handler executed when this
element was not underthe mouse pointer but the
pointer is moved inside the element.
|
| onMouseUp | false | true | java.lang.String |
JavaScript event handler executed when this
element is under themouse pointer and a mouse
button is released.
|
| onSelect | false | true | java.lang.String |
JavaScipt event hanlder executed when the user
selects some text
|
| styleClass | false | true | java.lang.String |
CSS stylesheet class to be applied to this HTML
element.
|
| readOnlyStyleClass | false | true | java.lang.String |
CSS stylesheet class to be applied to this HTML
element (read-only mode).
|
| style | false | true | java.lang.String |
CSS styles to be applied to this HTML element.
|
| title | false | true | java.lang.String |
this defines the "title" attribute for the HTML4
tag.
|
| tabIndex | false | true | java.lang.String |
The tab order (ascending positive integers) for
this element.
|