/* 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\nThis 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.
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.
For a list of all available xtypes
, see Ext.Component.
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.
\nThe ptypes that have been registered with the component manager.
\nThe ptypes that have been registered with the component manager.
\nThe xtypes that have been registered with the component manager.
\nThe xtypes that have been registered with the component manager.
\nCreates a new Component from the specified config object using the\nconfig object's xtype to determine the class to instantiate.
\nA configuration object for the Component you wish to create.
\nThe constructor to provide the default Component type if\nthe config object does not contain a xtype
. (Optional if the config contains a xtype
).
The newly instantiated Component.
\nCreates a new Plugin from the specified config object using the\nconfig object's ptype to determine the class to instantiate.
\nA configuration object for the Plugin you wish to create.
\nThe constructor to provide the default Plugin type if\nthe config object does not contain a ptype
. (Optional if the config contains a ptype
).
The newly instantiated Plugin.
\nReturns a component by id.\nFor additional details see Ext.util.MixedCollection.get.
\nExt.Component The Component, undefined
if not found, or null
if a\nClass was found.
Checks if a Plugin type is registered.
\nThe mnemonic string by which the Plugin class may be looked up
\nWhether the type is registered.
\nChecks if a Component type is registered.
\nThe mnemonic string by which the Component class may be looked up
\nWhether the type is registered.
\nRegisters a function that will be called when a Component with the specified id is added to ComponentMgr. This will happen on instantiation.
\nRegisters a new Plugin constructor, keyed by a new\nExt.Component.ptype.
\n\n\nUse 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\nThe mnemonic string by which the Plugin class may be looked up.
\nThe new Plugin class.
\nRegisters a new Component constructor, keyed by a new\nExt.Component.xtype.
\n\n\nUse 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\nThe mnemonic string by which the Component class may be looked up.
\nThe new Component class.
\n