Overview
Since 4.1
The ace:clientValidateRequired component validates that enclosing component has had a non-empty value entered into it.
 | See the ICEfaces Showcase Live Demo of this component, complete with source code. |
Getting Started
<html ... xmlns:ace="http://www.icefaces.org/icefaces/components">
<h:body>
<h:form>
<ace:textEntry id="textEntry1" value="#{clientValidateRequiredBean.value1}"
label="Amount" labelPosition="left" size="8">
<ace:clientValidateRequired />
</ace:textEntry>
...
</h:form>
...
</h:body>
</html>
Attributes
 | TagLib Documentation This section covers attributes involved in the typical use-cases for this component. For reference, the complete taglib documentation for this component is available here. |
enabled can enable or disable the validation. By default validation is enabled (value is true).
Validation Behaviour
- Client validation occurs initially when the component value is attempted to be submitted to the server, either via an ace:ajax partial-submit or a full form submit. If the client validation fails the submit to the server is aborted and the appropriate error message is displayed in an associated ace:message, ace:messages, or ace:growlMessages component (without requiring a server-roundtrip). Thus, a form submit with multiple components is processed atomically and will be completely aborted if any of the components within it fail client validation.
- Before submitting an entered component value the first time (either via full form submit, or an ace:ajax partial-submit), the user can tab through components in the form without triggering annoying validation messages - they won't get bugged before having the chance to actually enter a correct value.
- However, once a component is marked invalid by a previous validation failure, it is eagerly validated: As soon as the user has entered the necessary value, the error message is removed, without requiring a form submit.
- Client validation supports the "immediate='true'" attribute on ace:pushButton and ace:linkButton. When "immediate='true'" the button submit will occur regardless of whether one or more components in the form are failing client validation.
Event Listeners
No direct event listener is associated with this component.
Client Behavior Events
No direct client behavior is associated with this component.
JavaScript API
Not applicable.
Keyboard and ARIA Support
Not applicable.
CSS Classes
Not applicable.
Known Issues
- Client Validation is not supported with the ace:maskedEntry component.
Additional Resources
None.