The BEANMETHODINVOKER is a server side, invisible component. It allows to place some call of an actionListener into the request processing of the current dialog. The call is executed within a certain phase of the request processing according to the normal JSF phase model of processing a request.
You may use this component if you want to make sure that a certain method is always called when a request is processed.
Typically used attributes
All attributes are
Used inside: BEANPROCESSING, CONTENTPANE, PANE
Binding to server side method that processes the events coming from this component.
The attribute value must be an expression.
#{methodBinding} | Method binding |
Name of macro that is used for generating certain attributes of this component. Please pay attention: the value of this attribute is read one time for each control and cannot be changed afterwards.
The attribute value must not be changed once the component is created.
Comment that can be asigned to any component. The comment is not operationally used.
Any text | Any text |
Configuration information that is attached to this component. This information is not functionally used by CaptainCasa, but may be used for any application specific purpose.
Java Server Faces phase in which the actionListener is executed.
updateBegin | Begin of update phase |
updateEnd | End of update phase |
invokeBegin | Begin of invoke phase |
invokeEnd | End of invoke phase |
renderBegin | Begin of invoke phase |
renderEnd | End of invoke phase |
Reference to an outside object that is the content behind the component. E.g. a field is representing a certain field of a database table: in this case you could define the value table;column. The reference plays a siginficant role within the attributemacro management.
The attribute value must not be changed once the component is created.
ref | One reference |
ref1;ref2 | Two references |
ref1;ref2;ref3 | Three references |
Flag that indicated if this component is rendered at all. If set to false then the component is not rendered - there is no component data sent to the client.
The attribute value must be an expression.
true | Component is rendered (default) |
false | Component is not rendered |