Class Ext.grid.CellSelectionModel
Properties
-
Methods
-
Events
Public Properties
This class has no public properties.
Public Methods
|
CellSelectionModel(Object config ) |
CellSelectionModel |
|
|
addEvents(Object object ) : void |
Observable |
Copies any events from the passed object onto this object if they do not already exist. The passed object
must also ... |
|
addListener(String eventName , Function handler , [Object options ]) : void |
Observable |
Appends an event handler to this component |
|
clearSelections() : void |
CellSelectionModel |
Clears all selections. |
|
fireEvent(String eventName , Object... args ) : Boolean |
Observable |
Fires the specified event with the passed parameters (minus the event name). |
|
hasListener(String eventName ) : Boolean |
Observable |
Checks to see if this object is currently listening for a specified event |
|
hasSelection() : Boolean |
CellSelectionModel |
Returns True if there is a selection. |
|
isLocked() : Boolean |
AbstractSelectionModel |
Returns true if the selections are locked |
|
lock() : void |
AbstractSelectionModel |
Lock the selections |
|
on(String eventName , Function handler , [Object options ]) : void |
Observable |
Appends an event handler to this element (shorthand for addListener) |
|
purgeListeners() : void |
Observable |
Removes all listeners for this object |
|
removeListener(String eventName , Function handler , [Object scope ]) : void |
Observable |
Removes a listener |
|
select(Number rowIndex , Number collIndex ) : void |
CellSelectionModel |
Selects a cell. |
|
un(String eventName , Function handler , [Object scope ]) : void |
Observable |
Removes a listener (shorthand for removeListener) |
|
unlock() : void |
AbstractSelectionModel |
Unlock the selections |
Public Events
|
beforerowselect : (SelectionModel this , Number rowIndex , Number colIndex ) |
CellSelectionModel |
Fires before a cell is selected. |
|
cellselect : (SelectionModel this , Number rowIndex , Number colIndex ) |
CellSelectionModel |
Fires when a cell is selected. |
|
selectionchange : (SelectionModel this , Object selection ) |
CellSelectionModel |
Fires when the active selection changes. |
Constructor Details
CellSelectionModel
public function CellSelectionModel(Object config
)
Method Details
addEvents
public function addEvents(Object object
)
Copies any events from the passed object onto this object if they do not already exist. The passed object
must also inherit from Observable for this method to have any effect.
addListener
public function addListener(String eventName
, Function handler
, [Object options
])
Appends an event handler to this component
clearSelections
public function clearSelections()
This method is defined by CellSelectionModel.
fireEvent
public function fireEvent(String eventName
, Object... args
)
Fires the specified event with the passed parameters (minus the event name).
hasListener
public function hasListener(String eventName
)
Checks to see if this object is currently listening for a specified event
hasSelection
public function hasSelection()
Returns True if there is a selection.
This method is defined by CellSelectionModel.
isLocked
public function isLocked()
Returns true if the selections are locked
lock
public function lock()
on
public function on(String eventName
, Function handler
, [Object options
])
Appends an event handler to this element (shorthand for addListener)
purgeListeners
public function purgeListeners()
Removes all listeners for this object
removeListener
public function removeListener(String eventName
, Function handler
, [Object scope
])
select
public function select(Number rowIndex
, Number collIndex
)
Selects a cell.
Parameters:
rowIndex
: NumbercollIndex
: Number
Returns:
This method is defined by CellSelectionModel.
un
public function un(String eventName
, Function handler
, [Object scope
])
Removes a listener (shorthand for removeListener)
unlock
public function unlock()
Event Details
beforerowselect
public event beforerowselect
Fires before a cell is selected.
Subscribers will be called with the following parameters:
this
: SelectionModelrowIndex
: NumberThe selected row index
colIndex
: NumberThe selected cell index
This event is defined by CellSelectionModel.
cellselect
public event cellselect
Fires when a cell is selected.
Subscribers will be called with the following parameters:
this
: SelectionModelrowIndex
: NumberThe selected row index
colIndex
: NumberThe selected cell index
This event is defined by CellSelectionModel.
selectionchange
public event selectionchange
Fires when the active selection changes.
Subscribers will be called with the following parameters:
this
: SelectionModelselection
: Objectnull for no selection or an object (o) with two properties
- o.record: the record object for the row the selection is in
- o.cell: An array of [rowIndex, columnIndex]
This event is defined by CellSelectionModel.