The <a4j:ajax> behavior allows Ajax capability to be added to a non-Ajax component. The non-Ajax component must implement the ClientBehaviorHolder interface for all the event attributes that support behavior rendering.
@author Anton BelevichInfo | Value |
---|---|
Behavior ID | org.ajax4jsf.behavior.Ajax |
Handler Class | org.richfaces.view.facelets.html.AjaxHandler |
Description | The <a4j:ajax> behavior allows Ajax capability to be added to a non-Ajax component. The non-Ajax component must implement the ClientBehaviorHolder interface for all the event attributes that support behavior rendering. @author Anton Belevich |
Name | Required | Type | Description |
---|---|---|---|
bypassUpdates |
false
| javax.el.ValueExpression
(must evaluate to boolean )
| If "true", after process validations phase it skips updates of model beans on a force render response. It can be used for validating components input |
data |
false
| javax.el.ValueExpression
(must evaluate to java.lang.Object )
| Serialized (on default with JSON) data passed to the client by a developer on an AJAX request. It's accessible via "event.data" syntax. Both primitive types and complex types such as arrays and collections can be serialized and used with data |
disabled |
false
| javax.el.ValueExpression
(must evaluate to boolean )
| If "true", do not initiate an ajax request when the associated event is observed |
event |
false
| javax.el.ValueExpression
(must evaluate to java.lang.String )
| Name of JavaScript event property (click, change, etc.) of parent component that triggers the behavior. If the event attribute is not defined, the behavior is triggered on the event that normally provides interaction behavior for the parent component |
execute |
false
| javax.el.ValueExpression
(must evaluate to java.lang.Object )
| Ids of components that will participate in the "execute" portion of the Request Processing Lifecycle. Can be a single id, a space or comma separated list of Id's, or an EL Expression evaluating to an array or Collection. Any of the keywords "@this", "@form", "@all", "@none", "@region" may be specified in the identifier list. Some components make use of additional keywords |
immediate |
false
| javax.el.ValueExpression
(must evaluate to boolean )
| Flag indicating that, if this component is activated by the user, notifications should be delivered to interested listeners and actions immediately (that is, during Apply Request Values phase) rather than waiting until Invoke Application phase. |
limitRender |
false
| javax.el.ValueExpression
(must evaluate to boolean )
| If "true", render only those ids specified in the "render" attribute, forgoing the render of the auto-rendered panels |
listener |
false
| javax.el.ValueExpression
(must evaluate to javax.el.MethodExpression )
| Method expression referencing a method that will be called when an AjaxBehaviorEvent has been broadcast for the listener. |
onbeforedomupdate |
false
| javax.el.ValueExpression
(must evaluate to java.lang.String )
| The client-side script method to be called after the ajax response comes back, but before the DOM is updated |
onbeforesubmit |
false
| javax.el.ValueExpression
(must evaluate to java.lang.String )
| The client-side script method to be called before the AJAX request is submitted |
onbegin |
false
| javax.el.ValueExpression
(must evaluate to java.lang.String )
| The client-side script method to be called before an ajax request. |
oncomplete |
false
| javax.el.ValueExpression
(must evaluate to java.lang.String )
| The client-side script method to be called after the DOM is updated |
onerror |
false
| javax.el.ValueExpression
(must evaluate to java.lang.String )
| The client-side script method to be called when an error has occurred during Ajax communications |
queueId |
false
| javax.el.ValueExpression
(must evaluate to java.lang.String )
| Identify the name of the destination queue |
render |
false
| javax.el.ValueExpression
(must evaluate to java.lang.Object )
| Ids of components that will participate in the "render" portion of the Request Processing Lifecycle. Can be a single id, a space or comma separated list of Id's, or an EL Expression evaluating to an array or Collection. Any of the keywords "@this", "@form", "@all", "@none", "@region" may be specified in the identifier list. Some components make use of additional keywords |
resetValues |
false
| javax.el.ValueExpression
(must evaluate to boolean )
| If true, indicate that this particular Ajax transaction is a value reset transaction. This will cause resetValue() to be called on any EditableValueHolder instances encountered as a result of this ajax transaction. If not specified, or the value is false, no such indication is made. |
status |
false
| javax.el.ValueExpression
(must evaluate to java.lang.String )
| Name of the request status component that will indicate the status of the Ajax request |
Output generated by Vdldoc View Declaration Language Documentation Generator.