| com.sun.rave.web.ui.component.MessageBase
All known Subclasses: com.sun.rave.web.ui.component.Message,
MessageBase | abstract public class MessageBase extends javax.faces.component.UIComponentBase (Code) | | Use the ui:message tag to display message associated with a component.
HTML Elements and Layout
A message consists of a summary and a detailed text.
Client Side Javascript Functions
none.
Examples
Example 1: An example showing how to display validation errors:
<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!
|
MessageBase | public MessageBase()(Code) | | Construct a new MessageBase .
|
getAlt | public String getAlt()(Code) | | Alternative text description used by screen reader tools
|
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.
|
getFor | public String getFor()(Code) | | Identifier of the component this message is associated with.
|
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.
|
getTabIndex | public int getTabIndex()(Code) | | The position of this component in the tabbing order sequence
|
isShowDetail | public boolean isShowDetail()(Code) | | Flag to determine whether to show the detail 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: MessageBase.isVisible() |
|
|