[Config Option] (String[])
[Property] (Ext.util.HashMap)
[Config Option] (String/String[])
[Config Option] (Object)
[Config Option] (String)
[Config Option] (Object)
[Config Option] (Object)
[Config Option] (Object)
[Property] (Ext.Class)
[Config Option] (Boolean)
[Config Option] (Object)
[Config Option] (String[])
[Method] Call the original method that was previously overridden with override This method is deprecated as callParent does
Array/Arguments The arguments, either an array or the arguments object from the current method, for example: this.callOverridden(arguments)
any
Object Returns the result of calling the overridden method
[Method] Call the parent method of the current method
Array/Arguments The arguments, either an array or the arguments object from the current method, for example: this.callParent(arguments)
any
Object Returns the result of calling the parent method
[Method] This method is used by an override to call the superclass method but bypass any overridden method
Array/Arguments The arguments, either an array or the arguments object from the current method, for example: this.callSuper(arguments)
any
Object Returns the result of calling the superclass method
[Method] Creates and returns an instance of whatever this manager manages based on the supplied type and config object
Object The config object.
String If no type is discovered in the config object, we fall back to this type.
any
Object The instance of whatever this manager is managing.
[Method]
[Method] Executes the specified function once for each item in the collection
Function The function to execute.
Object The scope to execute in.
[Method] Returns an item by id
String The id of the item.
any
Object The item, undefined if not found.
[Method] Gets the number of items in the collection
number
Number The number of items in the collection.
[Method] Returns the initial configuration passed to constructor
String When supplied, value for particular configuration option is returned, otherwise the full config object is returned.
any
Object/Mixed
[Method] Initialize configuration for this class
Object
any
Object mixins The mixin prototypes as key - value pairs
[Method] Checks if an item type is registered
String The mnemonic string by which the class may be looked up.
boolean
Boolean Whether the type is registered.
[Method] Registers a function that will be called when an item with the specified id is added to the manager
String The item id.
Function The callback function. Called with a single parameter, the item.
Object The scope (this reference) in which the callback is executed. Defaults to the item.
[Method] Registers an item to be managed
Object The item to register.
[Method] Registers a new item constructor keyed by a type key
String The mnemonic string by which the class may be looked up.
Function The new instance class.
[Method] Unregisters an item by removing it from this manager
Object The item to unregister.