]> git.proxmox.com Git - extjs.git/blame - extjs/packages/core/src/util/Group.js
add extjs 6.0.1 sources
[extjs.git] / extjs / packages / core / src / util / Group.js
CommitLineData
6527f429
DM
1/**\r
2 * @class Ext.util.Group\r
3 * Encapsulates a grouped collection of records within a {@link Ext.util.Collection}\r
4 */\r
5Ext.define('Ext.util.Group', {\r
6 extend: 'Ext.util.Collection',\r
7\r
8 config: {\r
9 groupKey: null\r
10 },\r
11\r
12 // Group collections must have a higher priority than normal collections. This ensures\r
13 // that their endupdate handlers for filters and sorters run prior to the endupdate\r
14 // handler of the store's main collection, and so when the user handles events such\r
15 // as sort/datachanged, the groups have already been sorted and filtered.\r
16 $endUpdatePriority: 2001\r
17});