Attributes |
Name | Required | Request-time | Type | Description |
id | false | false | java.lang.String | The developer-assigned ID of this component. The ID must be unique within the scope of the tag's enclosing naming container (e.g. h:form or f:subview). This value must be a static value. |
binding | false | false | java.lang.String | Identifies a backing bean property (of type UIComponent or appropriate subclass) to bind to this component instance. This value must be an EL expression. |
rendered | false | false | java.lang.String | A boolean value that indicates whether this component should be rendered. Default value: true. |
for | true | false | java.lang.String | An EL expression, returning a String, with the unique ID of the component for which messages should be displayed. This string has the same format as that accepted by the UIComponent.findComponent() method. |
showSummary | false | false | java.lang.String | An EL expression, returning a boolean, that controls whether the summary text of the associated messages is displayed. Default: true. |
showDetail | false | false | java.lang.String | An EL expression, returning a boolean, that controls whether the detail text of the associated messages is displayed. Default: false. |
dir | false | false | java.lang.String | HTML: The direction of text display, either 'ltr' (left-to-right) or 'rtl' (right-to-left). |
lang | false | false | java.lang.String | HTML: The base language of this document. |
style | false | false | java.lang.String | HTML: CSS styling instructions. |
title | false | false | java.lang.String | HTML: An advisory title for this element. Often used by the user agent as a tooltip. |
styleClass | false | false | java.lang.String | The CSS class for this element. Corresponds to the HTML 'class' attribute. |
onclick | false | false | java.lang.String | HTML: Script to be invoked when the element is clicked. |
ondblclick | false | false | java.lang.String | HTML: Script to be invoked when the element is double-clicked. |
onmousedown | false | false | java.lang.String | HTML: Script to be invoked when the pointing device is pressed over this element. |
onmouseup | false | false | java.lang.String | HTML: Script to be invoked when the pointing device is released over this element. |
onmouseover | false | false | java.lang.String | HTML: Script to be invoked when the pointing device is moved into this element. |
onmousemove | false | false | java.lang.String | HTML: Script to be invoked when the pointing device is moved while it is in this element. |
onmouseout | false | false | java.lang.String | HTML: Script to be invoked when the pointing device is moves out of this element. |
onkeypress | false | false | java.lang.String | HTML: Script to be invoked when a key is pressed over this element. |
onkeydown | false | false | java.lang.String | HTML: Script to be invoked when a key is pressed down over this element. |
onkeyup | false | false | java.lang.String | HTML: Script to be invoked when a key is released over this element. |
infoClass | false | false | java.lang.String | CSS class to be used for messages with severity "INFO". |
infoStyle | false | false | java.lang.String | CSS style to be used for messages with severity "INFO". |
warnClass | false | false | java.lang.String | CSS class to be used for messages with severity "WARN". |
warnStyle | false | false | java.lang.String | CSS style to be used for messages with severity "WARN". |
errorClass | false | false | java.lang.String | CSS class to be used for messages with severity "ERROR". |
errorStyle | false | false | java.lang.String | CSS style to be used for messages with severity "ERROR". |
fatalClass | false | false | java.lang.String | CSS class to be used for messages with severity "FATAL". |
fatalStyle | false | false | java.lang.String | CSS style to be used for messages with severity "FATAL". |
tooltip | false | false | java.lang.String | If true, the message summary will be rendered as a tooltip (i.e. HTML title attribute). |