OverviewSince 3.3 The messages component renders all Faces messages, all Faces messages for a specific component, or all Faces messages not associated with any component.
Styling is done by predefined jQuery classes in theme stylesheets:
You can use the style and styleClass attributes to override the styles. Getting Started<ace:messages id="allMsgs"/>
Attributes
for: Identifier of the component for which to render error messages. Leave out or use "@all" to output global messages. To show messages for only those components in the view, use @inView. globalOnly: Flag indicating whether only global messages (that is, messages with no associated client identifier) should be rendered. style: CSS style(s) to be applied when this component is rendered. styleClass: Space-separated list of CSS style class(es) to be applied when this element is rendered. Event ListenersClient Behavior EventsJavaScript APIICEfaces 3.xThe client side component object is exposed through the global variable name specified in the widgetVar attribute. ICEfaces 4+The "widgetVar" attribute on the ACE components has been removed in ICEfaces 4 and in its place a new "ice.ace.instance()" client JavaScript object lookup API has been introduced. The reason for this change is to enable lazy-initialization of the ACE component JavaScript objects to improve runtime performance and reduce browser memory use. var widget = ice.ace.instance('frm:componentId);
Keyboard and ARIA SupportThe following ARIA roles are supported: alert. CSS ClassesThe following markup represents the basic HTML structure of the component and the CSS classes it uses. <!-- Root container --> <div class="ui-faces-messages ui-widget [user defined classes]" style="[user defined styles]"> <!-- First message --> <div class="ui-corner-all [ui-state-highlight | ui-state-error]"> <span class="ui-icon ui-icon-info"></span>Message </div> <!-- More messages... --> </div> Known IssuesNone. Additional Resources |
Messages
© Copyright 2021 ICEsoft Technologies Canada Corp.