Events
JSF form events can be split into two categories:
external - things that are emitted into JSF from outside world (app)
internal - things that are emitted from JSF to outside world (app)
You can listen on external events with schema.$events.listen
keyword.
For JSF to listen to itself there is in JsfBuilder
subject called onAnyEvent
. This subject emits all external and internal events, like onClick emit. You can also emit custom events for you own usage.
Example usage in layout:
You can also manually trigger any event call:
Subject interface:
Last updated
Was this helpful?