/* This file is part of Ext JS 3.4 Copyright (c) 2011-2013 Sencha Inc Contact: http://www.sencha.com/contact GNU General Public License Usage This file may be used under the terms of the GNU General Public License version 3.0 as published by the Free Software Foundation and appearing in the file LICENSE included in the packaging of this file. Please review the following information to ensure the GNU General Public License version 3.0 requirements will be met: http://www.gnu.org/copyleft/gpl.html. If you are unsure which license is appropriate for your use, please contact the sales department at http://www.sencha.com/contact. Build date: 2013-04-03 15:07:25 */ Ext.data.JsonP.Ext_ComponentMgr({"alternateClassNames":[],"aliases":{},"enum":null,"parentMixins":[],"tagname":"class","subclasses":[],"extends":null,"uses":[],"html":"

Files

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

\n\n\n

This object also provides a registry of available Component classes\nindexed by a mnemonic code known as the Component's xtype.\nThe xtype provides a way to avoid instantiating child Components\nwhen creating a full, nested config object for a complete Ext page.

\n\n\n

A child Component may be specified simply as a config object\nas long as the correct xtype is specified so that if and when the Component\nneeds rendering, the correct type can be looked up for lazy instantiation.

\n\n\n

For a list of all available xtypes, see Ext.Component.

\n\n
Defined By

Properties

Ext.ComponentMgr
view source
: MixedCollection
The MixedCollection used internally for the component cache. ...

The MixedCollection used internally for the component cache. An example usage may be subscribing to\nevents on the MixedCollection to monitor addition or removal. Read-only.

\n
Ext.ComponentMgr
view source
ptypes : Object

The ptypes that have been registered with the component manager.

\n

The ptypes that have been registered with the component manager.

\n
Ext.ComponentMgr
view source
types : Object

The xtypes that have been registered with the component manager.

\n

The xtypes that have been registered with the component manager.

\n
Defined By

Methods

Ext.ComponentMgr
view source
( config, defaultType ) : Ext.Component
Creates a new Component from the specified config object using the\nconfig object's xtype to determine the class to in...

Creates a new Component from the specified config object using the\nconfig object's xtype to determine the class to instantiate.

\n

Parameters

  • config : Object

    A configuration object for the Component you wish to create.

    \n
  • defaultType : Constructor

    The constructor to provide the default Component type if\nthe config object does not contain a xtype. (Optional if the config contains a xtype).

    \n

Returns

Ext.ComponentMgr
view source
( config, defaultType ) : Ext.Component
Creates a new Plugin from the specified config object using the\nconfig object's ptype to determine the class to insta...

Creates a new Plugin from the specified config object using the\nconfig object's ptype to determine the class to instantiate.

\n

Parameters

  • config : Object

    A configuration object for the Plugin you wish to create.

    \n
  • defaultType : Constructor

    The constructor to provide the default Plugin type if\nthe config object does not contain a ptype. (Optional if the config contains a ptype).

    \n

Returns

Ext.ComponentMgr
view source
( id ) : Object
Returns a component by id. ...

Returns a component by id.\nFor additional details see Ext.util.MixedCollection.get.

\n

Parameters

Returns

  • Object

    Ext.Component The Component, undefined if not found, or null if a\nClass was found.

    \n
Ext.ComponentMgr
view source
( ptype ) : Boolean
Checks if a Plugin type is registered. ...

Checks if a Plugin type is registered.

\n

Parameters

  • ptype : Ext.Component

    The mnemonic string by which the Plugin class may be looked up

    \n

Returns

  • Boolean

    Whether the type is registered.

    \n
Ext.ComponentMgr
view source
( xtype ) : Boolean
Checks if a Component type is registered. ...

Checks if a Component type is registered.

\n

Parameters

  • xtype : Ext.Component

    The mnemonic string by which the Component class may be looked up

    \n

Returns

  • Boolean

    Whether the type is registered.

    \n
Ext.ComponentMgr
view source
( id, fn, scope )
Registers a function that will be called when a Component with the specified id is added to ComponentMgr. ...

Registers a function that will be called when a Component with the specified id is added to ComponentMgr. This will happen on instantiation.

\n

Parameters

  • id : String

    The component id

    \n
  • fn : Function

    The callback function

    \n
  • scope : Object

    The scope (this reference) in which the callback is executed. Defaults to the Component.

    \n
Ext.ComponentMgr
view source
( c )
Registers a component. ...

Registers a component.

\n

Parameters

Ext.ComponentMgr
view source
( ptype, cls )
Registers a new Plugin constructor, keyed by a new\nExt.Component.ptype. ...

Registers a new Plugin constructor, keyed by a new\nExt.Component.ptype.

\n\n\n

Use this method (or its alias Ext.preg) to register new\nplugins for Ext.Components so that lazy instantiation may be used when specifying\nPlugins.

\n\n

Parameters

  • ptype : String

    The mnemonic string by which the Plugin class may be looked up.

    \n
  • cls : Constructor

    The new Plugin class.

    \n
Ext.ComponentMgr
view source
( xtype, cls )
Registers a new Component constructor, keyed by a new\nExt.Component.xtype. ...

Registers a new Component constructor, keyed by a new\nExt.Component.xtype.

\n\n\n

Use this method (or its alias Ext.reg) to register new\nsubclasses of Ext.Component so that lazy instantiation may be used when specifying\nchild Components.\nsee Ext.Container.items

\n\n

Parameters

  • xtype : String

    The mnemonic string by which the Component class may be looked up.

    \n
  • cls : Constructor

    The new Component class.

    \n
Ext.ComponentMgr
view source
( c )
Unregisters a component. ...

Unregisters a component.

\n

Parameters

","superclasses":[],"meta":{},"requires":[],"html_meta":{},"statics":{"property":[],"cfg":[],"css_var":[],"method":[],"event":[],"css_mixin":[]},"files":[{"href":"ComponentMgr.html#Ext-ComponentMgr","filename":"ComponentMgr.js"}],"linenr":1,"members":{"property":[{"tagname":"property","owner":"Ext.ComponentMgr","meta":{},"name":"all","id":"property-all"},{"tagname":"property","owner":"Ext.ComponentMgr","meta":{},"name":"ptypes","id":"property-ptypes"},{"tagname":"property","owner":"Ext.ComponentMgr","meta":{},"name":"types","id":"property-types"}],"cfg":[],"css_var":[],"method":[{"tagname":"method","owner":"Ext.ComponentMgr","meta":{},"name":"create","id":"method-create"},{"tagname":"method","owner":"Ext.ComponentMgr","meta":{},"name":"createPlugin","id":"method-createPlugin"},{"tagname":"method","owner":"Ext.ComponentMgr","meta":{},"name":"get","id":"method-get"},{"tagname":"method","owner":"Ext.ComponentMgr","meta":{},"name":"isPluginRegistered","id":"method-isPluginRegistered"},{"tagname":"method","owner":"Ext.ComponentMgr","meta":{},"name":"isRegistered","id":"method-isRegistered"},{"tagname":"method","owner":"Ext.ComponentMgr","meta":{},"name":"onAvailable","id":"method-onAvailable"},{"tagname":"method","owner":"Ext.ComponentMgr","meta":{},"name":"register","id":"method-register"},{"tagname":"method","owner":"Ext.ComponentMgr","meta":{},"name":"registerPlugin","id":"method-registerPlugin"},{"tagname":"method","owner":"Ext.ComponentMgr","meta":{},"name":"registerType","id":"method-registerType"},{"tagname":"method","owner":"Ext.ComponentMgr","meta":{},"name":"unregister","id":"method-unregister"}],"event":[],"css_mixin":[]},"inheritable":null,"private":null,"component":false,"name":"Ext.ComponentMgr","singleton":true,"override":null,"inheritdoc":null,"id":"class-Ext.ComponentMgr","mixins":[],"mixedInto":[]});