JavaScript
Seamlessly connect between the front-end and your server back-end using JavaScript and CFML.
Lifecycle Hooks
CBWIRE gives you the opportunity to execute JavaScript during various events.
component.initialized
element.initialized
Called when Livewire initializes an individual element
element.updating
Called before Livewire updates an element during its DOM-diffing cycle after a network roundtrip
element.updated
Called after Livewire updates an element during its DOM-diffing cycle after a network roundtrip
element.removed
Called after Livewire removes an element during its DOM-diffing cycle
message.sent
Called when a Livewire update triggers a message sent to the server via AJAX
message.failed
Called if the message send fails for some reason
message.received
Called when a message has finished its roudtrip, but before Livewire updates the DOM
message.processed
Called after Livewire processes all side effects (including DOM-diffing) from a message
Interacting With Wires
You can interact with your Wires, calling Actions, setting Data Properties, and more, using cbwire.find from within your Wire Template. Once you have a reference to the Wire, you can interact with it using the methods below.
Last updated
Was this helpful?