id |
Unique identifier of the component in a namingContainer.
|
rendered |
Boolean value to specify the rendering of the component, when set to false component will not be rendered.
|
binding |
An EL expression referring to a server side UIComponent instance in a backing bean.
|
value |
Label of the component.
|
actionListener |
An actionlistener to process when command is executed.
|
action |
A method expression or a string outcome to process when command is executed.
|
immediate |
Boolean value that determines the phaseId of the action event, when true actions are processed at "Apply Request Values", when false at "Invoke Application" phase.
|
name |
Name of the command.
|
update |
Component(s) to update with ajax.
|
process |
Component(s) to process partially instead of whole view.
|
onstart |
Javascript handler to execute before ajax request is begins.
|
oncomplete |
Javascript handler to execute when ajax request is completed.
|
onerror |
Javascript handler to execute when ajax request fails.
|
onsuccess |
Javascript handler to execute when ajax request succeeds.
|
global |
Global ajax requests are listened by ajaxStatus component, setting global to false will not trigger ajaxStatus. Default value: true.
|
async |
When set to true, ajax requests are not queued. Default value: false.
|
partialSubmit |
When enabled, only values related to partially processed components would be serialized for ajax instead of whole form.
|
autoRun |
When set to true, command will be invoked on page load.
|
ignoreAutoUpdate |
If true, components which autoUpdate="true" will not be updated for this request. If not specified, or the value is false, no such indication is made.
|
partialSubmitFilter |
Selector to use when partial submit is on, default is ":input" to select all descendant inputs of a partially processed components.
|
ignoreComponentNotFound |
If true, unresolvable components referenced in the update/process attribute are ignored. Default is 'false' and therefore a ComponentNotFoundException will be thrown.
|