| com.sun.rave.web.ui.component.MessageGroupBase
All known Subclasses: com.sun.rave.web.ui.component.MessageGroup,
MessageGroupBase | abstract public class MessageGroupBase extends javax.faces.component.UIComponentBase (Code) | | Use the ui:messageGroup tag to display a list of messages that are not (necessarily) associated with any single component.
HTML Elements and Layout
A message group consists of a list of messages.
Client Side Javascript Functions
none.
Examples
Example 1: An example showing how to show a list of global errors at the top of the page:
<ui:messageGroup showGlobalOnly="true"/>
<ui:staticText text="Validator checks that the value is between 0-10 inclusive. />
<ui:message for="form1:textTest1"/>
<ui:field id="textTest1" label="Enter a number:"
text="#{FieldTest.number}" validator="#{FieldTest.checkNumber}"/>
Auto-generated component class.
Do NOT modify; all changes
will be lost!
|
MessageGroupBase | public MessageGroupBase()(Code) | | Construct a new MessageGroupBase .
|
getFamily | public String getFamily()(Code) | | Return the identifier of the component family to which this
component belongs. This identifier, in conjunction with the value
of the rendererType property, may be used to select
the appropriate
Renderer for this component instance.
|
getStyle | public String getStyle()(Code) | | CSS style(s) to be applied when this component is rendered.
|
getStyleClass | public String getStyleClass()(Code) | | CSS style class(es) to be applied when this component is rendered.
|
getToolTip | public String getToolTip()(Code) | | Display the text as a tooltip for this component
|
isShowDetail | public boolean isShowDetail()(Code) | | Flag to determine whether to show the detail message.
|
isShowGlobalOnly | public boolean isShowGlobalOnly()(Code) | | Flag to determine whether to show the global message.
|
isShowSummary | public boolean isShowSummary()(Code) | | Flag to determine whether to show the summary message.
|
isVisible | public boolean isVisible()(Code) | | Use the visible attribute to indicate whether the component should be
viewable by the user in the rendered HTML page. If set to false, the
HTML code for the component is present in the page, but the component
is hidden with style attributes. By default, visible is set to true, so
HTML for the component HTML is included and visible to the user. If the
component is not visible, it can still be processed on subsequent form
submissions because the HTML is present.
|
restoreState | public void restoreState(FacesContext _context, Object _state)(Code) | | Restore the state of this component.
|
saveState | public Object saveState(FacesContext _context)(Code) | | Save the state of this component.
|
setVisible | public void setVisible(boolean visible)(Code) | | Use the visible attribute to indicate whether the component should be
viewable by the user in the rendered HTML page. If set to false, the
HTML code for the component is present in the page, but the component
is hidden with style attributes. By default, visible is set to true, so
HTML for the component HTML is included and visible to the user. If the
component is not visible, it can still be processed on subsequent form
submissions because the HTML is present.
See Also: MessageGroupBase.isVisible() |
|
|