Attributes |
Name | Required | Request-time | Type | Description |
id | false | true | java.lang.String |
expose id, enables interaction with JavaScript
|
flavor | false | true | java.lang.String |
styling of the button
choices:
standard
a standard form button. if you use it
you should specify "caption"
image
an image-button. if you use it you
should specify "src" and
"alt"
modern
a fancy button according to HTML4; dont
use if no all of your users have got
5th-generation browsers! You may embed
any code into this tag. (see docu or
www.w3.org)
|
showAlways | false | true | java.lang.String |
From v_1_1_3pr1:
If false (which is the default setting), the
input button will be rendered
only in insert mode -- such as through a
NavNewEvent.
For previously generated list_and_single.jsp
or self coded pages,
the attribute showAlways="true" should be
added to the insertButtonTag,
unless it will be used in insert mode.
<db:insertButton caption="Insert new
..."
styleClass="clsButtonStyle"
showAlways="true"/>
|
caption | false | true | java.lang.String |
caption of the button (use it if the chosen
flavor is "standard")
|
src | false | true | java.lang.String |
source of the image (use it if the chosen flavor
is "image")
|
alt | false | true | java.lang.String |
alternative to image (use it if the chosen
flavor is "image")
|
border | false | true | java.lang.String | set html border attribute |
followUp | false | true | java.lang.String |
site to be invoked after this button has
been clicked and the associated actions are
done
this attribute over-rules the
followUp-attribute of the parent form(s)!
|
followUpOnError | false | true | java.lang.String |
site to be invoked after this button has
been clicked and the associated actions are
done
this attribute over-rules the
followUpOnError-attribute of the parent
form(s)!
|
accessKey | false | true | java.lang.String |
The keyboard character used to move focus
immediately to thiselement.
|
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.
|
onSelect | false | true | java.lang.String |
JavaScipt event hanlder executed when the user
selects some text
|
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.
|
style | false | true | java.lang.String |
CSS styles to be applied to this HTML element.
|
styleClass | false | true | java.lang.String |
CSS stylesheet class 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.
|