/* This file is part of Ext JS 3.4 Copyright (c) 2011-2013 Sencha Inc Contact: http://www.sencha.com/contact GNU General Public License Usage This file may be used under the terms of the GNU General Public License version 3.0 as published by the Free Software Foundation and appearing in the file LICENSE included in the packaging of this file. Please review the following information to ensure the GNU General Public License version 3.0 requirements will be met: http://www.gnu.org/copyleft/gpl.html. If you are unsure which license is appropriate for your use, please contact the sales department at http://www.sencha.com/contact. Build date: 2013-04-03 15:07:25 */ Ext.data.JsonP.Ext_grid_CheckboxSelectionModel({"alternateClassNames":[],"aliases":{},"enum":null,"parentMixins":[],"tagname":"class","subclasses":[],"extends":"Ext.grid.RowSelectionModel","uses":[],"html":"

Hierarchy

Files

A custom selection model that renders a column of checkboxes that can be toggled to select or deselect rows.

\n
Defined By

Config options

Ext.grid.CheckboxSelectionModel
view source
checkOnly : Boolean

true if rows can only be selected by clicking on the\ncheckbox column (defaults to false).

\n

true if rows can only be selected by clicking on the\ncheckbox column (defaults to false).

\n
Ext.grid.CheckboxSelectionModel
view source
: String
Any valid text or HTML fragment to display in the header cell for the\ncheckbox column. ...

Any valid text or HTML fragment to display in the header cell for the\ncheckbox column. Defaults to:

\n\n
'<div class=\"x-grid3-hd-checker\">&#160;</div>'\n
\n\n\n

The default CSS class of 'x-grid3-hd-checker' displays a checkbox in the header\nand provides support for automatic check all/none behavior on header click. This string\ncan be replaced by any valid HTML fragment, including a simple text string (e.g.,\n'Select Rows'), but the automatic check all/none behavior will only work if the\n'x-grid3-hd-checker' class is supplied.

\n

Defaults to: '<div class="x-grid3-hd-checker">&#160;</div>'

(optional) A config object containing one or more event handlers to be added to this\nobject during initialization. ...

(optional)

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

\n\n

DOM events from ExtJs Components

\n\n\n

While some ExtJs Component classes export selected DOM events (e.g. \"click\", \"mouseover\" etc), this\n\n\n

is usually only done when extra value can be added. For example the DataView's\nclick event passing the node clicked on. To access DOM\nevents directly from a Component's HTMLElement, listeners must be added to the Element after the Component\nhas been rendered. A plugin can simplify this step:

\n\n
// Plugin is configured with a listeners config object.\n// The Component is appended to the argument list of all handler functions.\nExt.DomObserver = Ext.extend(Object, {\n    constructor: function(config) {\n        this.listeners = config.listeners ? config.listeners : config;\n    },\n\n    // Component passes itself into plugin's init method\n    init: function(c) {\n        var p, l = this.listeners;\n        for (p in l) {\n            if (Ext.isFunction(l[p])) {\n                l[p] = this.createHandler(l[p], c);\n            } else {\n                l[p].fn = this.createHandler(l[p].fn, c);\n            }\n        }\n\n        // Add the listeners to the Element immediately following the render call\n        c.render = c.render.createSequence(function() {\n            var e = c.getEl();\n            if (e) {\n                e.on(l);\n            }\n        });\n    },\n\n    createHandler: function(fn, c) {\n        return function(e) {\n            fn.call(this, e, c);\n        };\n    }\n});\n\nvar combo = new Ext.form.ComboBox({\n\n    // Collapse combo when its element is clicked on\n    plugins: [ new Ext.DomObserver({\n        click: function(evt, comp) {\n            comp.collapse();\n        }\n    })],\n    store: myStore,\n    typeAhead: true,\n    mode: 'local',\n    triggerAction: 'all'\n});\n
\n\n\n

\n
false to turn off moving the editor to the next row down when the enter key is pressed\nor the next row up when shift ...

false to turn off moving the editor to the next row down when the enter key is pressed\nor the next row up when shift + enter keys are pressed.

\n
true to allow selection of only one row at a time (defaults to false\nallowing multiple selections) ...

true to allow selection of only one row at a time (defaults to false\nallowing multiple selections)

\n

Defaults to: false

Ext.grid.CheckboxSelectionModel
view source
: Boolean
true if the checkbox column is sortable (defaults to\nfalse). ...

true if the checkbox column is sortable (defaults to\nfalse).

\n

Defaults to: false

Ext.grid.CheckboxSelectionModel
view source
: Number
The default width in pixels of the checkbox column (defaults to 20). ...

The default width in pixels of the checkbox column (defaults to 20).

\n

Defaults to: 20

Defined By

Properties

Ext.grid.CheckboxSelectionModel
view source
: Stringprivate
...
\n

Defaults to: ''

Ext.grid.CheckboxSelectionModel
view source
: Booleanprivate
...
\n

Defaults to: true

The GridPanel for which this SelectionModel is handling selection. ...

The GridPanel for which this SelectionModel is handling selection. Read-only.

\n
Ext.grid.CheckboxSelectionModel
view source
: Booleanprivate
...
\n

Defaults to: false

Ext.grid.CheckboxSelectionModel
view source
: Stringprivate
...
\n

Defaults to: 'checker'

Ext.grid.CheckboxSelectionModel
view source
: Booleanprivate
...
\n

Defaults to: true

Ext.grid.CheckboxSelectionModel
view source
: Booleanprivate
private ...

private

\n

Defaults to: true

Defined By

Methods

So that ColumnModel doesn't feed this through the Column constructor ...

So that ColumnModel doesn't feed this through the Column constructor

\n

Parameters

  • config : Object
    \n

Returns

Overrides: Ext.grid.RowSelectionModel.constructor

private ...

private

\n

Parameters

  • row : Object
    \n
  • col : Object
    \n
  • cm : Object
    \n
Adds the specified events to the list of events which this Observable may fire. ...

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

\n

Parameters

  • o : Object|String

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

    \n
  • Optional : string

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

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

Appends an event handler to this object.

\n

Parameters

  • eventName : String

    The name of the event to listen for.

    \n
  • handler : Function

    The method the event invokes.

    \n
  • scope : Object (optional)

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

    \n
  • options : Object (optional)

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

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

    \n\n

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

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

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

    \n

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

    \nOr a shorthand syntax:
    \n

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

Clears all selections if the selection model\nis not locked. ...

Clears all selections if the selection model\nis not locked.

\n

Parameters

  • fast : Boolean (optional)

    true to bypass the\nconditional checks and events described in deselectRow.

    \n
Deselects a range of rows if the selection model\nis not locked. ...

Deselects a range of rows if the selection model\nis not locked.
\nAll rows in between startRow and endRow are also deselected.

\n

Parameters

  • startRow : Number

    The index of the first row in the range

    \n
  • endRow : Number

    The index of the last row in the range

    \n
Deselects a row. ...

Deselects a row. Before deselecting a row, checks if the selection model\nis locked.\nIf this check is satisfied the row will be deselected and followed up by\nfiring the rowdeselect and selectionchange events.

\n

Parameters

  • row : Number

    The index of the row to deselect

    \n
  • preventViewNotify : Boolean (optional)

    Specify true to\nprevent notifying the view (disables updating the selected appearance)

    \n
Calls the passed function with each selection. ...

Calls the passed function with each selection. If the function returns\nfalse, iteration is stopped and this function returns\nfalse. Otherwise it returns true.

\n

Parameters

  • fn : Function

    The function to call upon each iteration. It is passed the selected Record.

    \n
  • scope : Object (optional)

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

    \n

Returns

  • Boolean

    true if all selections were iterated

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

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

\n\n\n

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

\n\n\n

Example:

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

Parameters

  • events : String/Array

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

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

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

\n\n\n

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

\n\n

Parameters

  • eventName : String

    The name of the event to fire.

    \n
  • args : Object...

    Variable number of parameters are passed to handlers.

    \n

Returns

  • Boolean

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

    \n
Gets the number of selected rows. ...

Gets the number of selected rows.

\n

Returns

Returns the first selected record. ...

Returns the first selected record.

\n

Returns

  • Record
    \n
Returns the selected records ...

Returns the selected records

\n

Returns

  • Array

    Array of selected records

    \n
private ...

private

\n

Parameters

  • g : Object
    \n
  • rowIndex : Object
    \n
  • e : Object
    \n
Checks to see if this object has any listeners for a specified event ...

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

\n

Parameters

  • eventName : String

    The name of the event to check for

    \n

Returns

  • Boolean

    True if the event is being listened for, else false

    \n
Returns true if there is a next record to select ...

Returns true if there is a next record to select

\n

Returns

  • Boolean
    \n
Returns true if there is a previous record to select ...

Returns true if there is a previous record to select

\n

Returns

  • Boolean
    \n
Returns true if there is a selection. ...

Returns true if there is a selection.

\n

Returns

  • Boolean
    \n
Ext.grid.CheckboxSelectionModel
view source
( )private
private ...
Returns true if the specified record id is selected. ...

Returns true if the specified record id is selected.

\n

Parameters

  • id : String

    The id of record to check

    \n

Returns

  • Boolean
    \n
Returns true if the selections are locked. ...

Returns true if the selections are locked.

\n

Returns

  • Boolean
    \n
Returns true if the specified row is selected. ...

Returns true if the specified row is selected.

\n

Parameters

  • index : Number/Record

    The record or index of the record to check

    \n

Returns

  • Boolean
    \n
Locks the selections. ...

Locks the selections.

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

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

\n

Parameters

  • eventName : String

    The type of event to listen for

    \n
  • handler : Function

    The method the event invokes

    \n
  • scope : Object (optional)

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

    \n
  • options : Object (optional)

    An object containing handler configuration.

    \n
private ...

private

\n

Parameters

  • field : Object
    \n
  • e : Object
    \n
Ext.grid.CheckboxSelectionModel
view source
( row, lastRow )private
...
\n

Parameters

  • row : Object
    \n
  • lastRow : Object
    \n

Overrides: Ext.grid.RowSelectionModel.onEditorSelect

Ext.grid.CheckboxSelectionModel
view source
( e, t )private
private ...

private

\n

Parameters

  • e : Object
    \n
  • t : Object
    \n
...
\n

Parameters

  • e : Object
    \n
  • name : Object
    \n
Ext.grid.CheckboxSelectionModel
view source
( e, t )private
private ...

private

\n

Parameters

  • e : Object
    \n
  • t : Object
    \n
private ...

private

\n

Parameters

  • v : Object
    \n
  • index : Object
    \n
  • r : Object
    \n
private ...

private

\n

Parameters

  • v : Object
    \n
  • index : Object
    \n
  • r : Object
    \n
Ext.grid.CheckboxSelectionModel
view source
( name, e, grid, rowIndex, colIndex )private
Process and refire events routed from the GridView's processEvent method. ...

Process and refire events routed from the GridView's processEvent method.

\n

Parameters

  • name : Object
    \n
  • e : Object
    \n
  • grid : Object
    \n
  • rowIndex : Object
    \n
  • colIndex : Object
    \n
Removes all listeners for this object ...

Removes all listeners for this object

\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

Parameters

  • o : Object

    The Observable whose events this object is to relay.

    \n
  • events : Array

    Array of event names to relay.

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

Removes an event handler.

\n

Parameters

  • eventName : String

    The type of event the handler was associated with.

    \n
  • handler : Function

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

    \n
  • scope : Object (optional)

    The scope originally specified for the handler.

    \n
Ext.grid.CheckboxSelectionModel
view source
( v, p, record )private
private ...

private

\n

Parameters

  • v : Object
    \n
  • p : Object
    \n
  • record : Object
    \n
Resume firing events. ...

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

\n
Selects all rows if the selection model\nis not locked. ...

Selects all rows if the selection model\nis not locked.

\n
Selects the first row in the grid. ...

Selects the first row in the grid.

\n
Select the last row. ...

Select the last row.

\n

Parameters

  • keepExisting : Boolean (optional)

    true to keep existing selections

    \n
Selects the row immediately following the last selected row. ...

Selects the row immediately following the last selected row.

\n

Parameters

  • keepExisting : Boolean (optional)

    true to keep existing selections

    \n

Returns

  • Boolean

    true if there is a next row, else false

    \n
Selects the row that precedes the last selected row. ...

Selects the row that precedes the last selected row.

\n

Parameters

  • keepExisting : Boolean (optional)

    true to keep existing selections

    \n

Returns

  • Boolean

    true if there is a previous row, else false

    \n
( startRow, endRow, [keepExisting] )
Selects a range of rows if the selection model\nis not locked. ...

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

\n

Parameters

  • startRow : Number

    The index of the first row in the range

    \n
  • endRow : Number

    The index of the last row in the range

    \n
  • keepExisting : Boolean (optional)

    True to retain existing selections

    \n
Select records. ...

Select records.

\n

Parameters

  • records : Array

    The records to select

    \n
  • keepExisting : Boolean (optional)

    true to keep existing selections

    \n
( row, [keepExisting], [preventViewNotify] )
Selects a row. ...

Selects a row. Before selecting a row, checks if the selection model\nis locked and fires the\nbeforerowselect event. If these checks are satisfied the row\nwill be selected and followed up by firing the rowselect and\nselectionchange events.

\n

Parameters

  • row : Number

    The index of the row to select

    \n
  • keepExisting : Boolean (optional)

    true to keep existing selections

    \n
  • preventViewNotify : Boolean (optional)

    Specify true to\nprevent notifying the view (disables updating the selected appearance)

    \n
Selects multiple rows. ...

Selects multiple rows.

\n

Parameters

  • rows : Array

    Array of the indexes of the row to select

    \n
  • keepExisting : Boolean (optional)

    true to keep\nexisting selections (defaults to false)

    \n
set the lock states before and after a view refresh ...

set the lock states before and after a view refresh

\n
set the lock states before and after a view refresh ...

set the lock states before and after a view refresh

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

Suspend the firing of all events. (see resumeEvents)

\n

Parameters

  • queueSuspended : Boolean

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

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

Removes an event handler (shorthand for removeListener.)

\n

Parameters

  • eventName : String

    The type of event the handler was associated with.

    \n
  • handler : Function

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

    \n
  • scope : Object (optional)

    The scope originally specified for the handler.

    \n
Unlocks the selections. ...

Unlocks the selections.

\n
Defined By

Events

( this, rowIndex, keepExisting, record )
Fires before a row is selected, return false to cancel the selection. ...

Fires before a row is selected, return false to cancel the selection.

\n

Parameters

  • this : SelectionModel
    \n
  • rowIndex : Number

    The index to be selected

    \n
  • keepExisting : Boolean

    False if other selections will be cleared

    \n
  • record : Record

    The record to be selected

    \n
Fires when a row is deselected. ...

Fires when a row is deselected. To prevent deselection\nlock the selections.

\n

Parameters

  • this : SelectionModel
    \n
  • rowIndex : Number
    \n
  • record : Record
    \n
Fires when a row is selected. ...

Fires when a row is selected.

\n

Parameters

Fires when the selection changes ...

Fires when the selection changes

\n

Parameters

  • this : SelectionModel
    \n
","superclasses":["Ext.util.Observable","Ext.grid.AbstractSelectionModel","Ext.grid.RowSelectionModel"],"meta":{},"requires":[],"html_meta":{},"statics":{"property":[],"cfg":[],"css_var":[],"method":[],"event":[],"css_mixin":[]},"files":[{"href":"CheckboxSelectionModel.html#Ext-grid-CheckboxSelectionModel","filename":"CheckboxSelectionModel.js"}],"linenr":1,"members":{"property":[{"tagname":"property","owner":"Ext.grid.CheckboxSelectionModel","meta":{"private":true},"name":"dataIndex","id":"property-dataIndex"},{"tagname":"property","owner":"Ext.grid.CheckboxSelectionModel","meta":{"private":true},"name":"fixed","id":"property-fixed"},{"tagname":"property","owner":"Ext.grid.AbstractSelectionModel","meta":{},"name":"grid","id":"property-grid"},{"tagname":"property","owner":"Ext.grid.CheckboxSelectionModel","meta":{"private":true},"name":"hideable","id":"property-hideable"},{"tagname":"property","owner":"Ext.grid.CheckboxSelectionModel","meta":{"private":true},"name":"id","id":"property-id"},{"tagname":"property","owner":"Ext.grid.CheckboxSelectionModel","meta":{"private":true},"name":"isColumn","id":"property-isColumn"},{"tagname":"property","owner":"Ext.grid.CheckboxSelectionModel","meta":{"private":true},"name":"menuDisabled","id":"property-menuDisabled"}],"cfg":[{"tagname":"cfg","owner":"Ext.grid.CheckboxSelectionModel","meta":{},"name":"checkOnly","id":"cfg-checkOnly"},{"tagname":"cfg","owner":"Ext.grid.CheckboxSelectionModel","meta":{},"name":"header","id":"cfg-header"},{"tagname":"cfg","owner":"Ext.util.Observable","meta":{},"name":"listeners","id":"cfg-listeners"},{"tagname":"cfg","owner":"Ext.grid.RowSelectionModel","meta":{},"name":"moveEditorOnEnter","id":"cfg-moveEditorOnEnter"},{"tagname":"cfg","owner":"Ext.grid.RowSelectionModel","meta":{},"name":"singleSelect","id":"cfg-singleSelect"},{"tagname":"cfg","owner":"Ext.grid.CheckboxSelectionModel","meta":{},"name":"sortable","id":"cfg-sortable"},{"tagname":"cfg","owner":"Ext.grid.CheckboxSelectionModel","meta":{},"name":"width","id":"cfg-width"}],"css_var":[],"method":[{"tagname":"method","owner":"Ext.grid.CheckboxSelectionModel","meta":{},"name":"constructor","id":"method-constructor"},{"tagname":"method","owner":"Ext.grid.RowSelectionModel","meta":{"private":true},"name":"acceptsNav","id":"method-acceptsNav"},{"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.grid.RowSelectionModel","meta":{},"name":"clearSelections","id":"method-clearSelections"},{"tagname":"method","owner":"Ext.grid.RowSelectionModel","meta":{},"name":"deselectRange","id":"method-deselectRange"},{"tagname":"method","owner":"Ext.grid.RowSelectionModel","meta":{},"name":"deselectRow","id":"method-deselectRow"},{"tagname":"method","owner":"Ext.grid.RowSelectionModel","meta":{"private":true},"name":"destroy","id":"method-destroy"},{"tagname":"method","owner":"Ext.grid.RowSelectionModel","meta":{},"name":"each","id":"method-each"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"enableBubble","id":"method-enableBubble"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"fireEvent","id":"method-fireEvent"},{"tagname":"method","owner":"Ext.grid.RowSelectionModel","meta":{},"name":"getCount","id":"method-getCount"},{"tagname":"method","owner":"Ext.grid.RowSelectionModel","meta":{},"name":"getSelected","id":"method-getSelected"},{"tagname":"method","owner":"Ext.grid.RowSelectionModel","meta":{},"name":"getSelections","id":"method-getSelections"},{"tagname":"method","owner":"Ext.grid.RowSelectionModel","meta":{"private":true},"name":"handleMouseDown","id":"method-handleMouseDown"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"hasListener","id":"method-hasListener"},{"tagname":"method","owner":"Ext.grid.RowSelectionModel","meta":{},"name":"hasNext","id":"method-hasNext"},{"tagname":"method","owner":"Ext.grid.RowSelectionModel","meta":{},"name":"hasPrevious","id":"method-hasPrevious"},{"tagname":"method","owner":"Ext.grid.RowSelectionModel","meta":{},"name":"hasSelection","id":"method-hasSelection"},{"tagname":"method","owner":"Ext.grid.CheckboxSelectionModel","meta":{"private":true},"name":"initEvents","id":"method-initEvents"},{"tagname":"method","owner":"Ext.grid.RowSelectionModel","meta":{},"name":"isIdSelected","id":"method-isIdSelected"},{"tagname":"method","owner":"Ext.grid.AbstractSelectionModel","meta":{},"name":"isLocked","id":"method-isLocked"},{"tagname":"method","owner":"Ext.grid.RowSelectionModel","meta":{},"name":"isSelected","id":"method-isSelected"},{"tagname":"method","owner":"Ext.grid.AbstractSelectionModel","meta":{},"name":"lock","id":"method-lock"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"on","id":"method-on"},{"tagname":"method","owner":"Ext.grid.RowSelectionModel","meta":{"private":true},"name":"onEditorKey","id":"method-onEditorKey"},{"tagname":"method","owner":"Ext.grid.CheckboxSelectionModel","meta":{"private":true},"name":"onEditorSelect","id":"method-onEditorSelect"},{"tagname":"method","owner":"Ext.grid.CheckboxSelectionModel","meta":{"private":true},"name":"onHdMouseDown","id":"method-onHdMouseDown"},{"tagname":"method","owner":"Ext.grid.RowSelectionModel","meta":{"private":true},"name":"onKeyPress","id":"method-onKeyPress"},{"tagname":"method","owner":"Ext.grid.CheckboxSelectionModel","meta":{"private":true},"name":"onMouseDown","id":"method-onMouseDown"},{"tagname":"method","owner":"Ext.grid.RowSelectionModel","meta":{"private":true},"name":"onRefresh","id":"method-onRefresh"},{"tagname":"method","owner":"Ext.grid.RowSelectionModel","meta":{"private":true},"name":"onRemove","id":"method-onRemove"},{"tagname":"method","owner":"Ext.grid.RowSelectionModel","meta":{"private":true},"name":"onRowUpdated","id":"method-onRowUpdated"},{"tagname":"method","owner":"Ext.grid.CheckboxSelectionModel","meta":{"private":true},"name":"processEvent","id":"method-processEvent"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"purgeListeners","id":"method-purgeListeners"},{"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.grid.CheckboxSelectionModel","meta":{"private":true},"name":"renderer","id":"method-renderer"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"resumeEvents","id":"method-resumeEvents"},{"tagname":"method","owner":"Ext.grid.RowSelectionModel","meta":{},"name":"selectAll","id":"method-selectAll"},{"tagname":"method","owner":"Ext.grid.RowSelectionModel","meta":{},"name":"selectFirstRow","id":"method-selectFirstRow"},{"tagname":"method","owner":"Ext.grid.RowSelectionModel","meta":{},"name":"selectLastRow","id":"method-selectLastRow"},{"tagname":"method","owner":"Ext.grid.RowSelectionModel","meta":{},"name":"selectNext","id":"method-selectNext"},{"tagname":"method","owner":"Ext.grid.RowSelectionModel","meta":{},"name":"selectPrevious","id":"method-selectPrevious"},{"tagname":"method","owner":"Ext.grid.RowSelectionModel","meta":{},"name":"selectRange","id":"method-selectRange"},{"tagname":"method","owner":"Ext.grid.RowSelectionModel","meta":{},"name":"selectRecords","id":"method-selectRecords"},{"tagname":"method","owner":"Ext.grid.RowSelectionModel","meta":{},"name":"selectRow","id":"method-selectRow"},{"tagname":"method","owner":"Ext.grid.RowSelectionModel","meta":{},"name":"selectRows","id":"method-selectRows"},{"tagname":"method","owner":"Ext.grid.AbstractSelectionModel","meta":{"private":true},"name":"sortLock","id":"method-sortLock"},{"tagname":"method","owner":"Ext.grid.AbstractSelectionModel","meta":{"private":true},"name":"sortUnLock","id":"method-sortUnLock"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"suspendEvents","id":"method-suspendEvents"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"un","id":"method-un"},{"tagname":"method","owner":"Ext.grid.AbstractSelectionModel","meta":{},"name":"unlock","id":"method-unlock"}],"event":[{"tagname":"event","owner":"Ext.grid.RowSelectionModel","meta":{},"name":"beforerowselect","id":"event-beforerowselect"},{"tagname":"event","owner":"Ext.grid.RowSelectionModel","meta":{},"name":"rowdeselect","id":"event-rowdeselect"},{"tagname":"event","owner":"Ext.grid.RowSelectionModel","meta":{},"name":"rowselect","id":"event-rowselect"},{"tagname":"event","owner":"Ext.grid.RowSelectionModel","meta":{},"name":"selectionchange","id":"event-selectionchange"}],"css_mixin":[]},"inheritable":null,"private":null,"component":false,"name":"Ext.grid.CheckboxSelectionModel","singleton":false,"override":null,"inheritdoc":null,"id":"class-Ext.grid.CheckboxSelectionModel","mixins":[],"mixedInto":[]});