X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/c930e9176a5a85509c5b0230e2bff5c22a591432..6b044c28b5f26fb99c86c237ffad19741c0f7f3d:/docs/output/Ext.grid.RowSelectionModel.html diff --git a/docs/output/Ext.grid.RowSelectionModel.html b/docs/output/Ext.grid.RowSelectionModel.html index e0441afc..de47a26a 100644 --- a/docs/output/Ext.grid.RowSelectionModel.html +++ b/docs/output/Ext.grid.RowSelectionModel.html @@ -1,4 +1,6 @@ -
Observable AbstractSelectionModel RowSelectionModel
Package: | Ext.grid |
Defined In: | RowSelectionModel.js |
Class: | RowSelectionModel |
Subclasses: | CheckboxSelectionModel |
Extends: | AbstractSelectionModel |
Observable + AbstractSelectionModel + RowSelectionModel
Package: | Ext.grid |
Defined In: | RowSelectionModel.js |
Class: | RowSelectionModel |
Subclasses: | CheckboxSelectionModel |
Extends: | AbstractSelectionModel |
Config Options | Defined By | |
---|---|---|
listeners : Object A config object containing one or more event handlers to be added to this
@@ -60,9 +62,11 @@ Ext.DomObserver = Ext.extend(Object, {
or the next row up when shift ... false to turn off moving the editor to the next row down when the enter key is pressed
or the next row up when shift + enter keys are pressed. | RowSelectionModel | |
singleSelect : Boolean true to allow selection of only one row at a time (defaults to false
allowing multiple selections) | RowSelectionModel |
Property | Defined By | |
---|---|---|
grid : Object The GridPanel for which this SelectionModel is handling selection. Read-only. | AbstractSelectionModel |
Method | Defined By | |
---|---|---|
RowSelectionModel( Object config )
- Parameters:
| RowSelectionModel | |
addEvents( Object object )
+ Parameters:
| RowSelectionModel | |
addEvents( Object|String o , string Optional. )
:
- voidUsed to define events on this Observable Used to define events on this Observable Parameters:
| Observable | |
addListener( String eventName , Function handler , [Object scope ], [Object options ] )
+ 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 | |
clearSelections( [Boolean fast ] )
:
voidClears all selections if the selection model
@@ -137,9 +141,41 @@ prevent notifying the view (disables updating the selected appearance) Calls the passed function with each selection. If the function returns
false, iteration is stopped and this function ... Calls the passed function with each selection. If the function returns
false, iteration is stopped and this function returns
-false. Otherwise it returns true. Parameters:
| RowSelectionModel | |
enableBubble( Object events )
- :
- voidUsed to enable bubbling of events Used to enable bubbling of events Parameters:
| Observable | |
fireEvent( String eventName , Object... args )
+false. Otherwise it returns true.Parameters:
| RowSelectionModel | |
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). |