Class type Ext_container_AbstractContainer.events


class type events = object .. end
Inherits
method add : 'a 'b.
(t Js.t ->
(#Ext_Component.t as 'a) Js.t -> Js.number Js.t -> 'b Js.t -> unit)
Js.callback Js.writeonly_prop

Fires after any Ext.Component is added or inserted into the container.

This event bubbles: 'add' will also be fired when Component is added to any of the child containers or their childern or ...

Parameters:


method afterlayout : 'c 'd.
(t Js.t ->
(#Ext_layout_container_Container.t as 'c) Js.t -> 'd Js.t -> unit)
Js.callback Js.writeonly_prop

Fires when the components in this container are arranged by the associated layout manager.

Parameters:


method beforeadd : 'e 'f.
(t Js.t ->
(#Ext_Component.t as 'e) Js.t -> Js.number Js.t -> 'f Js.t -> unit)
Js.callback Js.writeonly_prop

Fires before any Ext.Component is added or inserted into the container. A handler can return false to cancel the add.

Parameters:


method beforeremove : 'g 'h.
(t Js.t ->
(#Ext_Component.t as 'g) Js.t -> 'h Js.t -> unit)
Js.callback Js.writeonly_prop

Fires before any Ext.Component is removed from the container. A handler can return false to cancel the remove.

Parameters:


method remove : 'i 'j.
(t Js.t ->
(#Ext_Component.t as 'i) Js.t -> 'j Js.t -> unit)
Js.callback Js.writeonly_prop

Fires after any Ext.Component is removed from the container.

This event bubbles: 'remove' will also be fired when Component is removed from any of the child containers or their children or ...

Parameters: