META-INF.schema.entities.ajax_component_attributes.ent Maven / Gradle / Ivy
The newest version!
ajaxSingle
boolean
boolean attribute which provides possibility to limit JSF tree processing(decoding, conversion/validation, value applying)
to the component which send the request only
bypassUpdates
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
limitToList
boolean
If "true", then of all AJAX-rendered on the page components only those will be updated,
which ID's are passed to the "reRender" attribute of the describable component.
"false"-the default value-means that all components with ajaxRendered="true" will be updated.
reRender
java.lang.Object
Id['s] (in format of call UIComponent.findComponent()) of components, rendered in case of AjaxRequest caused by this component. Can be single id, comma-separated list of Id's, or EL Expression with array or Collection
process
java.lang.Object
Id['s] (in format of call UIComponent.findComponent()) of components, processed at the phases 2-5 in case of AjaxRequest caused by this component. Can be single id, comma-separated list of Id's, or EL Expression with array or Collection
status
java.lang.String
ID (in format of call UIComponent.findComponent()) of Request status component
eventsQueue
java.lang.String
Name of requests queue to avoid send next request before complete other from same event. Can be used to reduce number of requests of frequently events (key press, mouse move etc.)
requestDelay
int
Attribute defines the time (in ms.) that the request will be wait in the queue before it is ready to send.
When the delay time is over, the request will be sent to the server or removed if the newest 'similar' request is in a queue already
oncomplete
java.lang.String
The client side script method to be called after the request is completed
onbeforedomupdate
java.lang.String
The client side script method to be called before DOM is updated
focus
java.lang.String
id of element to set focus after request completed on client side
data
java.lang.Object
Serialized (on default with JSON) data passed on the client by a developer on AJAX request. It's accessible via "data.foo" syntax
ignoreDupResponses
boolean
Attribute allows to ignore an Ajax Response produced by a request if the newest 'similar' request is
in a queue already. ignoreDupResponses="true" does not cancel the request while it is processed on the server,
but just allows to avoid unnecessary updates on the client side if the response isn't actual now
timeout
int
Response waiting time on a particular request. If a response is not received during this time, the request is aborted
similarityGroupingId
java.lang.String
If there are any component requests with identical IDs then these requests will be grouped.