Ext JS 4.0.7 Sencha Docs

Ext.selection.Model

Alternate names

Ext.AbstractSelectionModel

Hierarchy

Ext.Base
Ext.util.Observable
Ext.selection.Model

Requires

Subclasses

Files

Tracks what records are currently selected in a databound component.

This is an abstract class and is not meant to be directly used. Databound UI widgets such as Grid and Tree should subclass Ext.selection.Model and provide a way to binding to the component.

The abstract methods onSelectChange and onLastFocusChanged should be implemented in these subclasses to update the UI widget.

Available since: 4.0.0

Defined By

Config options

Ext.selection.Model
view source
: Boolean
Allow users to deselect a record in a DataView, List or Grid. ...

Allow users to deselect a record in a DataView, List or Grid. Only applicable when the mode is 'SINGLE'.

Defaults to: false

Available since: 4.0.0

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 should be a valid listeners config object as specified in the addListener example for attaching multiple handlers at once.

DOM events from Ext JS Components

While some Ext JS Component classes export selected DOM events (e.g. "click", "mouseover" etc), this is usually only 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 child element of a Component, we need to specify the element option to identify the Component property to add a DOM listener to:

new Ext.panel.Panel({
    width: 400,
    height: 200,
    dockedItems: [{
        xtype: 'toolbar'
    }],
    listeners: {
        click: {
            element: 'el', //bind to the underlying el property on the panel
            fn: function(){ console.log('click el'); }
        },
        dblclick: {
            element: 'body', //bind to the underlying body property on the panel
            fn: function(){ console.log('dblclick body'); }
        }
    }
});

Available since: 1.1.0

Ext.selection.Model
view source
: String
Mode of selection. ...

Mode of selection. Valid values are:

  • SINGLE - Only allows selecting one item at a time. Use allowDeselect to allow deselecting that item. This is the default.
  • SIMPLE - Allows simple selection of multiple items one-by-one. Each click in grid will either select or deselect an item.
  • MULTI - Allows complex selection of multiple items using Ctrl and Shift keys.

Available since: 4.0.0

Defined By

Properties

Available since: 4.0.0

...

Defaults to: /^(?:scope|delay|buffer|single|stopEvent|preventDefault|stopPropagation|normalized|args|delegate|element|vertical|horizontal|freezeEvent)$/

Available since: 4.0.0

...

Defaults to: true

Available since: 4.0.0

Ext.selection.Model
view source
: Booleanprivate
Prune records when they are removed from the store from the selection. ...

Prune records when they are removed from the store from the selection. This is a private flag. For an example of its usage, take a look at Ext.selection.TreeModel.

Defaults to: true

Available since: 4.0.0

A MixedCollection that maintains all of the currently selected records. ...

A MixedCollection that maintains all of the currently selected records. Read-only.

Available since: 4.0.0

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, this.self is scope-dependent and it's meant to be used for dynamic inheritance. See statics for a detailed comparison

Ext.define('My.Cat', {
    statics: {
        speciesName: 'Cat' // My.Cat.speciesName = 'Cat'
    },

    constructor: function() {
        alert(this.self.speciesName); / dependent on 'this'

        return this;
    },

    clone: function() {
        return new this.self();
    }
});


Ext.define('My.SnowLeopard', {
    extend: 'My.Cat',
    statics: {
        speciesName: 'Snow Leopard'         // My.SnowLeopard.speciesName = 'Snow Leopard'
    }
});

var cat = new My.Cat();                     // alerts 'Cat'
var snowLeopard = new My.SnowLeopard();     // alerts 'Snow Leopard'

var clone = snowLeopard.clone();
alert(Ext.getClassName(clone));             // alerts 'My.SnowLeopard'

Available since: 4.0.0

Methods

Defined By

Instance Methods

...

Available since: 4.0.0

Parameters

Returns

Overrides: Ext.util.Observable.constructor

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.

Available since: 1.1.0

Parameters

  • o : Object/String

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

    this.addEvents({
        storeloaded: true,
        storecleared: true
    });
    
  • more : String... (optional)

    Additional event names if multiple event names are being passed as separate parameters. Usage:

    this.addEvents('storeloaded', 'storecleared');
    
...

Available since: 4.0.6

Parameters

Returns

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

Appends an event handler to this object.

Available since: 1.1.0

Parameters

  • eventName : String

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

  • fn : Function

    The method the event invokes. Will be called with arguments given to fireEvent plus the options parameter described below.

  • scope : Object (optional)

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

  • options : Object (optional)

    An object containing handler configuration.

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

    This object may contain any of the following properties:

    • scope : Object

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

    • delay : Number

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

    • single : Boolean

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

    • buffer : Number

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

    • target : Observable

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

    • element : String

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

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

      new Ext.panel.Panel({
          title: 'The title',
          listeners: {
              click: this.handlePanelClick,
              element: 'body'
          }
      });
      

    Combining Options

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

    A delayed, one-time listener.

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

    Attaching multiple handlers in 1 call

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

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

    One can also specify options for each event handler separately:

    myGridPanel.on({
        cellClick: {fn: this.onCellClick, scope: this, single: true},
        mouseover: {fn: panel.onMouseOver, scope: panel}
    });
    
( item, ename, [fn], [scope], [opt] )
Adds listeners to any Observable object (or Ext.Element) which are automatically removed when this Component is destr...

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

Available since: 4.0.0

Parameters

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

    The item to which to add a listener/listeners.

  • ename : Object/String

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

  • fn : Function (optional)

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

  • scope : Object (optional)

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

  • opt : Object (optional)

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

Ext.selection.Model
view source
( store, initial )private
binds the store to the selModel. ...

binds the store to the selModel.

Available since: 4.0.0

Parameters

Ext.selection.Model
view source
( cmp )abstractprivate
...

Available since: 4.0.0

Parameters

Call the original method that was previously overridden with override Ext.define('My.Cat', { constructor: functi...

Call the original method that was previously overridden with override

Ext.define('My.Cat', {
    constructor: function() {
        alert("I'm a cat!");

        return this;
    }
});

My.Cat.override({
    constructor: function() {
        alert("I'm going to be a cat!");

        var instance = this.callOverridden();

        alert("Meeeeoooowwww");

        return instance;
    }
});

var kitty = new My.Cat(); // alerts "I'm going to be a cat!"
                          // alerts "I'm a cat!"
                          // alerts "Meeeeoooowwww"

Available since: 4.0.0

Parameters

  • args : Array/Arguments

    The arguments, either an array or the arguments object

Returns

  • Object

    Returns the result after calling the overridden method

Call the parent's overridden method. ...

Call the parent's overridden method. For example:

Ext.define('My.own.A', {
    constructor: function(test) {
        alert(test);
    }
});

Ext.define('My.own.B', {
    extend: 'My.own.A',

    constructor: function(test) {
        alert(test);

        this.callParent([test + 1]);
    }
});

Ext.define('My.own.C', {
    extend: 'My.own.B',

    constructor: function() {
        alert("Going to call parent's overriden constructor...");

        this.callParent(arguments);
    }
});

var a = new My.own.A(1); // alerts '1'
var b = new My.own.B(1); // alerts '1', then alerts '2'
var c = new My.own.C(2); // alerts "Going to call parent's overriden constructor..."
                         // alerts '2', then alerts '3'

Available since: 4.0.0

Parameters

  • args : Array/Arguments

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

Returns

  • Object

    Returns the result from the superclass' method

Removes all listeners for this object including the managed listeners ...

Removes all listeners for this object including the managed listeners

Available since: 4.0.0

Removes all managed listeners for this object. ...

Removes all managed listeners for this object.

Available since: 4.0.0

Ext.selection.Model
view source
( )private
A fast reset of the selections without firing events, updating the ui, etc. ...

A fast reset of the selections without firing events, updating the ui, etc. For private usage only.

Available since: 4.0.0

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

Continue to fire event.

Available since: Ext JS 4.0.7

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.

Available since: 4.0.0

Parameters

Returns

Ext.selection.Model
view source
( records, [suppressEvent] )
Deselects a record instance by record instance or index. ...

Deselects a record instance by record instance or index.

Available since: 4.0.0

Parameters

  • records : Ext.data.Model[]/Number

    An array of records or an index

  • suppressEvent : Boolean (optional)

    Set to true to not fire a deselect event

Ext.selection.Model
view source
( suppressEvent )
Deselects all records in the view. ...

Deselects all records in the view.

Available since: 4.0.0

Parameters

  • suppressEvent : Boolean

    True to suppress any deselect events

Ext.selection.Model
view source
( )private
cleanup. ...

cleanup.

Available since: 4.0.0

Ext.selection.Model
view source
( records, suppressEvent )private
records can be an index, a record or an array of records ...

records can be an index, a record or an array of records

Available since: 4.0.0

Parameters

Ext.selection.Model
view source
( records, keepExisting, suppressEvent )private
...

Available since: 4.0.0

Parameters

Ext.selection.Model
view source
( records, keepExisting, suppressEvent )private
...

Available since: 4.0.0

Parameters

Ext.selection.Model
view source
( record, suppressEvent )private
...

Available since: 4.0.0

Parameters

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

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

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

Example:

Ext.override(Ext.form.field.Base, {
    //  Add functionality to Field's initComponent to enable the change event to bubble
    initComponent : Ext.Function.createSequence(Ext.form.field.Base.prototype.initComponent, function() {
        this.enableBubble('change');
    }),

    //  We know that we want Field's events to bubble directly to the FormPanel.
    getBubbleTarget : function() {
        if (!this.formPanel) {
            this.formPanel = this.findParentByType('form');
        }
        return this.formPanel;
    }
});

var myForm = new Ext.formPanel({
    title: 'User Details',
    items: [{
        ...
    }],
    listeners: {
        change: function() {
            // Title goes red if form has been modified.
            myForm.header.setStyle('color', 'red');
        }
    }
});

Available since: 3.4.0

Parameters

  • events : String/String[]

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

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

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

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

Available since: 1.1.0

Parameters

  • eventName : String

    The name of the event to fire.

  • args : Object...

    Variable number of parameters are passed to handlers.

Returns

  • Boolean

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

Gets the bubbling parent for an Observable ...

Gets the bubbling parent for an Observable

Available since: Ext JS 4.0.7

Returns

Ext.selection.Model
view source
( ) : Number
Returns the count of selected records. ...

Returns the count of selected records.

Available since: 4.0.0

Returns

  • Number

    The number of selected records

Ext.selection.Model
view source
( )private
...

Available since: 4.0.0

Ext.selection.Model
view source
( )
Returns the last selected record. ...

Returns the last selected record.

Available since: 4.0.0

Ext.selection.Model
view source
( ) : Ext.data.Model[]
Returns an array of the currently selected records. ...

Returns an array of the currently selected records.

Available since: 4.0.0

Returns

Ext.selection.Model
view source
( ) : String
Returns the current selectionMode. ...

Returns the current selectionMode.

Available since: 4.0.0

Returns

  • String

    The selectionMode: 'SINGLE', 'MULTI' or 'SIMPLE'.

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

Available since: 1.1.0

Parameters

  • eventName : String

    The name of the event to check for

Returns

  • Boolean

    True if the event is being listened for, else false

Ext.selection.Model
view source
( ) : Boolean
Returns true if there are any a selected records. ...

Returns true if there are any a selected records.

Available since: 4.0.0

Returns

( config ) : Objectchainableprotected
Initialize configuration for this class. ...

Initialize configuration for this class. a typical example:

Ext.define('My.awesome.Class', {
    // The default config
    config: {
        name: 'Awesome',
        isAwesome: true
    },

    constructor: function(config) {
        this.initConfig(config);

        return this;
    }
});

var awesome = new My.awesome.Class({
    name: 'Super Awesome'
});

alert(awesome.getName()); // 'Super Awesome'

Available since: 4.0.0

Parameters

Returns

  • Object

    mixins The mixin prototypes as key - value pairs

Ext.selection.Model
view source
( record )
Determines if this record is currently focused. ...

Determines if this record is currently focused.

Available since: 4.0.0

Parameters

Ext.selection.Model
view source
( ) : Boolean
Returns true if the selections are locked. ...

Returns true if the selections are locked.

Available since: 4.0.0

Returns

Ext.selection.Model
view source
( record ) : Boolean
Returns true if the specified row is selected. ...

Returns true if the specified row is selected.

Available since: 4.0.0

Parameters

Returns

Ext.selection.Model
view source
( fireEvent )private
fire selection change as long as true is not passed into maybeFireSelectionChange ...

fire selection change as long as true is not passed into maybeFireSelectionChange

Available since: 4.0.0

Parameters

( name, cls )private
Used internally by the mixins pre-processor ...

Used internally by the mixins pre-processor

Available since: 4.0.6

Parameters

( item, ename, [fn], [scope], [opt] )
Shorthand for addManagedListener. ...

Shorthand for addManagedListener.

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

Available since: 4.0.2

Parameters

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

    The item to which to add a listener/listeners.

  • ename : Object/String

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

  • fn : Function (optional)

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

  • scope : Object (optional)

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

  • opt : Object (optional)

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

( item, ename, [fn], [scope] )
Shorthand for removeManagedListener. ...

Shorthand for removeManagedListener.

Removes listeners that were added by the mon method.

Available since: 4.0.2

Parameters

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

    The item from which to remove a listener/listeners.

  • ename : Object/String

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

  • fn : Function (optional)

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

  • scope : Object (optional)

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

( eventName, fn, [scope], [options] )
Shorthand for addListener. ...

Shorthand for addListener.

Appends an event handler to this object.

Available since: 1.1.0

Parameters

  • eventName : String

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

  • fn : Function

    The method the event invokes. Will be called with arguments given to fireEvent plus the options parameter described below.

  • scope : Object (optional)

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

  • options : Object (optional)

    An object containing handler configuration.

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

    This object may contain any of the following properties:

    • scope : Object

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

    • delay : Number

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

    • single : Boolean

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

    • buffer : Number

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

    • target : Observable

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

    • element : String

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

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

      new Ext.panel.Panel({
          title: 'The title',
          listeners: {
              click: this.handlePanelClick,
              element: 'body'
          }
      });
      

    Combining Options

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

    A delayed, one-time listener.

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

    Attaching multiple handlers in 1 call

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

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

    One can also specify options for each event handler separately:

    myGridPanel.on({
        cellClick: {fn: this.onCellClick, scope: this, single: true},
        mouseover: {fn: panel.onMouseOver, scope: panel}
    });
    
Ext.selection.Model
view source
( field, e )abstractprivate
...

Available since: 4.0.0

Parameters

Ext.selection.Model
view source
( oldFocused, newFocused )abstractprivate
...

Available since: 4.0.0

Parameters

Ext.selection.Model
view source
( record, isSelected, suppressEvent )abstractprivate
...

Available since: 4.0.0

Parameters

Ext.selection.Model
view source
( )private
when a record is added to a store ...

when a record is added to a store

Available since: 4.0.0

Ext.selection.Model
view source
( )private
when a store is cleared remove all selections (if there were any) ...

when a store is cleared remove all selections (if there were any)

Available since: 4.0.0

Ext.selection.Model
view source
( store, record )private
prune records from the SelectionModel if they were selected at the time they were removed. ...

prune records from the SelectionModel if they were selected at the time they were removed.

Available since: 4.0.0

Parameters

Ext.selection.Model
view source
( )private
if records are updated ...

if records are updated

Available since: 4.0.0

( name, value )private
...

Available since: 4.0.6

Parameters

( name, fn )private
...

Available since: 4.0.0

Parameters

...

Available since: 1.1.0

...

Available since: 4.0.0

Ext.selection.Model
view source
( )private
...

Available since: 4.0.0

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.

Available since: 2.3.0

Parameters

  • origin : Object

    The Observable whose events this object is to relay.

  • events : String[]

    Array of event names to relay.

  • prefix : String
Removes an event handler. ...

Removes an event handler.

Available since: 1.1.0

Parameters

  • eventName : String

    The type of event the handler was associated with.

  • fn : Function

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

  • scope : Object (optional)

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

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

Removes listeners that were added by the mon method.

Available since: 4.0.0

Parameters

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

    The item from which to remove a listener/listeners.

  • ename : Object/String

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

  • fn : Function (optional)

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

  • scope : Object (optional)

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

Remove a single managed listener item ...

Remove a single managed listener item

Available since: 4.0.1

Parameters

  • isClear : Boolean

    True if this is being called during a clear

  • managedListener : Object

    The managed listener item See removeManagedListener for other args

Resumes firing events (see suspendEvents). ...

Resumes firing events (see suspendEvents).

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

Available since: 2.3.0

Ext.selection.Model
view source
( records, [keepExisting], [suppressEvent] )
Selects a record instance by record instance or index. ...

Selects a record instance by record instance or index.

Available since: 4.0.0

Parameters

  • records : Ext.data.Model[]/Number

    An array of records or an index

  • keepExisting : Boolean (optional)

    True to retain existing selections

  • suppressEvent : Boolean (optional)

    Set to true to not fire a select event

Ext.selection.Model
view source
( suppressEvent )
Selects all records in the view. ...

Selects all records in the view.

Available since: 4.0.0

Parameters

  • suppressEvent : Boolean

    True to suppress any select events

Ext.selection.Model
view source
( startRow, endRow, [keepExisting] )
Selects a range of rows if the selection model is not locked. ...

Selects a range of rows if the selection model is not locked. All rows in between startRow and endRow are also selected.

Available since: 4.0.0

Parameters

Ext.selection.Model
view source
( record, e, keepExisting )private
Provides differentiation of logic between MULTI, SIMPLE and SINGLE selection modes. ...

Provides differentiation of logic between MULTI, SIMPLE and SINGLE selection modes. Requires that an event be passed so that we can know if user held ctrl or shift.

Available since: 4.0.0

Parameters

( config ) : Ext.Basechainableprivate
...

Available since: 4.0.0

Parameters

Returns

Ext.selection.Model
view source
( record )
Sets a record as the last focused record. ...

Sets a record as the last focused record. This does NOT mean that the record has been selected.

Available since: 4.0.0

Parameters

Ext.selection.Model
view source
( locked )
Locks the current selection and disables any changes from happening to the selection. ...

Locks the current selection and disables any changes from happening to the selection.

Available since: 4.0.0

Parameters

  • locked : Boolean

    True to lock, false to unlock.

Ext.selection.Model
view source
( selModel )
Sets the current selectionMode. ...

Sets the current selectionMode.

Available since: 4.0.0

Parameters

  • selModel : String

    'SINGLE', 'MULTI' or 'SIMPLE'.

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, this.statics() is scope-independent and it always returns the class from which it was called, regardless of what this points to during run-time

Ext.define('My.Cat', {
    statics: {
        totalCreated: 0,
        speciesName: 'Cat' // My.Cat.speciesName = 'Cat'
    },

    constructor: function() {
        var statics = this.statics();

        alert(statics.speciesName);     // always equals to 'Cat' no matter what 'this' refers to
                                        // equivalent to: My.Cat.speciesName

        alert(this.self.speciesName);   // dependent on 'this'

        statics.totalCreated++;

        return this;
    },

    clone: function() {
        var cloned = new this.self;                      // dependent on 'this'

        cloned.groupName = this.statics().speciesName;   // equivalent to: My.Cat.speciesName

        return cloned;
    }
});


Ext.define('My.SnowLeopard', {
    extend: 'My.Cat',

    statics: {
        speciesName: 'Snow Leopard'     // My.SnowLeopard.speciesName = 'Snow Leopard'
    },

    constructor: function() {
        this.callParent();
    }
});

var cat = new My.Cat();                 // alerts 'Cat', then alerts 'Cat'

var snowLeopard = new My.SnowLeopard(); // alerts 'Cat', then alerts 'Snow Leopard'

var clone = snowLeopard.clone();
alert(Ext.getClassName(clone));         // alerts 'My.SnowLeopard'
alert(clone.groupName);                 // alerts 'Cat'

alert(My.Cat.totalCreated);             // alerts 3

Available since: 4.0.0

Returns

Suspends the firing of all events. ...

Suspends the firing of all events. (see resumeEvents)

Available since: 2.3.0

Parameters

  • queueSuspended : Boolean

    Pass as true to queue up suspended events to be fired after the resumeEvents call instead of discarding all suspended events.

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

Shorthand for removeListener.

Removes an event handler.

Available since: 1.1.0

Parameters

  • eventName : String

    The type of event the handler was associated with.

  • fn : Function

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

  • scope : Object (optional)

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

Defined By

Static Methods

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

Add / override static properties of this class.

Ext.define('My.cool.Class', {
    ...
});

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

Available since: 4.0.2

Parameters

Returns

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

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

Ext.define('Bank', {
    money: '$$$',
    printMoney: function() {
        alert('$$$$$$$');
    }
});

Ext.define('Thief', {
    ...
});

Thief.borrow(Bank, ['money', 'printMoney']);

var steve = new Thief();

alert(steve.money); // alerts '$$$'
steve.printMoney(); // alerts '$$$$$$$'

Available since: 4.0.2

Parameters

  • fromClass : Ext.Base

    The class to borrow members from

  • members : String/String[]

    The names of the members to borrow

Returns

Create a new instance of this Class. ...

Create a new instance of this Class.

Ext.define('My.cool.Class', {
    ...
});

My.cool.Class.create({
    someConfig: true
});

All parameters are passed to the constructor of the class.

Available since: 4.0.2

Returns

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

Create aliases for existing prototype methods. Example:

Ext.define('My.cool.Class', {
    method1: function() { ... },
    method2: function() { ... }
});

var test = new My.cool.Class();

My.cool.Class.createAlias({
    method3: 'method1',
    method4: 'method2'
});

test.method3(); // test.method1()

My.cool.Class.createAlias('method5', 'method3');

test.method5(); // test.method3() -> test.method1()

Available since: 4.0.2

Parameters

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

Get the current class' name in string format.

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

My.cool.Class.getName(); // 'My.cool.Class'

Available since: 4.0.4

Returns

Add methods / properties to the prototype of this class. ...

Add methods / properties to the prototype of this class.

Ext.define('My.awesome.Cat', {
    constructor: function() {
        ...
    }
});

 My.awesome.Cat.implement({
     meow: function() {
        alert('Meowww...');
     }
 });

 var kitty = new My.awesome.Cat;
 kitty.meow();

Available since: 4.0.2

Parameters

( members ) : Ext.Basechainablestatic
Override prototype members of this class. ...

Override prototype members of this class. Overridden methods can be invoked via callOverridden

Ext.define('My.Cat', {
    constructor: function() {
        alert("I'm a cat!");

        return this;
    }
});

My.Cat.override({
    constructor: function() {
        alert("I'm going to be a cat!");

        var instance = this.callOverridden();

        alert("Meeeeoooowwww");

        return instance;
    }
});

var kitty = new My.Cat(); // alerts "I'm going to be a cat!"
                          // alerts "I'm a cat!"
                          // alerts "Meeeeoooowwww"

Available since: 4.0.2

Parameters

Returns

Defined By

Events

Ext.selection.Model
view source
( this, selected, eOpts )
Fired after a selection change has occurred ...

Fired after a selection change has occurred

Available since: 4.0.0

Parameters