cfoRaiseEvent
Summary:
"Raises" an event by adding an entry into the request.cfo.handlerPool structure. These
events can then be recognized and used by the cfoInvokeMethod tag.
Attributes:
Attribute |
Description |
Default |
Required |
EVENTNAME |
The name of the event. |
|
Yes |
Examples:
This basic example shows how the cfoRaiseEvent/cfoInvokeMethod tag combo can be used inside your
site's design structure to create powerful, flexible designs.
<!--- Standard HTML code in the Page class' showHeader method --->
<cf_cfoRaiseEvent eventName="navigationStart">
<!--- more stuff here --->
<!--- An example public page on your site --->
<cf_cfoInvokeMethod method="UIElement.Form.showInput" onEvent="navigationStart">
<cf_cfoCreateObject class="UIElement.Page">
<cf_cfoInvokeMethod method="aPage.showHeader">
|