Professional Jakarta Struts (Programmer to Programmer)
|
| < Day Day Up > |
|
<html:cancel />
The <html:cancel /> tag is used to render an HTML <input> element with an input type of cancel. The<html:cancel /> has a body type of JSP and supports 25 attributes, as shown in Table 16.3.
| Attribute | Description |
|---|---|
| accessKey | Identifies a keyboard character to be used to immediately move focus to the HTML input component defined by this tag. (optional) |
| alt | Defines an alternate text string for this input component. (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) |
| onblur | Specifies a JavaScript function that is executed when the containing input component 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) |
| property | Identifies the name of the input field being processed. (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 | Specifies the label to be placed on this button. The body of this tag can also be used for the button label. (optional) |
The <html:cancel /> tag must be nested inside the body of an <html:form /> tag.
|
| < Day Day Up > |
|