Class type Ext_AbstractComponent.events


class type events = object .. end
Inherits
method activate : 'a.
(t Js.t -> 'a Js.t -> unit) Js.callback
Js.writeonly_prop

Fires after a Component has been visually activated.

Parameters:


method added : 'b 'c.
(t Js.t ->
'b Js.t -> Js.number Js.t -> 'c Js.t -> unit)
Js.callback Js.writeonly_prop

Fires after a Component had been added to a Container.

Parameters:


method afterrender : 'd.
(t Js.t -> 'd Js.t -> unit) Js.callback
Js.writeonly_prop

Fires after the component rendering is finished.

The afterrender event is fired after this Component has been rendered, been postprocessed by any afterRender method defined for the Component.

Parameters:


method beforeactivate : 'e.
(t Js.t -> 'e Js.t -> unit) Js.callback
Js.writeonly_prop

Fires before a Component has been visually activated. Returning false from an event listener can prevent the activate from occurring.

Parameters:


method beforedeactivate : 'f.
(t Js.t -> 'f Js.t -> unit) Js.callback
Js.writeonly_prop

Fires before a Component has been visually deactivated. Returning false from an event listener can prevent the deactivate from occurring.

Parameters:


method beforedestroy : 'g.
(t Js.t -> 'g Js.t -> unit) Js.callback
Js.writeonly_prop

Fires before the component is destroyed. Return false from an event handler to stop the destroy.

Parameters:


method beforehide : 'h.
(t Js.t -> 'h Js.t -> unit) Js.callback
Js.writeonly_prop

Fires before the component is hidden when calling the hide method. Return false from an event handler to stop the hide.

Parameters:


method beforerender : 'i.
(t Js.t -> 'i Js.t -> unit) Js.callback
Js.writeonly_prop

Fires before the component is rendered. Return false from an event handler to stop the render.

Parameters:


method beforeshow : 'j.
(t Js.t -> 'j Js.t -> unit) Js.callback
Js.writeonly_prop

Fires before the component is shown when calling the show method. Return false from an event handler to stop the show.

Parameters:


method blur : 'k.
(t Js.t -> Ext_EventObject.t Js.t -> 'k Js.t -> unit)
Js.callback Js.writeonly_prop

Fires when this Component loses focus.

Parameters:


method boxready : 'l.
(t Js.t ->
Js.number Js.t -> Js.number Js.t -> 'l Js.t -> unit)
Js.callback Js.writeonly_prop

Fires one time - after the component has been laid out for the first time at its initial size.

Parameters:


method deactivate : 'm.
(t Js.t -> 'm Js.t -> unit) Js.callback
Js.writeonly_prop

Fires after a Component has been visually deactivated.

Parameters:


method destroy : 'n.
(t Js.t -> 'n Js.t -> unit) Js.callback
Js.writeonly_prop

Fires after the component is destroyed.

Parameters:


method disable : 'o.
(t Js.t -> 'o Js.t -> unit) Js.callback
Js.writeonly_prop

Fires after the component is disabled.

Parameters:


method enable : 'p.
(t Js.t -> 'p Js.t -> unit) Js.callback
Js.writeonly_prop

Fires after the component is enabled.

Parameters:


method focus : 'q.
(t Js.t -> Ext_EventObject.t Js.t -> 'q Js.t -> unit)
Js.callback Js.writeonly_prop

Fires when this Component receives focus.

Parameters:


method hide : 'r.
(t Js.t -> 'r Js.t -> unit) Js.callback
Js.writeonly_prop

Fires after the component is hidden. Fires after the component is hidden when calling the hide method.

Parameters:


method move : 's.
(t Js.t ->
Js.number Js.t -> Js.number Js.t -> 's Js.t -> unit)
Js.callback Js.writeonly_prop

Fires after the component is moved.

Parameters:


method removed : 't 'u.
(t Js.t -> 't Js.t -> 'u Js.t -> unit) Js.callback
Js.writeonly_prop

Fires when a component is removed from an Ext.container.Container

Parameters:


method render : 'v.
(t Js.t -> 'v Js.t -> unit) Js.callback
Js.writeonly_prop

Fires after the component markup is rendered.

Parameters:


method resize : 'w.
(t Js.t ->
Js.number Js.t ->
Js.number Js.t -> Js.number Js.t -> Js.number Js.t -> 'w Js.t -> unit)
Js.callback Js.writeonly_prop

Fires after the component is resized. Note that this does not fire when the component is first laid out at its initial size. To hook that point in the life cycle, use the boxready event.

Parameters:


method show : 'x.
(t Js.t -> 'x Js.t -> unit) Js.callback
Js.writeonly_prop

Fires after the component is shown when calling the show method.

Parameters: