Class type Ext_Queryable.t


class type t = object .. end
Inherits
method child : 'a 'b. 'a Js.t Js.optdef -> 'b Js.t Js.meth

Retrieves the first direct child of this container which matches the passed selector or component. The passed in selector must comply with an Ext.ComponentQuery selector, or it can be an actual Ext.Component.

Parameters:

Returns:


method down : 'c 'd. 'c Js.t Js.optdef -> 'd Js.t Js.meth

Retrieves the first descendant of this container which matches the passed selector. The passed in selector must comply with an Ext.ComponentQuery selector, or it can be an actual Ext.Component.

Parameters:

Returns:


method query : Js.js_string Js.t Js.optdef -> Ext_Component.t Js.js_array Js.t Js.meth

Retrieves all descendant components which match the passed selector. Executes an Ext.ComponentQuery.query using this container as its root.

Parameters:

Returns:


method queryBy : 'e 'f.
'e Js.callback ->
'f Js.t Js.optdef -> Ext_Component.t Js.js_array Js.t Js.meth

Retrieves all descendant components which match the passed function. The function should return false for components that are to be excluded from the selection.

Parameters:

Returns:


method queryById : 'g. Js.js_string Js.t -> (#Ext_Component.t as 'g) Js.t Js.meth

Finds a component at any level under this container matching the id/itemId. This is a shorthand for calling ct.down('#' + id);

Parameters:

Returns: