/* 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_StoreMgr({"alternateClassNames":[],"aliases":{},"enum":null,"parentMixins":[],"tagname":"class","subclasses":[],"extends":"Ext.util.MixedCollection","uses":[],"html":"

Hierarchy

Files

The default global group of stores.

\n
Defined By

Config options

Specify true if the addAll\nfunction should add function references to the collection. ...

Specify true if the addAll\nfunction should add function references to the collection. Defaults to\nfalse.

\n

Defaults to: false

Defined By

Methods

...
\n

Parameters

  • allowFunctions : Boolean

    Specify true if the addAll\nfunction should add function references to the collection. Defaults to\nfalse.

    \n
  • keyFn : Function

    A function that can accept an item of the type(s) stored in this MixedCollection\nand return the key value for that item. This is used when available to look up the key on items that\nwere passed without an explicit key parameter to a MixedCollection method. Passing this parameter is\nequivalent to providing an implementation for the getKey method.

    \n

Returns

( property, [dir], [fn] )private
Performs the actual sorting based on a direction and a sorting function. ...

Performs the actual sorting based on a direction and a sorting function. Internally,\nthis creates a temporary array of all items in the MixedCollection, sorts it and then writes\nthe sorted array data back into this.items and this.keys

\n

Parameters

  • property : String

    Property to sort by ('key', 'value', or 'index')

    \n
  • dir : String (optional)

    Direction to sort 'ASC' or 'DESC'. Defaults to 'ASC'.

    \n
  • fn : Function (optional)

    Comparison function that defines the sort order.\nDefaults to sorting by numeric value.

    \n
Adds an item to the collection. ...

Adds an item to the collection. Fires the add event when complete.

\n

Parameters

  • key : String

    The key to associate with the item, or the new item.

    \n\n\n

    If a getKey implementation was specified for this MixedCollection,\nor if the key of the stored items is in a property called id,\nthe MixedCollection will be able to derive the key for the new item.\nIn this case just pass the new item in this parameter.

    \n\n
  • o : Object

    The item to add.

    \n

Returns

  • Object

    The item added.

    \n
Adds all elements of an Array or an Object to the collection. ...

Adds all elements of an Array or an Object to the collection.

\n

Parameters

  • objs : Object/Array

    An Object containing properties which will be added\nto the collection, or an Array of values, each of which are added to the collection.\nFunctions references will be added to the collection if allowFunctions\nhas been set to true.

    \n
Adds the specified events to the list of events which this Observable may fire. ...

Adds the specified events to the list of events which this Observable may fire.

\n

Parameters

  • o : Object|String

    Either an object with event names as properties with a value of true\nor the first event name string if multiple event names are being passed as separate parameters.

    \n
  • Optional : string

    . Event name if multiple event names are being passed as separate parameters.\nUsage:

    \n\n
    this.addEvents('storeloaded', 'storecleared');\n
    \n\n
( eventName, handler, [scope], [options] )
Appends an event handler to this object. ...

Appends an event handler to this object.

\n

Parameters

  • eventName : String

    The name of the event to listen for.

    \n
  • handler : Function

    The method the event invokes.

    \n
  • scope : Object (optional)

    The scope (this reference) in which the handler function is executed.\nIf omitted, defaults to the object which fired the event.

    \n
  • options : Object (optional)

    An object containing handler configuration.\nproperties. This may contain any of the following properties:

      \n
    • scope : Object
      The scope (this reference) in which the handler function is executed.\nIf omitted, defaults to the object which fired the event.
    • \n
    • delay : Number
      The number of milliseconds to delay the invocation of the handler after the event fires.
    • \n
    • single : Boolean
      True to add a handler to handle just the next firing of the event, and then remove itself.
    • \n
    • buffer : Number
      Causes the handler to be scheduled to run in an Ext.util.DelayedTask delayed\nby the specified number of milliseconds. If the event fires again within that time, the original\nhandler is not invoked, but the new handler is scheduled in its place.
    • \n
    • target : Observable
      Only call the handler if the event was fired on the target Observable, not\nif the event was bubbled up from a child Observable.
    • \n

    \n\n

    \nCombining Options
    \nUsing the options argument, it is possible to combine different types of listeners:
    \n
    \nA delayed, one-time listener.\n

    myDataView.on('click', this.onClick, this, {\nsingle: true,\ndelay: 100\n});
    \n

    \nAttaching multiple handlers in 1 call
    \nThe method also allows for a single argument to be passed which is a config object containing properties\nwhich specify multiple handlers.\n

    \n

    myGridPanel.on({\n'click' : {\n    fn: this.onClick,\n    scope: this,\n    delay: 100\n},\n'mouseover' : {\n    fn: this.onMouseOver,\n    scope: this\n},\n'mouseout' : {\n    fn: this.onMouseOut,\n    scope: this\n}\n});
    \n

    \nOr a shorthand syntax:
    \n

    myGridPanel.on({\n'click' : this.onClick,\n'mouseover' : this.onMouseOver,\n'mouseout' : this.onMouseOut,\n scope: this\n});
    \n\n

Removes all items from the collection. ...

Removes all items from the collection. Fires the clear event when complete.

\n
Creates a shallow copy of this collection ...

Creates a shallow copy of this collection

\n

Returns

  • MixedCollection
    \n
Returns true if the collection contains the passed Object as an item. ...

Returns true if the collection contains the passed Object as an item.

\n

Parameters

  • o : Object

    The Object to look for in the collection.

    \n

Returns

  • Boolean

    True if the collection contains the Object as an item.

    \n
Returns true if the collection contains the passed Object as a key. ...

Returns true if the collection contains the passed Object as a key.

\n

Parameters

  • key : String

    The key to look for in the collection.

    \n

Returns

  • Boolean

    True if the collection contains the Object as a key.

    \n
( value, anyMatch, caseSensitive, exactMatch )private
Returns a regular expression based on the given value and matching options. ...

Returns a regular expression based on the given value and matching options. This is used internally for finding and filtering,\nand by Ext.data.Store.filter

\n

Parameters

  • value : String

    The value to create the regex for. This is escaped using Ext.escapeRe

    \n
  • anyMatch : Boolean

    True to allow any match - no regex start/end line anchors will be added. Defaults to false

    \n
  • caseSensitive : Boolean

    True to make the regex case sensitive (adds 'i' switch to regex). Defaults to false.

    \n
  • exactMatch : Boolean

    True to force exact match (^ and $ characters added to the regex). Defaults to false. Ignored if anyMatch is true.

    \n
Executes the specified function once for every item in the collection, passing the following arguments:\n\n\nitem : Mixe...

Executes the specified function once for every item in the collection, passing the following arguments:

\n\n
    \n
  • item : Mixed

    The collection item

  • \n
  • index : Number

    The item's index

  • \n
  • length : Number

    The total number of items in the collection

  • \n
\n\n\n

The function should return a boolean value. Returning false from the function will stop the iteration.

\n

Parameters

  • fn : Function

    The function to execute for each item.

    \n
  • scope : Object (optional)

    The scope (this reference) in which the function is executed. Defaults to the current item in the iteration.

    \n
Executes the specified function once for every key in the collection, passing each\nkey, and its associated item as th...

Executes the specified function once for every key in the collection, passing each\nkey, and its associated item as the first two parameters.

\n

Parameters

  • fn : Function

    The function to execute for each item.

    \n
  • scope : Object (optional)

    The scope (this reference) in which the function is executed. Defaults to the browser window.

    \n
Enables events fired by this Observable to bubble up an owner hierarchy by calling\nthis.getBubbleTarget() if present. ...

Enables events fired by this Observable to bubble up an owner hierarchy by calling\nthis.getBubbleTarget() if present. There is no implementation in the Observable base class.

\n\n\n

This is commonly used by Ext.Components to bubble events to owner Containers. See Ext.Component.getBubbleTarget. The default\nimplementation in Ext.Component returns the Component's immediate owner. But if a known target is required, this can be overridden to\naccess the required target more quickly.

\n\n\n

Example:

\n\n\n
Ext.override(Ext.form.Field, {\n    //  Add functionality to Field's initComponent to enable the change event to bubble\n    initComponent : Ext.form.Field.prototype.initComponent.createSequence(function() {\n        this.enableBubble('change');\n    }),\n\n    //  We know that we want Field's events to bubble directly to the FormPanel.\n    getBubbleTarget : function() {\n        if (!this.formPanel) {\n            this.formPanel = this.findParentByType('form');\n        }\n        return this.formPanel;\n    }\n});\n\nvar myForm = new Ext.formPanel({\n    title: 'User Details',\n    items: [{\n        ...\n    }],\n    listeners: {\n        change: function() {\n            // Title goes red if form has been modified.\n            myForm.header.setStyle('color', 'red');\n        }\n    }\n});\n
\n\n

Parameters

  • events : String/Array

    The event name to bubble, or an Array of event names.

    \n
( property, value, [anyMatch], [caseSensitive] ) : MixedCollection
Filter the objects in this collection by a specific property. ...

Filter the objects in this collection by a specific property.\nReturns a new collection that has been filtered.

\n

Parameters

  • property : String

    A property on your objects

    \n
  • value : String/RegExp

    Either string that the property values\nshould start with or a RegExp to test against the property

    \n
  • anyMatch : Boolean (optional)

    True to match any part of the string, not just the beginning

    \n
  • caseSensitive : Boolean (optional)

    True for case sensitive comparison (defaults to False).

    \n

Returns

  • MixedCollection

    The new filtered collection

    \n
( fn, [scope] ) : MixedCollection
Filter by a function. ...

Filter by a function. Returns a new collection that has been filtered.\nThe passed function will be called with each object in the collection.\nIf the function returns true, the value is included otherwise it is filtered.

\n

Parameters

  • fn : Function

    The function to be called, it will receive the args o (the object), k (the key)

    \n
  • scope : Object (optional)

    The scope (this reference) in which the function is executed. Defaults to this MixedCollection.

    \n

Returns

  • MixedCollection

    The new filtered collection

    \n
Returns the first item in the collection which elicits a true return value from the\npassed selection function. ...

Returns the first item in the collection which elicits a true return value from the\npassed selection function.

\n

Parameters

  • fn : Function

    The selection function to execute for each item.

    \n
  • scope : Object (optional)

    The scope (this reference) in which the function is executed. Defaults to the browser window.

    \n

Returns

  • Object

    The first item in the collection which returned true from the selection function.

    \n
( property, value, [start], [anyMatch], [caseSensitive] ) : Number
Finds the index of the first matching object in this collection by a specific property/value. ...

Finds the index of the first matching object in this collection by a specific property/value.

\n

Parameters

  • property : String

    The name of a property on your objects.

    \n
  • value : String/RegExp

    A string that the property values\nshould start with or a RegExp to test against the property.

    \n
  • start : Number (optional)

    The index to start searching at (defaults to 0).

    \n
  • anyMatch : Boolean (optional)

    True to match any part of the string, not just the beginning.

    \n
  • caseSensitive : Boolean (optional)

    True for case sensitive comparison.

    \n

Returns

  • Number

    The matched index or -1

    \n
Find the index of the first matching object in this collection by a function. ...

Find the index of the first matching object in this collection by a function.\nIf the function returns true it is considered a match.

\n

Parameters

  • fn : Function

    The function to be called, it will receive the args o (the object), k (the key).

    \n
  • scope : Object (optional)

    The scope (this reference) in which the function is executed. Defaults to this MixedCollection.

    \n
  • start : Number (optional)

    The index to start searching at (defaults to 0).

    \n

Returns

  • Number

    The matched index or -1

    \n
( eventName, args ) : Boolean
Fires the specified event with the passed parameters (minus the event name). ...

Fires the specified event with the passed parameters (minus the event name).

\n\n\n

An event may be set to bubble up an Observable parent hierarchy (See Ext.Component.getBubbleTarget)\nby calling enableBubble.

\n\n

Parameters

  • eventName : String

    The name of the event to fire.

    \n
  • args : Object...

    Variable number of parameters are passed to handlers.

    \n

Returns

  • Boolean

    returns false if any of the handlers return false otherwise it returns true.

    \n
Returns the first item in the collection. ...

Returns the first item in the collection.

\n

Returns

  • Object

    the first item in the collection..

    \n
This method calls item(). ...

This method calls item().\nReturns the item associated with the passed key OR index. Key has priority\nover index. This is the equivalent of calling key first, then if\nnothing matched calling itemAt.

\n

Parameters

Returns

  • Object

    If the item is found, returns the item. If the item was\nnot found, returns undefined. If an item was found, but is a Class,\nreturns null.

    \n
Returns the number of items in the collection. ...

Returns the number of items in the collection.

\n

Returns

  • Number

    the number of items in the collection.

    \n
MixedCollection has a generic way to fetch keys if you implement getKey. ...

MixedCollection has a generic way to fetch keys if you implement getKey. The default implementation\nsimply returns item.id but you can provide your own implementation\nto return a different value as in the following examples:

\n\n
// normal way\nvar mc = new Ext.util.MixedCollection();\nmc.add(someEl.dom.id, someEl);\nmc.add(otherEl.dom.id, otherEl);\n//and so on\n\n// using getKey\nvar mc = new Ext.util.MixedCollection();\nmc.getKey = function(el){\n   return el.dom.id;\n};\nmc.add(someEl);\nmc.add(otherEl);\n\n// or via the constructor\nvar mc = new Ext.util.MixedCollection(false, function(el){\n   return el.dom.id;\n});\nmc.add(someEl);\nmc.add(otherEl);\n
\n\n

Parameters

  • item : Object

    The item for which to find the key.

    \n

Returns

  • Object

    The key for the passed item.

    \n
Returns a range of items in this collection ...

Returns a range of items in this collection

\n

Parameters

  • startIndex : Number (optional)

    The starting index. Defaults to 0.

    \n
  • endIndex : Number (optional)

    The ending index. Defaults to the last item.

    \n

Returns

Checks to see if this object has any listeners for a specified event ...

Checks to see if this object has any listeners for a specified event

\n

Parameters

  • eventName : String

    The name of the event to check for

    \n

Returns

  • Boolean

    True if the event is being listened for, else false

    \n
Returns index within the collection of the passed Object. ...

Returns index within the collection of the passed Object.

\n

Parameters

  • o : Object

    The item to find the index of.

    \n

Returns

  • Number

    index of the item. Returns -1 if not found.

    \n
Returns index within the collection of the passed key. ...

Returns index within the collection of the passed key.

\n

Parameters

  • key : String

    The key to find the index of.

    \n

Returns

( index, key, [o] ) : Object
Inserts an item at the specified index in the collection. ...

Inserts an item at the specified index in the collection. Fires the add event when complete.

\n

Parameters

  • index : Number

    The index to insert the item at.

    \n
  • key : String

    The key to associate with the new item, or the item itself.

    \n
  • o : Object (optional)

    If the second parameter was a key, the new item.

    \n

Returns

  • Object

    The item inserted.

    \n
Returns the item associated with the passed key OR index. ...

Returns the item associated with the passed key OR index.\nKey has priority over index. This is the equivalent\nof calling key first, then if nothing matched calling itemAt.

\n

Parameters

Returns

  • Object

    If the item is found, returns the item. If the item was not found, returns undefined.\nIf an item was found, but is a Class, returns null.

    \n
Returns the item at the specified index. ...

Returns the item at the specified index.

\n

Parameters

  • index : Number

    The index of the item.

    \n

Returns

  • Object

    The item at the specified index.

    \n
Returns the item associated with the passed key. ...

Returns the item associated with the passed key.

\n

Parameters

Returns

  • Object

    The item associated with the passed key.

    \n
Sorts this collection by keys. ...

Sorts this collection by keys.

\n

Parameters

  • direction : String (optional)

    'ASC' or 'DESC'. Defaults to 'ASC'.

    \n
  • fn : Function (optional)

    Comparison function that defines the sort order.\nDefaults to sorting by case insensitive string.

    \n
Returns the last item in the collection. ...

Returns the last item in the collection.

\n

Returns

  • Object

    the last item in the collection..

    \n
Ext.StoreMgr
view source
( id ) : Ext.data.Store
Gets a registered Store by id ...

Gets a registered Store by id

\n

Parameters

  • id : String/Object

    The id of the Store, or a Store instance

    \n

Returns

( eventName, handler, [scope], [options] )
Appends an event handler to this object (shorthand for addListener.) ...

Appends an event handler to this object (shorthand for addListener.)

\n

Parameters

  • eventName : String

    The type of event to listen for

    \n
  • handler : Function

    The method the event invokes

    \n
  • scope : Object (optional)

    The scope (this reference) in which the handler function is executed.\nIf omitted, defaults to the object which fired the event.

    \n
  • options : Object (optional)

    An object containing handler configuration.

    \n
Removes all listeners for this object ...

Removes all listeners for this object

\n
Ext.StoreMgr
view source
( stores )
Registers one or more Stores with the StoreMgr. ...

Registers one or more Stores with the StoreMgr. You do not normally need to register stores\nmanually. Any store initialized with a Ext.data.Store.storeId will be auto-registered.

\n

Parameters

Relays selected events from the specified Observable as if the events were fired by this. ...

Relays selected events from the specified Observable as if the events were fired by this.

\n

Parameters

  • o : Object

    The Observable whose events this object is to relay.

    \n
  • events : Array

    Array of event names to relay.

    \n
Remove an item from the collection. ...

Remove an item from the collection.

\n

Parameters

  • o : Object

    The item to remove.

    \n

Returns

  • Object

    The item removed or false if no item was removed.

    \n
Remove an item from a specified index in the collection. ...

Remove an item from a specified index in the collection. Fires the remove event when complete.

\n

Parameters

  • index : Number

    The index within the collection of the item to remove.

    \n

Returns

  • Object

    The item removed or false if no item was removed.

    \n
Removed an item associated with the passed key fom the collection. ...

Removed an item associated with the passed key fom the collection.

\n

Parameters

  • key : String

    The key of the item to remove.

    \n

Returns

  • Object

    The item removed or false if no item was removed.

    \n
( eventName, handler, [scope] )
Removes an event handler. ...

Removes an event handler.

\n

Parameters

  • eventName : String

    The type of event the handler was associated with.

    \n
  • handler : Function

    The handler to remove. This must be a reference to the function passed into the addListener call.

    \n
  • scope : Object (optional)

    The scope originally specified for the handler.

    \n
Reorders each of the items based on a mapping from old index to new index. ...

Reorders each of the items based on a mapping from old index to new index. Internally this\njust translates into a sort. The 'sort' event is fired whenever reordering has occured.

\n

Parameters

  • mapping : Object

    Mapping from old item index to new item index

    \n
Replaces an item in the collection. ...

Replaces an item in the collection. Fires the replace event when complete.

\n

Parameters

  • key : String

    The key associated with the item to replace, or the replacement item.

    \n\n\n

    If you supplied a getKey implementation for this MixedCollection, or if the key\nof your stored items is in a property called id, then the MixedCollection\nwill be able to derive the key of the replacement item. If you want to replace an item\nwith one having the same key value, then just pass the replacement item in this parameter.

    \n\n
  • o : Object

    {Object} o (optional) If the first parameter passed was a key, the item to associate\nwith that key.

    \n

Returns

  • Object

    The new item.

    \n
Resume firing events. ...

Resume firing events. (see suspendEvents)\nIf events were suspended using the queueSuspended parameter, then all\nevents fired during event suspension will be sent to any listeners now.

\n
Sorts this collection by item value with the passed comparison function. ...

Sorts this collection by item value with the passed comparison function.

\n

Parameters

  • direction : String (optional)

    'ASC' or 'DESC'. Defaults to 'ASC'.

    \n
  • fn : Function (optional)

    Comparison function that defines the sort order.\nDefaults to sorting by numeric value.

    \n
Suspend the firing of all events. ...

Suspend the firing of all events. (see resumeEvents)

\n

Parameters

  • queueSuspended : Boolean

    Pass as true to queue up suspended events to be fired\nafter the resumeEvents call instead of discarding all suspended events;

    \n
( eventName, handler, [scope] )
Removes an event handler (shorthand for removeListener.) ...

Removes an event handler (shorthand for removeListener.)

\n

Parameters

  • eventName : String

    The type of event the handler was associated with.

    \n
  • handler : Function

    The handler to remove. This must be a reference to the function passed into the addListener call.

    \n
  • scope : Object (optional)

    The scope originally specified for the handler.

    \n
Ext.StoreMgr
view source
( ids )
Unregisters one or more Stores with the StoreMgr ...

Unregisters one or more Stores with the StoreMgr

\n

Parameters

  • ids : String/Object

    IDs of the Stores, or Store instances

    \n
Defined By

Events

Fires when an item is added to the collection. ...

Fires when an item is added to the collection.

\n

Parameters

  • index : Number

    The index at which the item was added.

    \n
  • o : Object

    The item added.

    \n
  • key : String

    The key associated with the added item.

    \n
Fires when the collection is cleared. ...

Fires when the collection is cleared.

\n
Fires when an item is removed from the collection. ...

Fires when an item is removed from the collection.

\n

Parameters

  • o : Object

    The item being removed.

    \n
  • key : String (optional)

    The key associated with the removed item.

    \n
Fires when an item is replaced in the collection. ...

Fires when an item is replaced in the collection.

\n

Parameters

  • key : String

    he key associated with the new added.

    \n
  • old : Object

    The item being replaced.

    \n
  • new : Object

    The new item.

    \n
","superclasses":["Ext.util.Observable","Ext.util.MixedCollection"],"meta":{},"requires":[],"html_meta":{},"statics":{"property":[],"cfg":[],"css_var":[],"method":[],"event":[],"css_mixin":[]},"files":[{"href":"StoreMgr.html#Ext-StoreMgr","filename":"StoreMgr.js"}],"linenr":1,"members":{"property":[],"cfg":[{"tagname":"cfg","owner":"Ext.util.MixedCollection","meta":{},"name":"allowFunctions","id":"cfg-allowFunctions"}],"css_var":[],"method":[{"tagname":"method","owner":"Ext.util.MixedCollection","meta":{},"name":"constructor","id":"method-constructor"},{"tagname":"method","owner":"Ext.util.MixedCollection","meta":{"private":true},"name":"_sort","id":"method-_sort"},{"tagname":"method","owner":"Ext.util.MixedCollection","meta":{},"name":"add","id":"method-add"},{"tagname":"method","owner":"Ext.util.MixedCollection","meta":{},"name":"addAll","id":"method-addAll"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"addEvents","id":"method-addEvents"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"addListener","id":"method-addListener"},{"tagname":"method","owner":"Ext.util.MixedCollection","meta":{},"name":"clear","id":"method-clear"},{"tagname":"method","owner":"Ext.util.MixedCollection","meta":{},"name":"clone","id":"method-clone"},{"tagname":"method","owner":"Ext.util.MixedCollection","meta":{},"name":"contains","id":"method-contains"},{"tagname":"method","owner":"Ext.util.MixedCollection","meta":{},"name":"containsKey","id":"method-containsKey"},{"tagname":"method","owner":"Ext.util.MixedCollection","meta":{"private":true},"name":"createValueMatcher","id":"method-createValueMatcher"},{"tagname":"method","owner":"Ext.util.MixedCollection","meta":{},"name":"each","id":"method-each"},{"tagname":"method","owner":"Ext.util.MixedCollection","meta":{},"name":"eachKey","id":"method-eachKey"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"enableBubble","id":"method-enableBubble"},{"tagname":"method","owner":"Ext.util.MixedCollection","meta":{},"name":"filter","id":"method-filter"},{"tagname":"method","owner":"Ext.util.MixedCollection","meta":{},"name":"filterBy","id":"method-filterBy"},{"tagname":"method","owner":"Ext.util.MixedCollection","meta":{},"name":"find","id":"method-find"},{"tagname":"method","owner":"Ext.util.MixedCollection","meta":{},"name":"findIndex","id":"method-findIndex"},{"tagname":"method","owner":"Ext.util.MixedCollection","meta":{},"name":"findIndexBy","id":"method-findIndexBy"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"fireEvent","id":"method-fireEvent"},{"tagname":"method","owner":"Ext.util.MixedCollection","meta":{},"name":"first","id":"method-first"},{"tagname":"method","owner":"Ext.util.MixedCollection","meta":{},"name":"get","id":"method-get"},{"tagname":"method","owner":"Ext.util.MixedCollection","meta":{},"name":"getCount","id":"method-getCount"},{"tagname":"method","owner":"Ext.util.MixedCollection","meta":{},"name":"getKey","id":"method-getKey"},{"tagname":"method","owner":"Ext.util.MixedCollection","meta":{},"name":"getRange","id":"method-getRange"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"hasListener","id":"method-hasListener"},{"tagname":"method","owner":"Ext.util.MixedCollection","meta":{},"name":"indexOf","id":"method-indexOf"},{"tagname":"method","owner":"Ext.util.MixedCollection","meta":{},"name":"indexOfKey","id":"method-indexOfKey"},{"tagname":"method","owner":"Ext.util.MixedCollection","meta":{},"name":"insert","id":"method-insert"},{"tagname":"method","owner":"Ext.util.MixedCollection","meta":{},"name":"item","id":"method-item"},{"tagname":"method","owner":"Ext.util.MixedCollection","meta":{},"name":"itemAt","id":"method-itemAt"},{"tagname":"method","owner":"Ext.util.MixedCollection","meta":{},"name":"key","id":"method-key"},{"tagname":"method","owner":"Ext.util.MixedCollection","meta":{},"name":"keySort","id":"method-keySort"},{"tagname":"method","owner":"Ext.util.MixedCollection","meta":{},"name":"last","id":"method-last"},{"tagname":"method","owner":"Ext.StoreMgr","meta":{},"name":"lookup","id":"method-lookup"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"on","id":"method-on"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"purgeListeners","id":"method-purgeListeners"},{"tagname":"method","owner":"Ext.StoreMgr","meta":{},"name":"register","id":"method-register"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"relayEvents","id":"method-relayEvents"},{"tagname":"method","owner":"Ext.util.MixedCollection","meta":{},"name":"remove","id":"method-remove"},{"tagname":"method","owner":"Ext.util.MixedCollection","meta":{},"name":"removeAt","id":"method-removeAt"},{"tagname":"method","owner":"Ext.util.MixedCollection","meta":{},"name":"removeKey","id":"method-removeKey"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"removeListener","id":"method-removeListener"},{"tagname":"method","owner":"Ext.util.MixedCollection","meta":{},"name":"reorder","id":"method-reorder"},{"tagname":"method","owner":"Ext.util.MixedCollection","meta":{},"name":"replace","id":"method-replace"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"resumeEvents","id":"method-resumeEvents"},{"tagname":"method","owner":"Ext.util.MixedCollection","meta":{},"name":"sort","id":"method-sort"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"suspendEvents","id":"method-suspendEvents"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"un","id":"method-un"},{"tagname":"method","owner":"Ext.StoreMgr","meta":{},"name":"unregister","id":"method-unregister"}],"event":[{"tagname":"event","owner":"Ext.util.MixedCollection","meta":{},"name":"add","id":"event-add"},{"tagname":"event","owner":"Ext.util.MixedCollection","meta":{},"name":"clear","id":"event-clear"},{"tagname":"event","owner":"Ext.util.MixedCollection","meta":{},"name":"remove","id":"event-remove"},{"tagname":"event","owner":"Ext.util.MixedCollection","meta":{},"name":"replace","id":"event-replace"}],"css_mixin":[]},"inheritable":null,"private":null,"component":false,"name":"Ext.StoreMgr","singleton":true,"override":null,"inheritdoc":null,"id":"class-Ext.StoreMgr","mixins":[],"mixedInto":[]});