|
| < Day Day Up > |
|
The <html:multibox /> tag is used to generate an HTML <input> element of type checkbox. The <html:multibox /> tag has a body type of JSP and supports 26 attributes, described in Table 16.15.
| Attribute | Description |
|---|---|
| property | Used to identify a data member of the bean named by the name attribute that contains the java.util.Map object of parameters. (required) |
| accessKey | Identifies a keyboard character to be used to immediately move focus to the HTML element defined by this tag. (optional) |
| alt | Defines an alternate text string for this element. (optional) |
| altKey | Defines a resources key (to be retrieved from a resource bundle) that references an alternate text string for this element. (optional) |
| disabled | If set to true, causes this HTML input element to be disabled. The default value is false. (optional) |
| name | Identifies a scripting variable referencing a java.util.Map object, whose collection of key/value pairs is used as the HTTP request parameter augmenting the redirected request. (optional) |
| onblur | Specifies a JavaScript function that is executed when the containing element loses its focus. (optional) |
| onchange | Specifies a JavaScript function that is executed when this element loses input focus and its value has changed. (optional) |
| onclick | Specifies a JavaScript function that is executed when this element receives a mouse click. (optional) |
| ondblclick | Specifies a JavaScript function that is executed when this element receives a mouse double-click. (optional) |
| onfocus | Specifies a JavaScript function that is executed when this element receives input focus. (optional) |
| onkeydown | Specifies a JavaScript function that is executed when this element has focus and a key is pressed. (optional) |
| onkeypress | Specifies a JavaScript function that is executed when this element has focus and a key is pressed and released. (optional) |
| onkeyup | Specifies a JavaScript function that is executed when this element has focus and a key is released. (optional) |
| onmousedown | Specifies a JavaScript function that is executed when this element is under the mouse pointer and a mouse button is pressed. (optional) |
| onmousemove | Specifies a JavaScript function that is executed when this element is under the mouse pointer and the pointer is moved. (optional) |
| onmouseout | Specifies a JavaScript function that is executed when this element is under the mouse pointer but the pointer is then moved outside the element. (optional) |
| onmouseover | Specifies a JavaScript function that is executed when this element is not under the mouse pointer but the pointer is then moved inside the element. (optional) |
| onmouseup | Specifies a JavaScript function that is executed when this element is under the mouse pointer and a mouse button is released. (optional) |
| style | Specifies a Cascading Style Sheet style to apply to this HTML element. (optional) |
| styleClass | Specifies a Cascading Style Sheet class to apply to this HTML element. (optional) |
| styleId | Specifies an HTML identifier to be associated with this HTML element. (optional) |
| tabindex | Identifies the tab order of this element in relation to the other elements of the containing Form. (optional) |
| title | Specifies the advisory title for this HTML element. (required) |
| titleKey | Specifies a resources key (to be retrieved from a resource bundle) that references a title string for this element. (optional) |
| value | Represents the value that will be submitted if this checkbox is selected. (optional) |
|
| < Day Day Up > |
|