_events option description
Description |
An object containing key/value pairs that define the events the component will fire: the keys are the event names, the values define the type of the event (see Infusion Event System for information on the different event types). |
---|---|
Notes |
The Framework will create event firers for the listed events. It is the responsibility of the component to fire the events at the appropriate times. |
Example Definition |
fluid.defaults("component.name", { events: { onSave: "preventable", onReady: null }, ... }); |
Example Override |
N/A |
See also |