o

Tag commandScript

Component Information 
InfoValue
Component Typeorg.omnifaces.component.script.CommandScript
Handler ClassNone
Renderer TypeNone
DescriptionNone
Attributes 
NameRequiredTypeDescription
idfalsejavax.el.ValueExpression
(must evaluate to java.lang.String)
The component identifier for this component. This value must be unique within the closest parent component that is a naming container.
renderedfalsejavax.el.ValueExpression
(must evaluate to boolean)
Flag indicating whether or not this component should be rendered (during Render Response Phase), or processed on any subsequent form submit. The default value for this property is true.
bindingfalsejavax.el.ValueExpression
(must evaluate to javax.faces.component.UIComponent)
The ValueExpression linking this component to a property in a backing bean.
nametruejavax.el.ValueExpression
(must evaluate to java.lang.String)
The script function name.
executefalsejavax.el.ValueExpression
(must evaluate to java.lang.String)
A space separated string of client IDs to process on ajax request.
renderfalsejavax.el.ValueExpression
(must evaluate to java.lang.String)
A space separated string of client IDs to update on ajax response.
onbeginfalsejavax.el.ValueExpression
(must evaluate to java.lang.String)
A script to execute before ajax request is fired.
oncompletefalsejavax.el.ValueExpression
(must evaluate to java.lang.String)
A script to execute after ajax response is processed.
autorunfalsejavax.el.ValueExpression
(must evaluate to boolean)
Whether the command script should automatically run inline during page load. Note that this thus runs immediately at the moment the script is been interpreted by the web browser and thus not in end of HTML body or during window load event. So if the script logic depends on the HTML DOM tree composition, then it will depend on location of the command script component itself.
actionfalsejavax.el.MethodExpression
(signature must match java.lang.Object action())
MethodExpression representing the application action to invoke when this component is activated by the user. The expression must evaluate to a public method that takes no parameters, and returns an Object (the toString() of which is called to derive the logical outcome) which is passed to the NavigationHandler for this application.
actionListenerfalsejavax.el.MethodExpression
(signature must match void actionListener(javax.faces.event.ActionEvent) )
MethodExpression representing an action listener method that will be notified when this component is activated by the user. The expression must evaluate to a public method that takes an ActionEvent parameter, with a return type of void, or to a public method that takes no arguments with a return type of void. In the latter case, the method has no way of easily knowing where the event came from, but this can be useful in cases where a notification is needed that "some action happened".
immediatefalsejavax.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.

Output generated by Vdldoc View Declaration Language Documentation Generator.