X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/25ef3491bd9ae007ff1fc2b0d7943e6eaaccf775..6e39d509471fe9b4e2660e0d1631b350d0c66f40:/docs/output/Ext.ComponentMgr.html diff --git a/docs/output/Ext.ComponentMgr.html b/docs/output/Ext.ComponentMgr.html index 1e21e805..312086dd 100644 --- a/docs/output/Ext.ComponentMgr.html +++ b/docs/output/Ext.ComponentMgr.html @@ -1,4 +1,4 @@ -
Properties Methods Events Direct Link

Class Ext.ComponentMgr

Package:Ext
Defined In:ComponentMgr.js
Class:ComponentMgr
Extends:Object

Provides a registry of all Components (instances of Ext.Component or any subclass +

Class Ext.ComponentMgr

Package:Ext
Defined In:ComponentMgr.js
Class:ComponentMgr
Extends:Object

Provides a registry of all Components (instances of Ext.Component or any subclass thereof) on a page so that they can be easily accessed by component id (see get, or the convenience method Ext.getCmp).

This object also provides a registry of available Component classes @@ -29,7 +29,7 @@ Class was found.

Compo : Boolean
Checks if a Component type is registered.
Checks if a Component type is registered.
Parameters:
  • xtype : Ext.Component
    The mnemonic string by which the Component class may be looked up
Returns:
  • Boolean
    Whether the type is registered.
ComponentMgr onAvailableString idFunction fnObject scope ) : - void
Registers a function that will be called when a specified component is added to ComponentMgr
Registers a function that will be called when a specified component is added to ComponentMgr
Parameters:
  • id : String
    The component id
  • fn : Function
    The callback function
  • scope : Object
    The scope of the callback
Returns:
  • void
ComponentMgr registerExt.Component c ) + void
Registers a function that will be called when a Component with the specified id is added to ComponentMgr. This will h...
Registers a function that will be called when a Component with the specified id is added to ComponentMgr. This will happen on instantiation.
Parameters:
  • id : String
    The component id
  • fn : Function
    The callback function
  • scope : Object
    The scope (this reference) in which the callback is executed. Defaults to the Component.
Returns:
  • void
ComponentMgr registerExt.Component c ) : void
Registers a component.
Registers a component.
Parameters:
  • c : Ext.Component
    The component
Returns:
  • void
ComponentMgr registerPluginString ptypeConstructor cls ) :