coldbox-modules / cbwire

CBWIRE is a ColdBox module that makes building reactive, modern apps easy using HTML-over-the-wire technologies and CFML.
https://cbwire.ortusbooks.com
Other
28 stars 5 forks source link

Unable to access event and event methods such as event.buildLink() in templates #135

Closed grantcopley closed 8 months ago

grantcopley commented 9 months ago

The event object is not being passed to CBWIRE templates, so you are unable to do something like this:

MyComponent.cfm

<cfoutput>
    <a href="#event.buildLink( 'module:handler.action' )#">Click here</a>
</cfoutput>