| Attributes |
| Name | Required | Request-time | Type | Description |
| accesskey | no | true | java.lang.String | Access key that, when pressed, transfers focus to this component. |
| action | no | true | javax.el.MethodExpression | MethodExpression representing the application action to invoke when this component is activated by the user. The expression must evaluate to a public method that takes no parameters, and returns an Object (the toString() of which is called to derive the logical outcome) which is passed to the NavigationHandler for this application. |
| actionListener | no | true | javax.el.MethodExpression | MethodExpression representing an action listener method that will be notified when this component is activated by the user. The expression must evaluate to a public method that takes an ActionEvent parameter, with a return type of void, or to a public method that takes no arguments with a return type of void. In the latter case, the method has no way of easily knowing where the event came from, but this can be useful in cases where a notification is needed that "some action happened". |
| binding | no | true | javax.el.ValueExpression | Using an EL expression, bind the component reference to a bean property, so that the component may be accessed in the bean. |
| charset | no | true | java.lang.String | Renders the provided value as an HTML attribute with the same name on the root element of the component. |
| coords | no | true | java.lang.String | Renders the provided value as an HTML attribute with the same name on the root element of the component. |
| dir | no | true | java.lang.String | Renders the provided value as an HTML attribute with the same name on the root element of the component. |
| disabled | no | true | boolean | If true, clicking the button does not send a request to the server, and also no page is loaded if href attribute was specified. Default = 'false'. |
| href | no | true | java.lang.String | Href attribute of the anchor element. If specified and actionListener is absent, linkButton works as a normal anchor. If specified and actionListener is present, linkButton works as AJAX event source, but href may be opened in a new tab or window. |
| hrefLang | no | true | java.lang.String | Standard HTML href language attribute. |
| id | no | true | java.lang.String | The component identifier for this component. This value must be unique within the closest parent component that is a naming container. |
| immediate | no | true | boolean | Flag indicating that, if this component is activated by the user, notifications should be delivered to interested listeners and actions immediately (that is, during Apply Request Values phase) rather than waiting until Invoke Application phase. Default = 'false'. |
| onblur | no | true | java.lang.String | Renders the provided value as an HTML attribute with the same name on the root element of the component. |
| onclick | no | true | java.lang.String | Renders the provided value as an HTML attribute with the same name on the root element of the component. |
| ondblclick | no | true | java.lang.String | Renders the provided value as an HTML attribute with the same name on the root element of the component. |
| onfocus | no | true | java.lang.String | Renders the provided value as an HTML attribute with the same name on the root element of the component. |
| onkeydown | no | true | java.lang.String | Renders the provided value as an HTML attribute with the same name on the root element of the component. |
| onkeypress | no | true | java.lang.String | Renders the provided value as an HTML attribute with the same name on the root element of the component. |
| onkeyup | no | true | java.lang.String | Renders the provided value as an HTML attribute with the same name on the root element of the component. |
| onmousedown | no | true | java.lang.String | Renders the provided value as an HTML attribute with the same name on the root element of the component. |
| onmousemove | no | true | java.lang.String | Renders the provided value as an HTML attribute with the same name on the root element of the component. |
| onmouseout | no | true | java.lang.String | Renders the provided value as an HTML attribute with the same name on the root element of the component. |
| onmouseover | no | true | java.lang.String | Renders the provided value as an HTML attribute with the same name on the root element of the component. |
| onmouseup | no | true | java.lang.String | Renders the provided value as an HTML attribute with the same name on the root element of the component. |
| rel | no | true | java.lang.String | Renders the provided value as an HTML attribute with the same name on the root element of the component. |
| rendered | no | true | boolean | Return true if this component (and its children) should be rendered during the Render Response phase of the request processing lifecycle. Default = 'true'. |
| rev | no | true | java.lang.String | Renders the provided value as an HTML attribute with the same name on the root element of the component. |
| shape | no | true | java.lang.String | Renders the provided value as an HTML attribute with the same name on the root element of the component. |
| style | no | true | java.lang.String | The inline style of the component, rendered on the root div of the component. |
| styleClass | no | true | java.lang.String | The CSS style class of the component, rendered on the root div of the component. |
| tabindex | no | true | java.lang.Integer | Tabindex of the component. |
| target | no | true | java.lang.String | If the link is a traditional anchor then this is the traditional target attribute. |
| title | no | true | java.lang.String | Renders the provided value as an HTML attribute with the same name on the root element of the component. |
| type | no | true | java.lang.String | Specifies the button type. The possible values are 'button', 'clear' and 'reset'. The 'button' type is the original and standard mode, where the button submits the form when activated or opens a link. If the type is 'clear', the component acts in a special way: the button will act in a client-side mode, clearing all fields and components in the form it is contained in. If the type is 'reset', the component will reset all the input elements and components to their original values at the time they were loaded. The button will not submit the form in the 'clear' and 'reset' modes, unless the component has a listener or an ajax event attached to it. Default = 'button'. |
| value | no | true | java.lang.Object | This property defines the link text visible in the component. Default = 'Default Anchor Label'. |