Observable AbstractStoreSelectionModel
Package: | Ext |
Defined In: | AbstractStoreSelectionModel.js |
Class: | AbstractStoreSelectionModel |
Extends: | Observable |
Config Options | Defined By | |
---|---|---|
allowDeselect : Boolean Allow users to deselect a record in a DataView, List or Grid. Only applicable when the SelectionModel's mode is 'SING... Allow users to deselect a record in a DataView, List or Grid. Only applicable when the SelectionModel's mode is 'SINGLE'. Defaults to false. | AbstractStoreSelectionModel | |
listeners : Object A config object containing one or more event handlers to be added to this
object during initialization. This should ... 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 ExtJs Components While some ExtJs 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
| Observable | |
mode : String Modes of selection.
Valid values are SINGLE, SIMPLE, and MULTI. Defaults to 'SINGLE' | AbstractStoreSelectionModel |
Property | Defined By | |
---|---|---|
selected : Object READ-ONLY A MixedCollection that maintains all of the currently selected
records. | AbstractStoreSelectionModel |
Method | Defined By | |
---|---|---|
addEvents( Object|String o , string Optional. )
:
voidAdds 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. Parameters:
| Observable | |
addListener( String eventName , Function handler , [Object scope ], [Object options ] )
:
voidAppends an event handler to this object. Appends an event handler to this object. Parameters:
| Observable | |
addManagedListener( Observable|Element item , Object|String ename , Function fn , Object scope , Object opt )
:
voidAdds listeners to any Observable object (or Element) which are automatically removed when this Component
is destroyed... Adds listeners to any Observable object (or Element) which are automatically removed when this Component is destroyed. Parameters:
| Observable | |
clearListeners()
:
void Removes all listeners for this object including the managed listeners Removes all listeners for this object including the managed listeners Parameters:
| Observable | |
clearManagedListeners()
:
void Removes all managed listeners for this object. Removes all managed listeners for this object. Parameters:
| Observable | |
deselect( Ext.data.Record/Index records , Boolean suppressEvent )
:
voidDeselects a record instance by record instance or index. Deselects a record instance by record instance or index. Parameters:
| AbstractStoreSelectionModel | |
enableBubble( String/Array events )
:
voidEnables 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 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:
Parameters:
| Observable | |
fireEvent( String eventName , Object... args )
:
BooleanFires the specified event with the passed parameters (minus the event name).
An event may be set to bubble up an Obse... Fires the specified event with the passed parameters (minus the event name). An event may be set to bubble up an Observable parent hierarchy (See Ext.Component.getBubbleTarget) by calling enableBubble. Parameters:
| Observable | |
getLastSelected()
:
void Returns the last selected record. Returns the last selected record. Parameters:
| AbstractStoreSelectionModel | |
getSelection()
:
void Returns an array of the currently selected records. Returns an array of the currently selected records. Parameters:
| AbstractStoreSelectionModel | |
getSelectionMode()
:
void Returns the current selectionMode. SINGLE, MULTI or SIMPLE. Returns the current selectionMode. SINGLE, MULTI or SIMPLE. Parameters:
| AbstractStoreSelectionModel | |
hasListener( String eventName )
:
BooleanChecks 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 Parameters:
| Observable | |
hasSelection()
:
Boolean Returns true if there is a selected record. Returns true if there is a selected record. Parameters:
| AbstractStoreSelectionModel | |
isLocked()
:
Boolean Returns true if the selections are locked. Returns true if the selections are locked. Parameters:
| AbstractStoreSelectionModel | |
isSelected( Record/Number record )
:
BooleanReturns true if the specified row is selected. Returns true if the specified row is selected. Parameters:
| AbstractStoreSelectionModel | |
on( String eventName , Function handler , [Object scope ], [Object options ] )
:
voidAppends an event handler to this object (shorthand for addListener.) Appends an event handler to this object (shorthand for addListener.) Parameters:
| Observable | |
relayEvents( Object o , Array events )
:
voidRelays 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. Parameters:
| Observable | |
removeListener( String eventName , Function handler , [Object scope ] )
:
voidRemoves an event handler. Removes an event handler. Parameters:
| Observable | |
removeManagedListener( Observable|Element item , Object|String ename , Function fn , Object scope )
:
voidRemoves listeners that were added by the mon method. Removes listeners that were added by the mon method. Parameters:
| Observable | |
resumeEvents()
:
void Resume firing events. (see suspendEvents)
If events were suspended using the queueSuspended parameter, then all
event... Resume 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. Parameters:
| Observable | |
select( Ext.data.Record/Index records , Boolean keepExisting , Boolean suppressEvent )
:
voidSelects a record instance by record instance or index. Selects a record instance by record instance or index. Parameters:
| AbstractStoreSelectionModel | |
selectRange( Number startRow , Number endRow , [Boolean keepExisting ] )
:
voidSelects a range of rows if the selection model
is not locked.
All rows in between startRow and endRow are also select... Selects a range of rows if the selection model
is not locked.
All rows in between startRow and endRow are also selected. Parameters:
| AbstractStoreSelectionModel | |
setLastFocused( Ext.data.Record record )
:
voidParameters:
| AbstractStoreSelectionModel | |
setLocked( Boolean locked )
:
voidLocks 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. Parameters:
| AbstractStoreSelectionModel | |
setSelectionMode()
:
void Sets the current selectionMode. SINGLE, MULTI or SIMPLE. Sets the current selectionMode. SINGLE, MULTI or SIMPLE. Parameters:
| AbstractStoreSelectionModel | |
suspendEvents( Boolean queueSuspended )
:
voidSuspend the firing of all events. (see resumeEvents) Suspend the firing of all events. (see resumeEvents) Parameters:
| Observable | |
un( String eventName , Function handler , [Object scope ] )
:
voidRemoves an event handler (shorthand for removeListener.) Removes an event handler (shorthand for removeListener.) Parameters:
| Observable |