Ext.data.JsonP.Ext_grid_feature_Grouping({"alternateClassNames":[],"aliases":{"feature":["grouping"]},"enum":null,"parentMixins":[],"tagname":"class","subclasses":["Ext.grid.feature.GroupingSummary"],"extends":"Ext.grid.feature.Feature","uses":[],"html":"

Hierarchy

Mixins

Requires

Subclasses

Files

This feature allows to display the grid rows aggregated into groups as specified by the Ext.data.Store.groupers\nspecified on the Store. The group will show the title for the group name and then the appropriate records for the group\nunderneath. The groups can also be expanded and collapsed.

\n\n

Extra Events

\n\n

This feature adds several extra events that will be fired on the grid to interact with the groups:

\n\n\n\n\n

Menu Augmentation

\n\n

This feature adds extra options to the grid column menu to provide the user with functionality to modify the grouping.\nThis can be disabled by setting the enableGroupingMenu option. The option to disallow grouping from being turned off\nby the user is enableNoGroups.

\n\n

Controlling Group Text

\n\n

The groupHeaderTpl is used to control the rendered title for each group. It can modified to customized\nthe default display.

\n\n

Example Usage

\n\n
var store = Ext.create('Ext.data.Store', {\n    storeId:'employeeStore',\n    fields:['name', 'seniority', 'department'],\n    groupField: 'department',\n    data: {'employees':[\n        { \"name\": \"Michael Scott\",  \"seniority\": 7, \"department\": \"Management\" },\n        { \"name\": \"Dwight Schrute\", \"seniority\": 2, \"department\": \"Sales\" },\n        { \"name\": \"Jim Halpert\",    \"seniority\": 3, \"department\": \"Sales\" },\n        { \"name\": \"Kevin Malone\",   \"seniority\": 4, \"department\": \"Accounting\" },\n        { \"name\": \"Angela Martin\",  \"seniority\": 5, \"department\": \"Accounting\" }\n    ]},\n    proxy: {\n        type: 'memory',\n        reader: {\n            type: 'json',\n            root: 'employees'\n        }\n    }\n});\n\nExt.create('Ext.grid.Panel', {\n    title: 'Employees',\n    store: Ext.data.StoreManager.lookup('employeeStore'),\n    columns: [\n        { text: 'Name',     dataIndex: 'name' },\n        { text: 'Seniority', dataIndex: 'seniority' }\n    ],\n    features: [{ftype:'grouping'}],\n    width: 200,\n    height: 275,\n    renderTo: Ext.getBody()\n});\n
\n\n

Note: To use grouping with a grid that has locked columns, you need to supply\nthe grouping feature as a config object - so the grid can create two instances of the grouping feature.

\n
Defined By

Config options

Ext.grid.feature.Grouping
view source
: Boolean
Set to false to disable collapsing groups from the UI. ...

Set to false to disable collapsing groups from the UI.

\n\n

This is set to false when the associated store is\nbuffered.

\n

Defaults to: true

Ext.grid.feature.Grouping
view source
: Number
Number of pixels to indent per grouping level ...

Number of pixels to indent per grouping level

\n

Defaults to: 17

Ext.grid.feature.Grouping
view source
: Boolean
True to enable the grouping control in the header menu. ...

True to enable the grouping control in the header menu.

\n

Defaults to: true

Ext.grid.feature.Grouping
view source
: Boolean
True to allow the user to turn off grouping. ...

True to allow the user to turn off grouping.

\n

Defaults to: true

Ext.grid.feature.Grouping
view source
: String
Text displayed in the grid header menu for grouping by header. ...

Text displayed in the grid header menu for grouping by header.

\n

Defaults to: "Group by this field"

A string Template snippet, an array of strings (optionally followed by an object containing Template methods) to be u...

A string Template snippet, an array of strings (optionally followed by an object containing Template methods) to be used to construct a Template, or a Template instance.

\n\n
    \n
  • Example 1 (Template snippet):

    \n\n
    groupHeaderTpl: 'Group: {name}'\n
  • \n
  • Example 2 (Array):

    \n\n
    groupHeaderTpl: [\n    'Group: ',\n    '<div>{name:this.formatName}</div>',\n    {\n        formatName: function(name) {\n            return Ext.String.trim(name);\n        }\n    }\n]\n
  • \n
  • Example 3 (Template Instance):

    \n\n
    groupHeaderTpl: Ext.create('Ext.XTemplate',\n    'Group: ',\n    '<div>{name:this.formatName}</div>',\n    {\n        formatName: function(name) {\n            return Ext.String.trim(name);\n        }\n    }\n)\n
  • \n
\n\n

Defaults to: '{columnName}: {name}'

  • groupField : String

    The field name being grouped by.

    \n
  • columnName : String

    The column header associated with the field being grouped by if there is a column for the field, falls back to the groupField name.

    \n
  • groupValue : Mixed

    The value of the groupField for the group header being rendered.

    \n
  • renderedGroupValue : String

    The rendered value of the groupField for the group header being rendered, as produced by the column renderer.

    \n
  • name : String

    An alias for renderedGroupValue

    \n
  • rows : Ext.data.Model[]

    Deprecated - use children instead. An array containing the child records for the group being rendered. Not available if the store is buffered

    \n
  • children : Ext.data.Model[]

    An array containing the child records for the group being rendered. Not available if the store is buffered

    \n
Ext.grid.feature.Grouping
view source
: Boolean
True to hide the header that is currently grouped. ...

True to hide the header that is currently grouped.

\n

Defaults to: false

A config object containing one or more event handlers to be added to this object during initialization. ...

A config object containing one or more event handlers to be added to this object during initialization. This\nshould be a valid listeners config object as specified in the addListener example for attaching multiple\nhandlers at once.

\n\n

DOM events from Ext JS Components

\n\n

While some Ext JS Component classes export selected DOM events (e.g. \"click\", \"mouseover\" etc), this is usually\nonly done when extra value can be added. For example the DataView's itemclick event passing the node clicked on. To access DOM events directly from a\nchild element of a Component, we need to specify the element option to identify the Component property to add a\nDOM listener to:

\n\n
new Ext.panel.Panel({\n    width: 400,\n    height: 200,\n    dockedItems: [{\n        xtype: 'toolbar'\n    }],\n    listeners: {\n        click: {\n            element: 'el', //bind to the underlying el property on the panel\n            fn: function(){ console.log('click el'); }\n        },\n        dblclick: {\n            element: 'body', //bind to the underlying body property on the panel\n            fn: function(){ console.log('dblclick body'); }\n        }\n    }\n});\n
\n
The name of the property which contains the Array of summary objects. ...

The name of the property which contains the Array of summary objects.\nIt allows to use server-side calculated summaries.

\n
Ext.grid.feature.Grouping
view source
: String
Text displayed in the grid header for enabling/disabling grouping. ...

Text displayed in the grid header for enabling/disabling grouping.

\n

Defaults to: "Show in groups"

Ext.grid.feature.Grouping
view source
: Boolean
True to show the summary row. ...

\n\n

True to show the summary row.

\n

Defaults to: false

Overrides: Ext.grid.feature.AbstractSummary.showSummaryRow

Ext.grid.feature.Grouping
view source
: Boolean
True to start all groups collapsed. ...

True to start all groups collapsed.

\n

Defaults to: false

Properties

Defined By

Instance Properties

...
\n

Defaults to: 'Ext.Base'

Ext.grid.feature.Grouping
view source
: Stringprivate
...

\n

Defaults to: 'Click to collapse. CTRL/click collapses all others'

Ext.grid.feature.Grouping
view source
: Stringprivate
...
\n

Defaults to: Ext.baseCSSPrefix + 'grid-group-collapsed'

Ext.grid.feature.Grouping
view source
: Stringprivate
...
\n

Defaults to: Ext.baseCSSPrefix + 'grid-group-hd-collapsible'

...
\n

Defaults to: {}

Ext.grid.feature.Grouping
view source
: Stringprivate
...
\n

Defaults to: Ext.baseCSSPrefix + 'group-hd-container'

True when feature is disabled. ...

True when feature is disabled.

\n

Defaults to: false

Ext.grid.feature.Grouping
view source
: String
Prefix to use when firing events on the view. ...

Prefix to use when firing events on the view.\nFor example a prefix of group would expose \"groupclick\", \"groupcontextmenu\", \"groupdblclick\".

\n

Defaults to: 'group'

Overrides: Ext.grid.feature.Feature.eventPrefix

Ext.grid.feature.Grouping
view source
: String
Selector used to determine when to fire the event with the eventPrefix. ...

Selector used to determine when to fire the event with the eventPrefix.

\n

Defaults to: '.' + Ext.baseCSSPrefix + 'grid-group-hd'

Overrides: Ext.grid.feature.Feature.eventSelector

Initial suspended call count. ...

Initial suspended call count. Incremented when suspendEvents is called, decremented when resumeEvents is called.

\n

Defaults to: 0

Ext.grid.feature.Grouping
view source
: Stringprivate
...

\n

Defaults to: 'Click to expand. CTRL key collapses all others'

Reference to the grid panel

\n

Reference to the grid panel

\n
Ext.grid.feature.Grouping
view source
: Stringprivate
...
\n

Defaults to: Ext.baseCSSPrefix + 'grid-group-hd'

Ext.grid.feature.Grouping
view source
: Objectprivate
...
\n

Defaults to: {}

Ext.grid.feature.Grouping
view source
groupTpl : Objectprivate
\n
\n
Most features will expose additional events, some may not and will\nneed to change this to false. ...

Most features will expose additional events, some may not and will\nneed to change this to false.

\n

Defaults to: true

This object holds a key for any event that has a listener. ...

This object holds a key for any event that has a listener. The listener may be set\ndirectly on the instance, or on its class or a super class (via observe) or\non the MVC EventBus. The values of this object are truthy\n(a non-zero number) and falsy (0 or undefined). They do not represent an exact count\nof listeners. The value for an event is truthy if the event must be fired and is\nfalsy if there is no need to fire the event.

\n\n

The intended use of this property is to avoid the expense of fireEvent calls when\nthere are no listeners. This can be particularly helpful when one would otherwise\nhave to call fireEvent hundreds or thousands of times. It is used like this:

\n\n
 if (this.hasListeners.foo) {\n     this.fireEvent('foo', this, arg1);\n }\n
\n
Ext.grid.feature.Grouping
view source
: Stringprivate
...
\n

Defaults to: Ext.baseCSSPrefix + 'grid-group-hd-collapsed'

Ext.grid.feature.Grouping
view source
: Stringprivate
...
\n

Defaults to: Ext.baseCSSPrefix + 'grid-group-hd-not-collapsible'

...
\n

Defaults to: []

...
\n

Defaults to: {}

true in this class to identify an object as an instantiated Feature, or subclass thereof. ...

true in this class to identify an object as an instantiated Feature, or subclass thereof.

\n

Defaults to: true

...
\n

Defaults to: true

true in this class to identify an object as an instantiated Observable, or subclass thereof. ...

true in this class to identify an object as an instantiated Observable, or subclass thereof.

\n

Defaults to: true

Ext.grid.feature.Grouping
view source
: Objectprivate
...
\n

Defaults to: {}

Get the reference to the current class from which this object was instantiated. ...

Get the reference to the current class from which this object was instantiated. Unlike statics,\nthis.self is scope-dependent and it's meant to be used for dynamic inheritance. See statics\nfor a detailed comparison

\n\n
Ext.define('My.Cat', {\n    statics: {\n        speciesName: 'Cat' // My.Cat.speciesName = 'Cat'\n    },\n\n    constructor: function() {\n        alert(this.self.speciesName); // dependent on 'this'\n    },\n\n    clone: function() {\n        return new this.self();\n    }\n});\n\n\nExt.define('My.SnowLeopard', {\n    extend: 'My.Cat',\n    statics: {\n        speciesName: 'Snow Leopard'         // My.SnowLeopard.speciesName = 'Snow Leopard'\n    }\n});\n\nvar cat = new My.Cat();                     // alerts 'Cat'\nvar snowLeopard = new My.SnowLeopard();     // alerts 'Snow Leopard'\n\nvar clone = snowLeopard.clone();\nalert(Ext.getClassName(clone));             // alerts 'My.SnowLeopard'\n
\n
...
\n

Defaults to: Ext.baseCSSPrefix + 'grid-row-summary'

...
\n

Defaults to: '.' + Ext.baseCSSPrefix + 'grid-row-summary'

High priority rowTpl interceptor which sees summary rows early, and renders them correctly and then aborts the row re...

High priority rowTpl interceptor which sees summary rows early, and renders them correctly and then aborts the row rendering chain.\nThis will only see action when summary rows are being updated and Table.onUpdate->Table.bufferRender renders the individual updated sumary row.

\n
Ext.grid.feature.Grouping
view source
tableTpl : Objectprivate
\n
\n

Reference to the TableView.

\n

Reference to the TableView.

\n
Ext.grid.feature.Grouping
view source
: Booleanprivate
...
\n

Defaults to: true

Overrides: Ext.grid.feature.Feature.wrapsItem

Defined By

Static Properties

...
\n

Defaults to: []

Methods

Defined By

Instance Methods

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

  • eventNames : Object/String...

    Either an object with event names as properties with\na value of true. For example:

    \n\n
    this.addEvents({\n    storeloaded: true,\n    storecleared: true\n});\n
    \n\n

    Or any number of event names as separate parameters. For example:

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

Appends an event handler to this object. For example:

\n\n
myGridPanel.on(\"mouseover\", this.onMouseOver, this);\n
\n\n

The method also allows for a single argument to be passed which is a config object\ncontaining properties which specify multiple events. For example:

\n\n
myGridPanel.on({\n    cellClick: this.onCellClick,\n    mouseover: this.onMouseOver,\n    mouseout: this.onMouseOut,\n    scope: this // Important. Ensure \"this\" is correct during handler execution\n});\n
\n\n

One can also specify options for each event handler separately:

\n\n
myGridPanel.on({\n    cellClick: {fn: this.onCellClick, scope: this, single: true},\n    mouseover: {fn: panel.onMouseOver, scope: panel}\n});\n
\n\n

Names of methods in a specified scope may also be used. Note that\nscope MUST be specified to use this option:

\n\n
myGridPanel.on({\n    cellClick: {fn: 'onCellClick', scope: this, single: true},\n    mouseover: {fn: 'onMouseOver', scope: panel}\n});\n
\n

Parameters

  • eventName : String/Object

    The name of the event to listen for.\nMay also be an object who's property names are event names.

    \n\n
  • fn : Function (optional)

    The method the event invokes, or if scope is specified, the name* of the method within\nthe specified scope. Will be called with arguments\ngiven to fireEvent plus the options parameter described below.

    \n\n
  • scope : Object (optional)

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

    \n\n
  • options : Object (optional)

    An object containing handler configuration.

    \n\n\n\n\n

    Note: Unlike in ExtJS 3.x, the options object will also be passed as the last\nargument to every event handler.

    \n\n\n\n\n

    This object may contain any of the following properties:

    \n\n
    • scope : Object

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

      \n\n
    • delay : Number

      The number of milliseconds to delay the invocation of the handler after the event fires.

      \n\n
    • single : Boolean

      True to add a handler to handle just the next firing of the event, and then remove itself.

      \n\n
    • buffer : Number

      Causes the handler to be scheduled to run in an Ext.util.DelayedTask delayed\n by the specified number of milliseconds. If the event fires again within that time,\n the original handler is not invoked, but the new handler is scheduled in its place.

      \n\n
    • target : Ext.util.Observable

      Only call the handler if the event was fired on the target Observable, not if the event\n was bubbled up from a child Observable.

      \n\n
    • element : String

      This option is only valid for listeners bound to Components.\n The name of a Component property which references an element to add a listener to.

      \n\n\n\n\n

      This option is useful during Component construction to add DOM event listeners to elements of\n Components which will exist only after the Component is rendered.\n For example, to add a click listener to a Panel's body:

      \n\n\n\n\n
        new Ext.panel.Panel({\n      title: 'The title',\n      listeners: {\n          click: this.handlePanelClick,\n          element: 'body'\n      }\n  });\n
      \n\n
    • destroyable : Boolean (optional)

      When specified as true, the function returns A Destroyable object. An object which implements the destroy method which removes all listeners added in this call.

      \n\n

      Defaults to: false

    • priority : Number (optional)

      An optional numeric priority that determines the order in which event handlers\n are run. Event handlers with no priority will be run as if they had a priority\n of 0. Handlers with a higher priority will be prioritized to run sooner than\n those with a lower priority. Negative numbers can be used to set a priority\n lower than the default. Internally, the framework uses a range of 1000 or\n greater, and -1000 or lesser for handers that are intended to run before or\n after all others, so it is recommended to stay within the range of -999 to 999\n when setting the priority of event handlers in application-level code.

      \n\n\n\n\n

      Combining Options

      \n\n\n\n\n

      Using the options argument, it is possible to combine different types of listeners:

      \n\n\n\n\n

      A delayed, one-time listener.

      \n\n\n\n\n
      myPanel.on('hide', this.handleClick, this, {\n    single: true,\n    delay: 100\n});\n
      \n\n

Returns

  • Object

    Only when the destroyable option is specified.

    \n\n\n\n\n

    A Destroyable object. An object which implements the destroy method which removes all listeners added in this call. For example:

    \n\n\n\n\n
    this.btnListeners =  = myButton.on({\n    destroyable: true\n    mouseover:   function() { console.log('mouseover'); },\n    mouseout:    function() { console.log('mouseout'); },\n    click:       function() { console.log('click'); }\n});\n
    \n\n\n\n\n

    And when those listeners need to be removed:

    \n\n\n\n\n
    Ext.destroy(this.btnListeners);\n
    \n\n\n\n\n

    or

    \n\n\n\n\n
    this.btnListeners.destroy();\n
    \n\n
( item, ename, [fn], [scope], [options] ) : Object
Adds listeners to any Observable object (or Ext.Element) which are automatically removed when this Component is\ndestr...

Adds listeners to any Observable object (or Ext.Element) which are automatically removed when this Component is\ndestroyed.

\n

Parameters

  • item : Ext.util.Observable/Ext.Element

    The item to which to add a listener/listeners.

    \n\n
  • ename : Object/String

    The event name, or an object containing event name properties.

    \n\n
  • fn : Function (optional)

    If the ename parameter was an event name, this is the handler function.

    \n\n
  • scope : Object (optional)

    If the ename parameter was an event name, this is the scope (this reference)\nin which the handler function is executed.

    \n\n
  • options : Object (optional)

    If the ename parameter was an event name, this is the\naddListener options.

    \n\n

Returns

  • Object

    Only when the destroyable option is specified.

    \n\n\n\n\n

    A Destroyable object. An object which implements the destroy method which removes all listeners added in this call. For example:

    \n\n\n\n\n
    this.btnListeners =  = myButton.mon({\n    destroyable: true\n    mouseover:   function() { console.log('mouseover'); },\n    mouseout:    function() { console.log('mouseout'); },\n    click:       function() { console.log('click'); }\n});\n
    \n\n\n\n\n

    And when those listeners need to be removed:

    \n\n\n\n\n
    Ext.destroy(this.btnListeners);\n
    \n\n\n\n\n

    or

    \n\n\n\n\n
    this.btnListeners.destroy();\n
    \n\n
Ext.grid.feature.Grouping
view source
( collapsed, groupName, focus )private
...
\n

Parameters

Ext.grid.feature.Grouping
view source
( )private
Attach events to view ...

Attach events to view

\n
Ext.grid.feature.Grouping
view source
( fromPartner )private
...
\n

Parameters

( args ) : Objectdeprecatedprotected
Call the original method that was previously overridden with override\n\nExt.define('My.Cat', {\n constructor: functi...

Call the original method that was previously overridden with override

\n\n
Ext.define('My.Cat', {\n    constructor: function() {\n        alert(\"I'm a cat!\");\n    }\n});\n\nMy.Cat.override({\n    constructor: function() {\n        alert(\"I'm going to be a cat!\");\n\n        this.callOverridden();\n\n        alert(\"Meeeeoooowwww\");\n    }\n});\n\nvar kitty = new My.Cat(); // alerts \"I'm going to be a cat!\"\n                          // alerts \"I'm a cat!\"\n                          // alerts \"Meeeeoooowwww\"\n
\n
\n

This method has been deprecated

\n

as of 4.1. Use callParent instead.

\n\n
\n

Parameters

  • args : Array/Arguments

    The arguments, either an array or the arguments object\nfrom the current method, for example: this.callOverridden(arguments)

    \n

Returns

  • Object

    Returns the result of calling the overridden method

    \n
Call the \"parent\" method of the current method. ...

Call the \"parent\" method of the current method. That is the method previously\noverridden by derivation or by an override (see Ext.define).

\n\n
 Ext.define('My.Base', {\n     constructor: function (x) {\n         this.x = x;\n     },\n\n     statics: {\n         method: function (x) {\n             return x;\n         }\n     }\n });\n\n Ext.define('My.Derived', {\n     extend: 'My.Base',\n\n     constructor: function () {\n         this.callParent([21]);\n     }\n });\n\n var obj = new My.Derived();\n\n alert(obj.x);  // alerts 21\n
\n\n

This can be used with an override as follows:

\n\n
 Ext.define('My.DerivedOverride', {\n     override: 'My.Derived',\n\n     constructor: function (x) {\n         this.callParent([x*2]); // calls original My.Derived constructor\n     }\n });\n\n var obj = new My.Derived();\n\n alert(obj.x);  // now alerts 42\n
\n\n

This also works with static methods.

\n\n
 Ext.define('My.Derived2', {\n     extend: 'My.Base',\n\n     statics: {\n         method: function (x) {\n             return this.callParent([x*2]); // calls My.Base.method\n         }\n     }\n });\n\n alert(My.Base.method(10);     // alerts 10\n alert(My.Derived2.method(10); // alerts 20\n
\n\n

Lastly, it also works with overridden static methods.

\n\n
 Ext.define('My.Derived2Override', {\n     override: 'My.Derived2',\n\n     statics: {\n         method: function (x) {\n             return this.callParent([x*2]); // calls My.Derived2.method\n         }\n     }\n });\n\n alert(My.Derived2.method(10); // now alerts 40\n
\n\n

To override a method and replace it and also call the superclass method, use\ncallSuper. This is often done to patch a method to fix a bug.

\n

Parameters

  • args : Array/Arguments

    The arguments, either an array or the arguments object\nfrom the current method, for example: this.callParent(arguments)

    \n

Returns

  • Object

    Returns the result of calling the parent method

    \n
This method is used by an override to call the superclass method but bypass any\noverridden method. ...

This method is used by an override to call the superclass method but bypass any\noverridden method. This is often done to \"patch\" a method that contains a bug\nbut for whatever reason cannot be fixed directly.

\n\n

Consider:

\n\n
 Ext.define('Ext.some.Class', {\n     method: function () {\n         console.log('Good');\n     }\n });\n\n Ext.define('Ext.some.DerivedClass', {\n     method: function () {\n         console.log('Bad');\n\n         // ... logic but with a bug ...\n\n         this.callParent();\n     }\n });\n
\n\n

To patch the bug in DerivedClass.method, the typical solution is to create an\noverride:

\n\n
 Ext.define('App.paches.DerivedClass', {\n     override: 'Ext.some.DerivedClass',\n\n     method: function () {\n         console.log('Fixed');\n\n         // ... logic but with bug fixed ...\n\n         this.callSuper();\n     }\n });\n
\n\n

The patch method cannot use callParent to call the superclass method since\nthat would call the overridden method containing the bug. In other words, the\nabove patch would only produce \"Fixed\" then \"Good\" in the console log, whereas,\nusing callParent would produce \"Fixed\" then \"Bad\" then \"Good\".

\n

Parameters

  • args : Array/Arguments

    The arguments, either an array or the arguments object\nfrom the current method, for example: this.callSuper(arguments)

    \n

Returns

  • Object

    Returns the result of calling the superclass method

    \n
...
\n

Parameters

Ext.grid.feature.Grouping
view source
( rows, rowValues )private
...
\n

Parameters

Ext.grid.feature.Grouping
view source
( )private
...
\n
Removes all listeners for this object including the managed listeners ...

Removes all listeners for this object including the managed listeners

\n
Removes all managed listeners for this object. ...

Removes all managed listeners for this object.

\n
Ext.grid.feature.Grouping
view source
( groupName, focus )
Collapse a group ...

Collapse a group

\n

Parameters

  • groupName : String

    The group name

    \n
  • focus : Boolean

    Pass true to focus the group after expand.

    \n
Ext.grid.feature.Grouping
view source
( )
Collapse all groups ...

Collapse all groups

\n
( eventName, args, bubbles )private
Continue to fire event. ...

Continue to fire event.

\n

Parameters

Ext.grid.feature.Grouping
view source
( group )private
...
\n

Parameters

Ext.grid.feature.Grouping
view source
( group )private
...
\n

Parameters

Creates an event handling function which refires the event from this object as the passed event name. ...

Creates an event handling function which refires the event from this object as the passed event name.

\n

Parameters

  • newName : String

    The name under which to refire the passed parameters.

    \n
  • beginEnd : Array (optional)

    The caller can specify on which indices to slice.

    \n

Returns

Ext.grid.feature.Grouping
view source
( )private
Ext.grid.feature.Grouping
view source
( )
Disables the feature. ...

Disables the feature.

\n

Overrides: Ext.grid.feature.Feature.disable

Ext.grid.feature.Grouping
view source
( collapsed, groupName, focus )private
...
\n

Parameters

Ext.grid.feature.Grouping
view source
( )
Enables the feature. ...

Enables the feature.

\n

Overrides: Ext.grid.feature.Feature.enable

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

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

\n\n

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

\n\n

Example:

\n\n
Ext.define('Ext.overrides.form.field.Base', {\n    override: 'Ext.form.field.Base',\n\n    //  Add functionality to Field's initComponent to enable the change event to bubble\n    initComponent: function () {\n        this.callParent();\n        this.enableBubble('change');\n    }\n});\n\nvar myForm = Ext.create('Ext.form.Panel', {\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

Parameters

  • eventNames : String/String[]

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

    \n
Ext.grid.feature.Grouping
view source
( groupName, focus )
Expand a group ...

Expand a group

\n

Parameters

  • groupName : String

    The group name

    \n
  • focus : Boolean

    Pass true to focus the group after expand.

    \n
Ext.grid.feature.Grouping
view source
( )
Expand all groups ...

Expand all groups

\n
Fires the specified event with the passed parameters (minus the event name, plus the options object passed\nto addList...

Fires the specified event with the passed parameters (minus the event name, plus the options object passed\nto addListener).

\n\n

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

\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
Fires the specified event with the passed parameter list. ...

Fires the specified event with the passed parameter list.

\n\n

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

\n

Parameters

  • eventName : String

    The name of the event to fire.

    \n
  • args : Object[]

    An array of parameters which are passed to handlers.

    \n

Returns

  • Boolean

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

    \n
Used by the Grouping Feature when showSummaryRow is true. ...

Used by the Grouping Feature when showSummaryRow is true.

\n\n

Generates group summary data for the whole store.

\n

Returns

  • Object

    An object hash keyed by group name containing summary records.

    \n
Gets the bubbling parent for an Observable ...

Gets the bubbling parent for an Observable

\n

Returns

...
\n

Parameters

Ext.grid.feature.Grouping
view source
( eventName, view, featureTarget, e )template
Abstract method to be overriden when a feature should add additional\narguments to its event signature. ...

Abstract method to be overriden when a feature should add additional\narguments to its event signature. By default the event will fire:

\n\n\n\n\n

The method must also return the eventName as the first index of the array\nto be passed to fireEvent.

\n
\n

This is a template method.\n a hook into the functionality of this class.\n Feel free to override it in child classes.

\n
\n

Parameters

Overrides: Ext.grid.feature.Feature.getFireEventArgs

Ext.grid.feature.Grouping
view source
( name )private
...
\n

Parameters

Ext.grid.feature.Grouping
view source
( )private
...
\n
Ext.grid.feature.Grouping
view source
( element )private
...
\n

Parameters

Ext.grid.feature.Grouping
view source
( groupField )private
...
\n

Parameters

Ext.grid.feature.Grouping
view source
( groupName )private
...
\n

Parameters

Returns the initial configuration passed to constructor when instantiating\nthis class. ...

Returns the initial configuration passed to constructor when instantiating\nthis class.

\n

Parameters

  • name : String (optional)

    Name of the config option to return.

    \n

Returns

  • Object/Mixed

    The full config object or a single config value\nwhen name parameter specified.

    \n
Ext.grid.feature.Grouping
view source
( dataIndex ) : Ext.grid.header.Containerprivate
Gets the related menu item for a dataIndex ...

Gets the related menu item for a dataIndex

\n

Parameters

Returns

Ext.grid.feature.Grouping
view source
( )private
...
\n
Ext.grid.feature.Grouping
view source
( record ) : Object
Returns the group data object for the group to which the passed record belongs if the Store is grouped. ...

Returns the group data object for the group to which the passed record belongs if the Store is grouped.

\n

Parameters

  • record : Ext.data.Model

    The record for which to return group information.

    \n

Returns

  • Object

    A single group data block as returned from Store.getGroups. Returns\nundefined if the Store is not grouped.

    \n
Get the summary data for a field. ...

Get the summary data for a field.

\n

Parameters

  • store : Ext.data.Store

    The store to get the data from

    \n
  • type : String/Function

    The type of aggregation. If a function is specified it will\nbe passed to the stores aggregate function.

    \n
  • field : String

    The field to aggregate on

    \n
  • group : Boolean

    True to aggregate in grouped mode

    \n

Returns

  • Number/String/Object

    See the return type for the store functions.\nif the group parameter is true An object is returned with a property named for each group who's\nvalue is the summary value.

    \n
...
\n

Parameters

Checks to see if this object has any listeners for a specified event, or whether the event bubbles. ...

Checks to see if this object has any listeners for a specified event, or whether the event bubbles. The answer\nindicates whether the event needs firing or not.

\n

Parameters

  • eventName : String

    The name of the event to check for

    \n

Returns

  • Boolean

    true if the event is being listened for or bubbles, else false

    \n
Ext.grid.feature.Grouping
view source
( grid )private
...
\n

Parameters

Overrides: Ext.grid.feature.AbstractSummary.init

( config ) : Ext.Basechainableprotected
Initialize configuration for this class. ...

Initialize configuration for this class. a typical example:

\n\n
Ext.define('My.awesome.Class', {\n    // The default config\n    config: {\n        name: 'Awesome',\n        isAwesome: true\n    },\n\n    constructor: function(config) {\n        this.initConfig(config);\n    }\n});\n\nvar awesome = new My.awesome.Class({\n    name: 'Super Awesome'\n});\n\nalert(awesome.getName()); // 'Super Awesome'\n
\n

Parameters

Returns

Ext.grid.feature.Grouping
view source
( )private
...
\n
Ext.grid.feature.Grouping
view source
( )private
private\nReturns true if all groups are collapsed ...

private\nReturns true if all groups are collapsed

\n
Ext.grid.feature.Grouping
view source
( )private
private\nReturns true if all groups are expanded ...

private\nReturns true if all groups are expanded

\n
Ext.grid.feature.Grouping
view source
( groupName ) : Boolean
Returns true if the named group is expanded. ...

Returns true if the named group is expanded.

\n

Parameters

Returns

  • Boolean

    true if the group defined by that value is expanded.

    \n
( item, ename, [fn], [scope], [options] ) : Object
Shorthand for addManagedListener. ...

Shorthand for addManagedListener.

\n\n

Adds listeners to any Observable object (or Ext.Element) which are automatically removed when this Component is\ndestroyed.

\n

Parameters

  • item : Ext.util.Observable/Ext.Element

    The item to which to add a listener/listeners.

    \n\n
  • ename : Object/String

    The event name, or an object containing event name properties.

    \n\n
  • fn : Function (optional)

    If the ename parameter was an event name, this is the handler function.

    \n\n
  • scope : Object (optional)

    If the ename parameter was an event name, this is the scope (this reference)\nin which the handler function is executed.

    \n\n
  • options : Object (optional)

    If the ename parameter was an event name, this is the\naddListener options.

    \n\n

Returns

  • Object

    Only when the destroyable option is specified.

    \n\n\n\n\n

    A Destroyable object. An object which implements the destroy method which removes all listeners added in this call. For example:

    \n\n\n\n\n
    this.btnListeners =  = myButton.mon({\n    destroyable: true\n    mouseover:   function() { console.log('mouseover'); },\n    mouseout:    function() { console.log('mouseout'); },\n    click:       function() { console.log('click'); }\n});\n
    \n\n\n\n\n

    And when those listeners need to be removed:

    \n\n\n\n\n
    Ext.destroy(this.btnListeners);\n
    \n\n\n\n\n

    or

    \n\n\n\n\n
    this.btnListeners.destroy();\n
    \n\n
( item, ename, [fn], [scope] )
Shorthand for removeManagedListener. ...

Shorthand for removeManagedListener.

\n\n

Removes listeners that were added by the mon method.

\n

Parameters

  • item : Ext.util.Observable/Ext.Element

    The item from which to remove a listener/listeners.

    \n\n
  • ename : Object/String

    The event name, or an object containing event name properties.

    \n\n
  • fn : Function (optional)

    If the ename parameter was an event name, this is the handler function.

    \n\n
  • scope : Object (optional)

    If the ename parameter was an event name, this is the scope (this reference)\nin which the handler function is executed.

    \n\n
( eventName, [fn], [scope], [options] ) : Object
Shorthand for addListener. ...

Shorthand for addListener.

\n\n

Appends an event handler to this object. For example:

\n\n
myGridPanel.on(\"mouseover\", this.onMouseOver, this);\n
\n\n

The method also allows for a single argument to be passed which is a config object\ncontaining properties which specify multiple events. For example:

\n\n
myGridPanel.on({\n    cellClick: this.onCellClick,\n    mouseover: this.onMouseOver,\n    mouseout: this.onMouseOut,\n    scope: this // Important. Ensure \"this\" is correct during handler execution\n});\n
\n\n

One can also specify options for each event handler separately:

\n\n
myGridPanel.on({\n    cellClick: {fn: this.onCellClick, scope: this, single: true},\n    mouseover: {fn: panel.onMouseOver, scope: panel}\n});\n
\n\n

Names of methods in a specified scope may also be used. Note that\nscope MUST be specified to use this option:

\n\n
myGridPanel.on({\n    cellClick: {fn: 'onCellClick', scope: this, single: true},\n    mouseover: {fn: 'onMouseOver', scope: panel}\n});\n
\n

Parameters

  • eventName : String/Object

    The name of the event to listen for.\nMay also be an object who's property names are event names.

    \n\n
  • fn : Function (optional)

    The method the event invokes, or if scope is specified, the name* of the method within\nthe specified scope. Will be called with arguments\ngiven to fireEvent plus the options parameter described below.

    \n\n
  • scope : Object (optional)

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

    \n\n
  • options : Object (optional)

    An object containing handler configuration.

    \n\n\n\n\n

    Note: Unlike in ExtJS 3.x, the options object will also be passed as the last\nargument to every event handler.

    \n\n\n\n\n

    This object may contain any of the following properties:

    \n\n
    • scope : Object

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

      \n\n
    • delay : Number

      The number of milliseconds to delay the invocation of the handler after the event fires.

      \n\n
    • single : Boolean

      True to add a handler to handle just the next firing of the event, and then remove itself.

      \n\n
    • buffer : Number

      Causes the handler to be scheduled to run in an Ext.util.DelayedTask delayed\n by the specified number of milliseconds. If the event fires again within that time,\n the original handler is not invoked, but the new handler is scheduled in its place.

      \n\n
    • target : Ext.util.Observable

      Only call the handler if the event was fired on the target Observable, not if the event\n was bubbled up from a child Observable.

      \n\n
    • element : String

      This option is only valid for listeners bound to Components.\n The name of a Component property which references an element to add a listener to.

      \n\n\n\n\n

      This option is useful during Component construction to add DOM event listeners to elements of\n Components which will exist only after the Component is rendered.\n For example, to add a click listener to a Panel's body:

      \n\n\n\n\n
        new Ext.panel.Panel({\n      title: 'The title',\n      listeners: {\n          click: this.handlePanelClick,\n          element: 'body'\n      }\n  });\n
      \n\n
    • destroyable : Boolean (optional)

      When specified as true, the function returns A Destroyable object. An object which implements the destroy method which removes all listeners added in this call.

      \n\n

      Defaults to: false

    • priority : Number (optional)

      An optional numeric priority that determines the order in which event handlers\n are run. Event handlers with no priority will be run as if they had a priority\n of 0. Handlers with a higher priority will be prioritized to run sooner than\n those with a lower priority. Negative numbers can be used to set a priority\n lower than the default. Internally, the framework uses a range of 1000 or\n greater, and -1000 or lesser for handers that are intended to run before or\n after all others, so it is recommended to stay within the range of -999 to 999\n when setting the priority of event handlers in application-level code.

      \n\n\n\n\n

      Combining Options

      \n\n\n\n\n

      Using the options argument, it is possible to combine different types of listeners:

      \n\n\n\n\n

      A delayed, one-time listener.

      \n\n\n\n\n
      myPanel.on('hide', this.handleClick, this, {\n    single: true,\n    delay: 100\n});\n
      \n\n

Returns

  • Object

    Only when the destroyable option is specified.

    \n\n\n\n\n

    A Destroyable object. An object which implements the destroy method which removes all listeners added in this call. For example:

    \n\n\n\n\n
    this.btnListeners =  = myButton.on({\n    destroyable: true\n    mouseover:   function() { console.log('mouseover'); },\n    mouseout:    function() { console.log('mouseout'); },\n    click:       function() { console.log('click'); }\n});\n
    \n\n\n\n\n

    And when those listeners need to be removed:

    \n\n\n\n\n
    Ext.destroy(this.btnListeners);\n
    \n\n\n\n\n

    or

    \n\n\n\n\n
    this.btnListeners.destroy();\n
    \n\n
Ext.grid.feature.Grouping
view source
( headerOwnerCt, header )private
...
\n

Parameters

Ext.grid.feature.Grouping
view source
( )private
Update first and last records in groups when column moves\nBecause of the RowWrap template, this will update the group...

Update first and last records in groups when column moves\nBecause of the RowWrap template, this will update the groups' headers and footers

\n
( names, callback, scope )private
...
\n

Parameters

Ext.grid.feature.Grouping
view source
( )private
...
\n
Ext.grid.feature.Grouping
view source
( view, rowElement, groupName, e )private
Toggle between expanded/collapsed state when clicking on\nthe group. ...

Toggle between expanded/collapsed state when clicking on\nthe group.

\n

Parameters

Ext.grid.feature.Grouping
view source
( keyCode, event )private
...
\n

Parameters

Ext.grid.feature.Grouping
view source
( menuItem, e )private
Group by the header the user has clicked on. ...

Group by the header the user has clicked on.

\n

Parameters

Ext.grid.feature.Grouping
view source
( menuItem, checked )private
Turn on and off grouping via the menu ...

Turn on and off grouping via the menu

\n

Parameters

Ext.grid.feature.Grouping
view source
( grid, store, columns, oldStore, oldColumns )private
...
\n

Parameters

( summaryRecord, contextValues, out )private
...
\n

Parameters

...
\n

Parameters

Prepares a given class for observable instances. ...

Prepares a given class for observable instances. This method is called when a\nclass derives from this class or uses this class as a mixin.

\n

Parameters

  • T : Function

    The class constructor to prepare.

    \n
Ext.grid.feature.Grouping
view source
( )private
Prunes the grouped header from the header container ...

Prunes the grouped header from the header container

\n
Ext.grid.feature.Grouping
view source
( )private
...
\n
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\n

For example if you are extending Grid, you might decide to forward some events from store.\nSo you can do this inside your initComponent:

\n\n
this.relayEvents(this.getStore(), ['load']);\n
\n\n

The grid instance will then have an observable 'load' event which will be passed the\nparameters of the store's load event and any function fired with the grid's load event\nwould have access to the grid using the this keyword.

\n

Parameters

  • origin : Object

    The Observable whose events this object is to relay.

    \n
  • events : String[]

    Array of event names to relay.

    \n
  • prefix : String (optional)

    A common prefix to prepend to the event names. For example:

    \n\n
    this.relayEvents(this.getStore(), ['load', 'clear'], 'store');\n
    \n\n

    Now the grid will forward 'load' and 'clear' events of store as 'storeload' and 'storeclear'.

    \n

Returns

  • Object

    A Destroyable object. An object which implements the destroy method which, when destroyed, removes all relayers. For example:

    \n\n
    this.storeRelayers = this.relayEvents(this.getStore(), ['load', 'clear'], 'store');\n
    \n\n

    Can be undone by calling

    \n\n
    Ext.destroy(this.storeRelayers);\n
    \n\n

    or

    \n\n
    this.store.relayers.destroy();\n
    \n
Removes an event handler. ...

Removes an event handler.

\n

Parameters

  • eventName : String

    The type of event the handler was associated with.

    \n\n
  • fn : Function

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

    \n\n
  • scope : Object (optional)

    The scope originally specified for the handler. It must be the same as the\nscope argument specified in the original call to addListener or the listener will not be removed.

    \n\n
Removes listeners that were added by the mon method. ...

Removes listeners that were added by the mon method.

\n

Parameters

  • item : Ext.util.Observable/Ext.Element

    The item from which to remove a listener/listeners.

    \n\n
  • ename : Object/String

    The event name, or an object containing event name properties.

    \n\n
  • fn : Function (optional)

    If the ename parameter was an event name, this is the handler function.

    \n\n
  • scope : Object (optional)

    If the ename parameter was an event name, this is the scope (this reference)\nin which the handler function is executed.

    \n\n
Remove a single managed listener item ...

Remove a single managed listener item

\n

Parameters

  • isClear : Boolean

    True if this is being called during a clear

    \n
  • managedListener : Object

    The managed listener item\nSee removeManagedListener for other args

    \n
Resumes firing of the named event(s). ...

Resumes firing of the named event(s).

\n\n

After calling this method to resume events, the events will fire when requested to fire.

\n\n

Note that if the suspendEvent method is called multiple times for a certain event,\nthis converse method will have to be called the same number of times for it to resume firing.

\n

Parameters

  • eventName : String...

    Multiple event names to resume.

    \n
Resumes firing events (see suspendEvents). ...

Resumes firing events (see suspendEvents).

\n\n

If events were suspended using the queueSuspended parameter, then all events fired\nduring event suspension will be sent to any listeners now.

\n
( config, applyIfNotSet ) : Ext.Basechainableprivate
...
\n

Parameters

Returns

Ext.grid.feature.Grouping
view source
( rows, rowValues )private
...
\n

Parameters

Ext.grid.feature.Grouping
view source
( record, idx, rowValues )private
...
\n

Parameters

Ext.grid.feature.Grouping
view source
( t, header )private
...
\n

Parameters

Get the reference to the class from which this object was instantiated. ...

Get the reference to the class from which this object was instantiated. Note that unlike self,\nthis.statics() is scope-independent and it always returns the class from which it was called, regardless of what\nthis points to during run-time

\n\n
Ext.define('My.Cat', {\n    statics: {\n        totalCreated: 0,\n        speciesName: 'Cat' // My.Cat.speciesName = 'Cat'\n    },\n\n    constructor: function() {\n        var statics = this.statics();\n\n        alert(statics.speciesName);     // always equals to 'Cat' no matter what 'this' refers to\n                                        // equivalent to: My.Cat.speciesName\n\n        alert(this.self.speciesName);   // dependent on 'this'\n\n        statics.totalCreated++;\n    },\n\n    clone: function() {\n        var cloned = new this.self;                      // dependent on 'this'\n\n        cloned.groupName = this.statics().speciesName;   // equivalent to: My.Cat.speciesName\n\n        return cloned;\n    }\n});\n\n\nExt.define('My.SnowLeopard', {\n    extend: 'My.Cat',\n\n    statics: {\n        speciesName: 'Snow Leopard'     // My.SnowLeopard.speciesName = 'Snow Leopard'\n    },\n\n    constructor: function() {\n        this.callParent();\n    }\n});\n\nvar cat = new My.Cat();                 // alerts 'Cat', then alerts 'Cat'\n\nvar snowLeopard = new My.SnowLeopard(); // alerts 'Cat', then alerts 'Snow Leopard'\n\nvar clone = snowLeopard.clone();\nalert(Ext.getClassName(clone));         // alerts 'My.SnowLeopard'\nalert(clone.groupName);                 // alerts 'Cat'\n\nalert(My.Cat.totalCreated);             // alerts 3\n
\n

Returns

Suspends firing of the named event(s). ...

Suspends firing of the named event(s).

\n\n

After calling this method to suspend events, the events will no longer fire when requested to fire.

\n\n

Note that if this is called multiple times for a certain event, the converse method\nresumeEvent will have to be called the same number of times for it to resume firing.

\n

Parameters

  • eventName : String...

    Multiple event names to suspend.

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

Suspends 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
Toggle whether or not to show the summary row. ...

Toggle whether or not to show the summary row.

\n

Parameters

  • visible : Boolean

    True to show the summary row

    \n
( eventName, fn, [scope] )
Shorthand for removeListener. ...

Shorthand for removeListener.

\n\n

Removes an event handler.

\n

Parameters

  • eventName : String

    The type of event the handler was associated with.

    \n\n
  • fn : Function

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

    \n\n
  • scope : Object (optional)

    The scope originally specified for the handler. It must be the same as the\nscope argument specified in the original call to addListener or the listener will not be removed.

    \n\n
Ext.grid.feature.Grouping
view source
( fromPartner )private
...
\n

Parameters

Ext.grid.feature.Grouping
view source
( record, row, rowIndex, e )private
...
\n

Parameters

Overrides: Ext.grid.feature.Feature.vetoEvent

Defined By

Static Methods

( config )privatestatic
...
\n

Parameters

( members )chainableprivatestatic
...
\n

Parameters

( name, member )chainableprivatestatic
...
\n

Parameters

( members )chainablestatic
Add methods / properties to the prototype of this class. ...

Add methods / properties to the prototype of this class.

\n\n
Ext.define('My.awesome.Cat', {\n    constructor: function() {\n        ...\n    }\n});\n\n My.awesome.Cat.addMembers({\n     meow: function() {\n        alert('Meowww...');\n     }\n });\n\n var kitty = new My.awesome.Cat;\n kitty.meow();\n
\n

Parameters

( members ) : Ext.Basechainablestatic
Add / override static properties of this class. ...

Add / override static properties of this class.

\n\n
Ext.define('My.cool.Class', {\n    ...\n});\n\nMy.cool.Class.addStatics({\n    someProperty: 'someValue',      // My.cool.Class.someProperty = 'someValue'\n    method1: function() { ... },    // My.cool.Class.method1 = function() { ... };\n    method2: function() { ... }     // My.cool.Class.method2 = function() { ... };\n});\n
\n

Parameters

Returns

( xtype )chainableprivatestatic
...
\n

Parameters

( fromClass, members ) : Ext.Basechainableprivatestatic
Borrow another class' members to the prototype of this class. ...

Borrow another class' members to the prototype of this class.

\n\n
Ext.define('Bank', {\n    money: '$$$',\n    printMoney: function() {\n        alert('$$$$$$$');\n    }\n});\n\nExt.define('Thief', {\n    ...\n});\n\nThief.borrow(Bank, ['money', 'printMoney']);\n\nvar steve = new Thief();\n\nalert(steve.money); // alerts '$$$'\nsteve.printMoney(); // alerts '$$$$$$$'\n
\n

Parameters

  • fromClass : Ext.Base

    The class to borrow members from

    \n
  • members : Array/String

    The names of the members to borrow

    \n

Returns

Create a new instance of this Class. ...

Create a new instance of this Class.

\n\n
Ext.define('My.cool.Class', {\n    ...\n});\n\nMy.cool.Class.create({\n    someConfig: true\n});\n
\n\n

All parameters are passed to the constructor of the class.

\n

Returns

( alias, origin )static
Create aliases for existing prototype methods. ...

Create aliases for existing prototype methods. Example:

\n\n
Ext.define('My.cool.Class', {\n    method1: function() { ... },\n    method2: function() { ... }\n});\n\nvar test = new My.cool.Class();\n\nMy.cool.Class.createAlias({\n    method3: 'method1',\n    method4: 'method2'\n});\n\ntest.method3(); // test.method1()\n\nMy.cool.Class.createAlias('method5', 'method3');\n\ntest.method5(); // test.method3() -> test.method1()\n
\n

Parameters

( config )privatestatic
...
\n

Parameters

Get the current class' name in string format. ...

Get the current class' name in string format.

\n\n
Ext.define('My.cool.Class', {\n    constructor: function() {\n        alert(this.self.getName()); // alerts 'My.cool.Class'\n    }\n});\n\nMy.cool.Class.getName(); // 'My.cool.Class'\n
\n

Returns

( )deprecatedstatic
Adds members to class. ...

Adds members to class.

\n
\n

This method has been deprecated since 4.1

\n

Use addMembers instead.

\n\n
\n
( name, mixinClass )privatestatic
Used internally by the mixins pre-processor ...

Used internally by the mixins pre-processor

\n

Parameters

( fn, scope )chainableprivatestatic
...
\n

Parameters

( members ) : Ext.Basechainabledeprecatedstatic
Override members of this class. ...

Override members of this class. Overridden methods can be invoked via\ncallParent.

\n\n
Ext.define('My.Cat', {\n    constructor: function() {\n        alert(\"I'm a cat!\");\n    }\n});\n\nMy.Cat.override({\n    constructor: function() {\n        alert(\"I'm going to be a cat!\");\n\n        this.callParent(arguments);\n\n        alert(\"Meeeeoooowwww\");\n    }\n});\n\nvar kitty = new My.Cat(); // alerts \"I'm going to be a cat!\"\n                          // alerts \"I'm a cat!\"\n                          // alerts \"Meeeeoooowwww\"\n
\n\n

As of 4.1, direct use of this method is deprecated. Use Ext.define\ninstead:

\n\n
Ext.define('My.CatOverride', {\n    override: 'My.Cat',\n    constructor: function() {\n        alert(\"I'm going to be a cat!\");\n\n        this.callParent(arguments);\n\n        alert(\"Meeeeoooowwww\");\n    }\n});\n
\n\n

The above accomplishes the same result but can be managed by the Ext.Loader\nwhich can properly order the override and its target class and the build process\ncan determine whether the override is needed based on the required state of the\ntarget class (My.Cat).

\n
\n

This method has been deprecated since 4.1.0

\n

Use Ext.define instead

\n\n
\n

Parameters

  • members : Object

    The properties to add to this class. This should be\nspecified as an object literal containing one or more properties.

    \n

Returns

Defined By

Events

Ext.grid.feature.Grouping
view source
( view, node, group, e, eOpts )
...
\n

Parameters

Ext.grid.feature.Grouping
view source
( view, node, group, eOpts )
...
\n

Parameters

Ext.grid.feature.Grouping
view source
( view, node, group, e, eOpts )
...
\n

Parameters

Ext.grid.feature.Grouping
view source
( view, node, group, e, eOpts )
...
\n

Parameters

Ext.grid.feature.Grouping
view source
( view, node, group, eOpts )
...
\n

Parameters

Defined By

CSS Variables

Ext.grid.feature.Grouping
view source
: color
The background color of group headers ...

The background color of group headers

\n

Defaults to: #fff

Ext.grid.feature.Grouping
view source
: color
The border-color of group headers ...

The border-color of group headers

\n

Defaults to: adjust-color ( $base-color , $hue : 0.844deg , $saturation : 7.644% , $lightness : - 8.627% )

Ext.grid.feature.Grouping
view source
: string
The border-style of group headers ...

The border-style of group headers

\n

Defaults to: solid

Ext.grid.feature.Grouping
view source
: number/list
The border-width of group headers ...

The border-width of group headers

\n

Defaults to: 0 0 2px 0

Ext.grid.feature.Grouping
view source
: string
The cursor of group headers ...

The cursor of group headers

\n

Defaults to: pointer

Ext.grid.feature.Grouping
view source
: number/list
The padding of group headers ...

The padding of group headers

\n

Defaults to: 10px 4px 4px 4px

Ext.grid.feature.Grouping
view source
: number/list
The amount of padding to add to the group title element. ...

The amount of padding to add to the group title element. This is typically used\nto reserve space for an icon by setting the amountof space to be reserved for the icon\nas the left value and setting the remaining sides to 0.

\n

Defaults to: 0 0 0 14px

Ext.grid.feature.Grouping
view source
: color
The text color of group header titles ...

The text color of group header titles

\n

Defaults to: adjust-color ( $base-color , $hue : 0.952deg , $saturation : - 6.718% , $lightness : - 41.961% )

Ext.grid.feature.Grouping
view source
: string
The font-family of group header titles ...

The font-family of group header titles

\n

Defaults to: $font-family

Ext.grid.feature.Grouping
view source
: number
The font-size of group header titles ...

The font-size of group header titles

\n

Defaults to: $font-size

Ext.grid.feature.Grouping
view source
: string
The font-weight of group header titles ...

The font-weight of group header titles

\n

Defaults to: bold

Ext.grid.feature.Grouping
view source
: number
The line-height of group header titles ...

The line-height of group header titles

\n

Defaults to: round ( $grid-grouped-title-font-size * 1.15 )

","superclasses":["Ext.Base","Ext.util.Observable","Ext.grid.feature.Feature"],"meta":{"author":["Nigel White"]},"code_type":"ext_define","requires":["Ext.grid.feature.GroupStore"],"html_meta":{"author":null},"statics":{"property":[{"tagname":"property","owner":"Ext.Base","meta":{"static":true,"private":true},"name":"$onExtended","id":"static-property-S-onExtended"}],"cfg":[],"css_var":[],"method":[{"tagname":"method","owner":"Ext.Base","meta":{"static":true,"private":true},"name":"addConfig","id":"static-method-addConfig"},{"tagname":"method","owner":"Ext.Base","meta":{"static":true,"chainable":true,"private":true},"name":"addInheritableStatics","id":"static-method-addInheritableStatics"},{"tagname":"method","owner":"Ext.Base","meta":{"static":true,"chainable":true,"private":true},"name":"addMember","id":"static-method-addMember"},{"tagname":"method","owner":"Ext.Base","meta":{"static":true,"chainable":true},"name":"addMembers","id":"static-method-addMembers"},{"tagname":"method","owner":"Ext.Base","meta":{"static":true,"chainable":true},"name":"addStatics","id":"static-method-addStatics"},{"tagname":"method","owner":"Ext.Base","meta":{"static":true,"chainable":true,"private":true},"name":"addXtype","id":"static-method-addXtype"},{"tagname":"method","owner":"Ext.Base","meta":{"static":true,"chainable":true,"private":true},"name":"borrow","id":"static-method-borrow"},{"tagname":"method","owner":"Ext.Base","meta":{"static":true},"name":"create","id":"static-method-create"},{"tagname":"method","owner":"Ext.Base","meta":{"static":true},"name":"createAlias","id":"static-method-createAlias"},{"tagname":"method","owner":"Ext.Base","meta":{"static":true,"private":true},"name":"extend","id":"static-method-extend"},{"tagname":"method","owner":"Ext.Base","meta":{"static":true},"name":"getName","id":"static-method-getName"},{"tagname":"method","owner":"Ext.Base","meta":{"static":true,"deprecated":{"text":"Use {@link #addMembers} instead.","version":"4.1"}},"name":"implement","id":"static-method-implement"},{"tagname":"method","owner":"Ext.Base","meta":{"static":true,"private":true},"name":"mixin","id":"static-method-mixin"},{"tagname":"method","owner":"Ext.Base","meta":{"static":true,"chainable":true,"private":true},"name":"onExtended","id":"static-method-onExtended"},{"tagname":"method","owner":"Ext.Base","meta":{"static":true,"chainable":true,"markdown":true,"deprecated":{"text":"Use {@link Ext#define Ext.define} instead","version":"4.1.0"}},"name":"override","id":"static-method-override"},{"tagname":"method","owner":"Ext.Base","meta":{"static":true,"private":true},"name":"triggerExtended","id":"static-method-triggerExtended"}],"event":[],"css_mixin":[]},"files":[{"href":"Grouping.html#Ext-grid-feature-Grouping","filename":"Grouping.js"},{"href":"Grouping.scss3.html#Ext-grid-feature-Grouping","filename":"Grouping.scss"}],"linenr":1,"members":{"property":[{"tagname":"property","owner":"Ext.Base","meta":{"private":true},"name":"$className","id":"property-S-className"},{"tagname":"property","owner":"Ext.grid.feature.Grouping","meta":{"private":true},"name":"collapseTip","id":"property-collapseTip"},{"tagname":"property","owner":"Ext.grid.feature.Grouping","meta":{"private":true},"name":"collapsedCls","id":"property-collapsedCls"},{"tagname":"property","owner":"Ext.grid.feature.Grouping","meta":{"private":true},"name":"collapsibleCls","id":"property-collapsibleCls"},{"tagname":"property","owner":"Ext.Base","meta":{"private":true},"name":"configMap","id":"property-configMap"},{"tagname":"property","owner":"Ext.grid.feature.Grouping","meta":{"private":true},"name":"ctCls","id":"property-ctCls"},{"tagname":"property","owner":"Ext.grid.feature.Feature","meta":{},"name":"disabled","id":"property-disabled"},{"tagname":"property","owner":"Ext.grid.feature.Grouping","meta":{},"name":"eventPrefix","id":"property-eventPrefix"},{"tagname":"property","owner":"Ext.grid.feature.Grouping","meta":{},"name":"eventSelector","id":"property-eventSelector"},{"tagname":"property","owner":"Ext.util.Observable","meta":{"private":true},"name":"eventsSuspended","id":"property-eventsSuspended"},{"tagname":"property","owner":"Ext.grid.feature.Grouping","meta":{"private":true},"name":"expandTip","id":"property-expandTip"},{"tagname":"property","owner":"Ext.grid.feature.Feature","meta":{},"name":"grid","id":"property-grid"},{"tagname":"property","owner":"Ext.grid.feature.Grouping","meta":{"private":true},"name":"groupCls","id":"property-groupCls"},{"tagname":"property","owner":"Ext.grid.feature.Grouping","meta":{"private":true},"name":"groupInfo","id":"property-groupInfo"},{"tagname":"property","owner":"Ext.grid.feature.Grouping","meta":{"private":true},"name":"groupTpl","id":"property-groupTpl"},{"tagname":"property","owner":"Ext.grid.feature.Feature","meta":{},"name":"hasFeatureEvent","id":"property-hasFeatureEvent"},{"tagname":"property","owner":"Ext.util.Observable","meta":{"readonly":true},"name":"hasListeners","id":"property-hasListeners"},{"tagname":"property","owner":"Ext.grid.feature.Grouping","meta":{"private":true},"name":"hdCollapsedCls","id":"property-hdCollapsedCls"},{"tagname":"property","owner":"Ext.grid.feature.Grouping","meta":{"private":true},"name":"hdNotCollapsibleCls","id":"property-hdNotCollapsibleCls"},{"tagname":"property","owner":"Ext.Base","meta":{"private":true},"name":"initConfigList","id":"property-initConfigList"},{"tagname":"property","owner":"Ext.Base","meta":{"private":true},"name":"initConfigMap","id":"property-initConfigMap"},{"tagname":"property","owner":"Ext.grid.feature.Feature","meta":{"private":true},"name":"isFeature","id":"property-isFeature"},{"tagname":"property","owner":"Ext.Base","meta":{"private":true},"name":"isInstance","id":"property-isInstance"},{"tagname":"property","owner":"Ext.util.Observable","meta":{},"name":"isObservable","id":"property-isObservable"},{"tagname":"property","owner":"Ext.grid.feature.Grouping","meta":{"private":true},"name":"refreshData","id":"property-refreshData"},{"tagname":"property","owner":"Ext.Base","meta":{"protected":true},"name":"self","id":"property-self"},{"tagname":"property","owner":"Ext.grid.feature.AbstractSummary","meta":{"private":true},"name":"summaryRowCls","id":"property-summaryRowCls"},{"tagname":"property","owner":"Ext.grid.feature.AbstractSummary","meta":{"private":true},"name":"summaryRowSelector","id":"property-summaryRowSelector"},{"tagname":"property","owner":"Ext.grid.feature.AbstractSummary","meta":{"private":true},"name":"summaryRowTpl","id":"property-summaryRowTpl"},{"tagname":"property","owner":"Ext.grid.feature.AbstractSummary","meta":{"private":true},"name":"summaryTableCls","id":"property-summaryTableCls"},{"tagname":"property","owner":"Ext.grid.feature.Grouping","meta":{"private":true},"name":"tableTpl","id":"property-tableTpl"},{"tagname":"property","owner":"Ext.grid.feature.Feature","meta":{},"name":"view","id":"property-view"},{"tagname":"property","owner":"Ext.grid.feature.Grouping","meta":{"private":true},"name":"wrapsItem","id":"property-wrapsItem"}],"cfg":[{"tagname":"cfg","owner":"Ext.grid.feature.Grouping","meta":{},"name":"collapsible","id":"cfg-collapsible"},{"tagname":"cfg","owner":"Ext.grid.feature.Grouping","meta":{},"name":"depthToIndent","id":"cfg-depthToIndent"},{"tagname":"cfg","owner":"Ext.grid.feature.Grouping","meta":{},"name":"enableGroupingMenu","id":"cfg-enableGroupingMenu"},{"tagname":"cfg","owner":"Ext.grid.feature.Grouping","meta":{},"name":"enableNoGroups","id":"cfg-enableNoGroups"},{"tagname":"cfg","owner":"Ext.grid.feature.Grouping","meta":{},"name":"groupByText","id":"cfg-groupByText"},{"tagname":"cfg","owner":"Ext.grid.feature.Grouping","meta":{},"name":"groupHeaderTpl","id":"cfg-groupHeaderTpl"},{"tagname":"cfg","owner":"Ext.grid.feature.Grouping","meta":{},"name":"hideGroupedHeader","id":"cfg-hideGroupedHeader"},{"tagname":"cfg","owner":"Ext.util.Observable","meta":{},"name":"listeners","id":"cfg-listeners"},{"tagname":"cfg","owner":"Ext.grid.feature.AbstractSummary","meta":{},"name":"remoteRoot","id":"cfg-remoteRoot"},{"tagname":"cfg","owner":"Ext.grid.feature.Grouping","meta":{},"name":"showGroupsText","id":"cfg-showGroupsText"},{"tagname":"cfg","owner":"Ext.grid.feature.Grouping","meta":{},"name":"showSummaryRow","id":"cfg-showSummaryRow"},{"tagname":"cfg","owner":"Ext.grid.feature.Grouping","meta":{},"name":"startCollapsed","id":"cfg-startCollapsed"}],"css_var":[{"tagname":"css_var","owner":"Ext.grid.feature.Grouping","meta":{},"name":"$grid-grouped-header-background-color","id":"css_var-S-grid-grouped-header-background-color"},{"tagname":"css_var","owner":"Ext.grid.feature.Grouping","meta":{},"name":"$grid-grouped-header-border-color","id":"css_var-S-grid-grouped-header-border-color"},{"tagname":"css_var","owner":"Ext.grid.feature.Grouping","meta":{},"name":"$grid-grouped-header-border-style","id":"css_var-S-grid-grouped-header-border-style"},{"tagname":"css_var","owner":"Ext.grid.feature.Grouping","meta":{},"name":"$grid-grouped-header-border-width","id":"css_var-S-grid-grouped-header-border-width"},{"tagname":"css_var","owner":"Ext.grid.feature.Grouping","meta":{},"name":"$grid-grouped-header-cursor","id":"css_var-S-grid-grouped-header-cursor"},{"tagname":"css_var","owner":"Ext.grid.feature.Grouping","meta":{},"name":"$grid-grouped-header-padding","id":"css_var-S-grid-grouped-header-padding"},{"tagname":"css_var","owner":"Ext.grid.feature.Grouping","meta":{},"name":"$grid-grouped-icon-padding","id":"css_var-S-grid-grouped-icon-padding"},{"tagname":"css_var","owner":"Ext.grid.feature.Grouping","meta":{},"name":"$grid-grouped-title-color","id":"css_var-S-grid-grouped-title-color"},{"tagname":"css_var","owner":"Ext.grid.feature.Grouping","meta":{},"name":"$grid-grouped-title-font-family","id":"css_var-S-grid-grouped-title-font-family"},{"tagname":"css_var","owner":"Ext.grid.feature.Grouping","meta":{},"name":"$grid-grouped-title-font-size","id":"css_var-S-grid-grouped-title-font-size"},{"tagname":"css_var","owner":"Ext.grid.feature.Grouping","meta":{},"name":"$grid-grouped-title-font-weight","id":"css_var-S-grid-grouped-title-font-weight"},{"tagname":"css_var","owner":"Ext.grid.feature.Grouping","meta":{},"name":"$grid-grouped-title-line-height","id":"css_var-S-grid-grouped-title-line-height"}],"method":[{"tagname":"method","owner":"Ext.grid.feature.Grouping","meta":{},"name":"constructor","id":"method-constructor"},{"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.Observable","meta":{},"name":"addManagedListener","id":"method-addManagedListener"},{"tagname":"method","owner":"Ext.grid.feature.Grouping","meta":{"private":true},"name":"afterCollapseExpand","id":"method-afterCollapseExpand"},{"tagname":"method","owner":"Ext.grid.feature.Grouping","meta":{"private":true},"name":"afterViewRender","id":"method-afterViewRender"},{"tagname":"method","owner":"Ext.grid.feature.Grouping","meta":{"private":true},"name":"block","id":"method-block"},{"tagname":"method","owner":"Ext.Base","meta":{"protected":true,"deprecated":{"text":"as of 4.1. Use {@link #callParent} instead."}},"name":"callOverridden","id":"method-callOverridden"},{"tagname":"method","owner":"Ext.Base","meta":{"protected":true},"name":"callParent","id":"method-callParent"},{"tagname":"method","owner":"Ext.Base","meta":{"protected":true},"name":"callSuper","id":"method-callSuper"},{"tagname":"method","owner":"Ext.util.Observable","meta":{"private":true},"name":"captureArgs","id":"method-captureArgs"},{"tagname":"method","owner":"Ext.grid.feature.Grouping","meta":{"private":true},"name":"cleanup","id":"method-cleanup"},{"tagname":"method","owner":"Ext.grid.feature.Grouping","meta":{"private":true},"name":"clearGroupCache","id":"method-clearGroupCache"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"clearListeners","id":"method-clearListeners"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"clearManagedListeners","id":"method-clearManagedListeners"},{"tagname":"method","owner":"Ext.grid.feature.Feature","meta":{"private":true},"name":"clone","id":"method-clone"},{"tagname":"method","owner":"Ext.grid.feature.Grouping","meta":{},"name":"collapse","id":"method-collapse"},{"tagname":"method","owner":"Ext.grid.feature.Grouping","meta":{},"name":"collapseAll","id":"method-collapseAll"},{"tagname":"method","owner":"Ext.Base","meta":{"private":true},"name":"configClass","id":"method-configClass"},{"tagname":"method","owner":"Ext.util.Observable","meta":{"private":true},"name":"continueFireEvent","id":"method-continueFireEvent"},{"tagname":"method","owner":"Ext.grid.feature.Grouping","meta":{"private":true},"name":"createGroupCls","id":"method-createGroupCls"},{"tagname":"method","owner":"Ext.grid.feature.Grouping","meta":{"private":true},"name":"createGroupId","id":"method-createGroupId"},{"tagname":"method","owner":"Ext.util.Observable","meta":{"private":true},"name":"createRelayer","id":"method-createRelayer"},{"tagname":"method","owner":"Ext.grid.feature.Grouping","meta":{"private":true},"name":"destroy","id":"method-destroy"},{"tagname":"method","owner":"Ext.grid.feature.Grouping","meta":{},"name":"disable","id":"method-disable"},{"tagname":"method","owner":"Ext.grid.feature.Grouping","meta":{"private":true},"name":"doCollapseExpand","id":"method-doCollapseExpand"},{"tagname":"method","owner":"Ext.grid.feature.Grouping","meta":{},"name":"enable","id":"method-enable"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"enableBubble","id":"method-enableBubble"},{"tagname":"method","owner":"Ext.grid.feature.Grouping","meta":{},"name":"expand","id":"method-expand"},{"tagname":"method","owner":"Ext.grid.feature.Grouping","meta":{},"name":"expandAll","id":"method-expandAll"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"fireEvent","id":"method-fireEvent"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"fireEventArgs","id":"method-fireEventArgs"},{"tagname":"method","owner":"Ext.grid.feature.AbstractSummary","meta":{"private":true},"name":"generateSummaryData","id":"method-generateSummaryData"},{"tagname":"method","owner":"Ext.util.Observable","meta":{"private":true},"name":"getBubbleParent","id":"method-getBubbleParent"},{"tagname":"method","owner":"Ext.Base","meta":{"private":true},"name":"getConfig","id":"method-getConfig"},{"tagname":"method","owner":"Ext.grid.feature.Grouping","meta":{"template":true},"name":"getFireEventArgs","id":"method-getFireEventArgs"},{"tagname":"method","owner":"Ext.grid.feature.Grouping","meta":{"private":true},"name":"getGroup","id":"method-getGroup"},{"tagname":"method","owner":"Ext.grid.feature.Grouping","meta":{"private":true},"name":"getGroupField","id":"method-getGroupField"},{"tagname":"method","owner":"Ext.grid.feature.Grouping","meta":{"private":true},"name":"getGroupName","id":"method-getGroupName"},{"tagname":"method","owner":"Ext.grid.feature.Grouping","meta":{"private":true},"name":"getGroupedHeader","id":"method-getGroupedHeader"},{"tagname":"method","owner":"Ext.grid.feature.Grouping","meta":{"private":true},"name":"getHeaderNode","id":"method-getHeaderNode"},{"tagname":"method","owner":"Ext.Base","meta":{},"name":"getInitialConfig","id":"method-getInitialConfig"},{"tagname":"method","owner":"Ext.grid.feature.Grouping","meta":{"private":true},"name":"getMenuItem","id":"method-getMenuItem"},{"tagname":"method","owner":"Ext.grid.feature.Grouping","meta":{"private":true},"name":"getMenuItems","id":"method-getMenuItems"},{"tagname":"method","owner":"Ext.grid.feature.Grouping","meta":{},"name":"getRecordGroup","id":"method-getRecordGroup"},{"tagname":"method","owner":"Ext.grid.feature.AbstractSummary","meta":{"private":true},"name":"getSummary","id":"method-getSummary"},{"tagname":"method","owner":"Ext.Base","meta":{"private":true},"name":"hasConfig","id":"method-hasConfig"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"hasListener","id":"method-hasListener"},{"tagname":"method","owner":"Ext.grid.feature.Grouping","meta":{"private":true},"name":"init","id":"method-init"},{"tagname":"method","owner":"Ext.Base","meta":{"chainable":true,"protected":true},"name":"initConfig","id":"method-initConfig"},{"tagname":"method","owner":"Ext.grid.feature.Grouping","meta":{"private":true},"name":"injectGroupingMenu","id":"method-injectGroupingMenu"},{"tagname":"method","owner":"Ext.grid.feature.Grouping","meta":{"private":true},"name":"isAllCollapsed","id":"method-isAllCollapsed"},{"tagname":"method","owner":"Ext.grid.feature.Grouping","meta":{"private":true},"name":"isAllExpanded","id":"method-isAllExpanded"},{"tagname":"method","owner":"Ext.grid.feature.Grouping","meta":{},"name":"isExpanded","id":"method-isExpanded"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"mon","id":"method-mon"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"mun","id":"method-mun"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"on","id":"method-on"},{"tagname":"method","owner":"Ext.grid.feature.Grouping","meta":{"private":true},"name":"onColumnHideShow","id":"method-onColumnHideShow"},{"tagname":"method","owner":"Ext.grid.feature.Grouping","meta":{"private":true},"name":"onColumnMove","id":"method-onColumnMove"},{"tagname":"method","owner":"Ext.Base","meta":{"private":true},"name":"onConfigUpdate","id":"method-onConfigUpdate"},{"tagname":"method","owner":"Ext.grid.feature.Grouping","meta":{"private":true},"name":"onGroupChange","id":"method-onGroupChange"},{"tagname":"method","owner":"Ext.grid.feature.Grouping","meta":{"private":true},"name":"onGroupClick","id":"method-onGroupClick"},{"tagname":"method","owner":"Ext.grid.feature.Grouping","meta":{"private":true},"name":"onGroupKey","id":"method-onGroupKey"},{"tagname":"method","owner":"Ext.grid.feature.Grouping","meta":{"private":true},"name":"onGroupMenuItemClick","id":"method-onGroupMenuItemClick"},{"tagname":"method","owner":"Ext.grid.feature.Grouping","meta":{"private":true},"name":"onGroupToggleMenuItemClick","id":"method-onGroupToggleMenuItemClick"},{"tagname":"method","owner":"Ext.grid.feature.Grouping","meta":{"private":true},"name":"onReconfigure","id":"method-onReconfigure"},{"tagname":"method","owner":"Ext.grid.feature.AbstractSummary","meta":{"private":true},"name":"outputSummaryRecord","id":"method-outputSummaryRecord"},{"tagname":"method","owner":"Ext.grid.feature.AbstractSummary","meta":{"private":true},"name":"populateRecord","id":"method-populateRecord"},{"tagname":"method","owner":"Ext.grid.feature.AbstractSummary","meta":{"private":true},"name":"populateRemoteRecord","id":"method-populateRemoteRecord"},{"tagname":"method","owner":"Ext.util.Observable","meta":{"private":true},"name":"prepareClass","id":"method-prepareClass"},{"tagname":"method","owner":"Ext.grid.feature.Grouping","meta":{"private":true},"name":"pruneGroupedHeader","id":"method-pruneGroupedHeader"},{"tagname":"method","owner":"Ext.grid.feature.Grouping","meta":{"private":true},"name":"refreshIf","id":"method-refreshIf"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"relayEvents","id":"method-relayEvents"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"removeListener","id":"method-removeListener"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"removeManagedListener","id":"method-removeManagedListener"},{"tagname":"method","owner":"Ext.util.Observable","meta":{"private":true},"name":"removeManagedListenerItem","id":"method-removeManagedListenerItem"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"resumeEvent","id":"method-resumeEvent"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"resumeEvents","id":"method-resumeEvents"},{"tagname":"method","owner":"Ext.Base","meta":{"chainable":true,"private":true},"name":"setConfig","id":"method-setConfig"},{"tagname":"method","owner":"Ext.grid.feature.Grouping","meta":{"private":true},"name":"setup","id":"method-setup"},{"tagname":"method","owner":"Ext.grid.feature.Grouping","meta":{"private":true},"name":"setupRowData","id":"method-setupRowData"},{"tagname":"method","owner":"Ext.grid.feature.Grouping","meta":{"private":true},"name":"showMenuBy","id":"method-showMenuBy"},{"tagname":"method","owner":"Ext.Base","meta":{"protected":true},"name":"statics","id":"method-statics"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"suspendEvent","id":"method-suspendEvent"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"suspendEvents","id":"method-suspendEvents"},{"tagname":"method","owner":"Ext.grid.feature.AbstractSummary","meta":{},"name":"toggleSummaryRow","id":"method-toggleSummaryRow"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"un","id":"method-un"},{"tagname":"method","owner":"Ext.grid.feature.Grouping","meta":{"private":true},"name":"unblock","id":"method-unblock"},{"tagname":"method","owner":"Ext.grid.feature.Grouping","meta":{"private":true},"name":"vetoEvent","id":"method-vetoEvent"}],"event":[{"tagname":"event","owner":"Ext.grid.feature.Grouping","meta":{},"name":"groupclick","id":"event-groupclick"},{"tagname":"event","owner":"Ext.grid.feature.Grouping","meta":{},"name":"groupcollapse","id":"event-groupcollapse"},{"tagname":"event","owner":"Ext.grid.feature.Grouping","meta":{},"name":"groupcontextmenu","id":"event-groupcontextmenu"},{"tagname":"event","owner":"Ext.grid.feature.Grouping","meta":{},"name":"groupdblclick","id":"event-groupdblclick"},{"tagname":"event","owner":"Ext.grid.feature.Grouping","meta":{},"name":"groupexpand","id":"event-groupexpand"}],"css_mixin":[]},"inheritable":null,"private":null,"component":false,"name":"Ext.grid.feature.Grouping","singleton":false,"override":null,"inheritdoc":null,"id":"class-Ext.grid.feature.Grouping","mixins":["Ext.grid.feature.AbstractSummary"],"mixedInto":[]});