3 <title>The source code</title>
4 <link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" />
5 <script type="text/javascript" src="../resources/prettify/prettify.js"></script>
7 <body onload="prettyPrint();">
8 <pre class="prettyprint lang-js">/*!
10 * Copyright(c) 2006-2009 Ext JS, LLC
12 * http://www.extjs.com/license
14 <div id="cls-Ext.grid.RowSelectionModel"></div>/**
15 * @class Ext.grid.RowSelectionModel
16 * @extends Ext.grid.AbstractSelectionModel
17 * The default SelectionModel used by {@link Ext.grid.GridPanel}.
18 * It supports multiple selections and keyboard selection/navigation. The objects stored
19 * as selections and returned by {@link #getSelected}, and {@link #getSelections} are
20 * the {@link Ext.data.Record Record}s which provide the data for the selected rows.
22 * @param {Object} config
24 Ext.grid.RowSelectionModel = function(config){
25 Ext.apply(this, config);
26 this.selections = new Ext.util.MixedCollection(false, function(o){
31 this.lastActive = false;
34 <div id="event-Ext.grid.RowSelectionModel-selectionchange"></div>/**
35 * @event selectionchange
36 * Fires when the selection changes
37 * @param {SelectionModel} this
40 <div id="event-Ext.grid.RowSelectionModel-beforerowselect"></div>/**
41 * @event beforerowselect
42 * Fires before a row is selected, return false to cancel the selection.
43 * @param {SelectionModel} this
44 * @param {Number} rowIndex The index to be selected
45 * @param {Boolean} keepExisting False if other selections will be cleared
46 * @param {Record} record The record to be selected
49 <div id="event-Ext.grid.RowSelectionModel-rowselect"></div>/**
51 * Fires when a row is selected.
52 * @param {SelectionModel} this
53 * @param {Number} rowIndex The selected index
54 * @param {Ext.data.Record} r The selected record
57 <div id="event-Ext.grid.RowSelectionModel-rowdeselect"></div>/**
59 * Fires when a row is deselected. To prevent deselection
60 * {@link Ext.grid.AbstractSelectionModel#lock lock the selections}.
61 * @param {SelectionModel} this
62 * @param {Number} rowIndex
63 * @param {Record} record
68 Ext.grid.RowSelectionModel.superclass.constructor.call(this);
71 Ext.extend(Ext.grid.RowSelectionModel, Ext.grid.AbstractSelectionModel, {
72 <div id="cfg-Ext.grid.RowSelectionModel-singleSelect"></div>/**
73 * @cfg {Boolean} singleSelect
74 * <tt>true</tt> to allow selection of only one row at a time (defaults to <tt>false</tt>
75 * allowing multiple selections)
79 <div id="cfg-Ext.grid.RowSelectionModel-moveEditorOnEnter"></div>/**
80 * @cfg {Boolean} moveEditorOnEnter
81 * <tt>false</tt> to turn off moving the editor to the next row down when the enter key is pressed
82 * or the next row up when shift + enter keys are pressed.
85 initEvents : function(){
87 if(!this.grid.enableDragDrop && !this.grid.enableDrag){
88 this.grid.on('rowmousedown', this.handleMouseDown, this);
91 this.rowNav = new Ext.KeyNav(this.grid.getGridEl(), {
93 if(!e.shiftKey || this.singleSelect){
94 this.selectPrevious(false);
95 }else if(this.last !== false && this.lastActive !== false){
97 this.selectRange(this.last, this.lastActive-1);
98 this.grid.getView().focusRow(this.lastActive);
103 this.selectFirstRow();
106 'down' : function(e){
107 if(!e.shiftKey || this.singleSelect){
108 this.selectNext(false);
109 }else if(this.last !== false && this.lastActive !== false){
110 var last = this.last;
111 this.selectRange(this.last, this.lastActive+1);
112 this.grid.getView().focusRow(this.lastActive);
117 this.selectFirstRow();
123 this.grid.getView().on({
125 refresh: this.onRefresh,
126 rowupdated: this.onRowUpdated,
127 rowremoved: this.onRemove
132 onRefresh : function(){
133 var ds = this.grid.store, index;
134 var s = this.getSelections();
135 this.clearSelections(true);
136 for(var i = 0, len = s.length; i < len; i++){
138 if((index = ds.indexOfId(r.id)) != -1){
139 this.selectRow(index, true);
142 if(s.length != this.selections.getCount()){
143 this.fireEvent('selectionchange', this);
148 onRemove : function(v, index, r){
149 if(this.selections.remove(r) !== false){
150 this.fireEvent('selectionchange', this);
155 onRowUpdated : function(v, index, r){
156 if(this.isSelected(r)){
157 v.onRowSelect(index);
161 <div id="method-Ext.grid.RowSelectionModel-selectRecords"></div>/**
163 * @param {Array} records The records to select
164 * @param {Boolean} keepExisting (optional) <tt>true</tt> to keep existing selections
166 selectRecords : function(records, keepExisting){
168 this.clearSelections();
170 var ds = this.grid.store;
171 for(var i = 0, len = records.length; i < len; i++){
172 this.selectRow(ds.indexOf(records[i]), true);
176 <div id="method-Ext.grid.RowSelectionModel-getCount"></div>/**
177 * Gets the number of selected rows.
180 getCount : function(){
181 return this.selections.length;
184 <div id="method-Ext.grid.RowSelectionModel-selectFirstRow"></div>/**
185 * Selects the first row in the grid.
187 selectFirstRow : function(){
191 <div id="method-Ext.grid.RowSelectionModel-selectLastRow"></div>/**
192 * Select the last row.
193 * @param {Boolean} keepExisting (optional) <tt>true</tt> to keep existing selections
195 selectLastRow : function(keepExisting){
196 this.selectRow(this.grid.store.getCount() - 1, keepExisting);
199 <div id="method-Ext.grid.RowSelectionModel-selectNext"></div>/**
200 * Selects the row immediately following the last selected row.
201 * @param {Boolean} keepExisting (optional) <tt>true</tt> to keep existing selections
202 * @return {Boolean} <tt>true</tt> if there is a next row, else <tt>false</tt>
204 selectNext : function(keepExisting){
206 this.selectRow(this.last+1, keepExisting);
207 this.grid.getView().focusRow(this.last);
213 <div id="method-Ext.grid.RowSelectionModel-selectPrevious"></div>/**
214 * Selects the row that precedes the last selected row.
215 * @param {Boolean} keepExisting (optional) <tt>true</tt> to keep existing selections
216 * @return {Boolean} <tt>true</tt> if there is a previous row, else <tt>false</tt>
218 selectPrevious : function(keepExisting){
219 if(this.hasPrevious()){
220 this.selectRow(this.last-1, keepExisting);
221 this.grid.getView().focusRow(this.last);
227 <div id="method-Ext.grid.RowSelectionModel-hasNext"></div>/**
228 * Returns true if there is a next record to select
231 hasNext : function(){
232 return this.last !== false && (this.last+1) < this.grid.store.getCount();
235 <div id="method-Ext.grid.RowSelectionModel-hasPrevious"></div>/**
236 * Returns true if there is a previous record to select
239 hasPrevious : function(){
244 <div id="method-Ext.grid.RowSelectionModel-getSelections"></div>/**
245 * Returns the selected records
246 * @return {Array} Array of selected records
248 getSelections : function(){
249 return [].concat(this.selections.items);
252 <div id="method-Ext.grid.RowSelectionModel-getSelected"></div>/**
253 * Returns the first selected record.
256 getSelected : function(){
257 return this.selections.itemAt(0);
260 <div id="method-Ext.grid.RowSelectionModel-each"></div>/**
261 * Calls the passed function with each selection. If the function returns
262 * <tt>false</tt>, iteration is stopped and this function returns
263 * <tt>false</tt>. Otherwise it returns <tt>true</tt>.
264 * @param {Function} fn
265 * @param {Object} scope (optional)
266 * @return {Boolean} true if all selections were iterated
268 each : function(fn, scope){
269 var s = this.getSelections();
270 for(var i = 0, len = s.length; i < len; i++){
271 if(fn.call(scope || this, s[i], i) === false){
278 <div id="method-Ext.grid.RowSelectionModel-clearSelections"></div>/**
279 * Clears all selections if the selection model
280 * {@link Ext.grid.AbstractSelectionModel#isLocked is not locked}.
281 * @param {Boolean} fast (optional) <tt>true</tt> to bypass the
282 * conditional checks and events described in {@link #deselectRow}.
284 clearSelections : function(fast){
289 var ds = this.grid.store;
290 var s = this.selections;
292 this.deselectRow(ds.indexOfId(r.id));
296 this.selections.clear();
302 <div id="method-Ext.grid.RowSelectionModel-selectAll"></div>/**
303 * Selects all rows if the selection model
304 * {@link Ext.grid.AbstractSelectionModel#isLocked is not locked}.
306 selectAll : function(){
310 this.selections.clear();
311 for(var i = 0, len = this.grid.store.getCount(); i < len; i++){
312 this.selectRow(i, true);
316 <div id="method-Ext.grid.RowSelectionModel-hasSelection"></div>/**
317 * Returns <tt>true</tt> if there is a selection.
320 hasSelection : function(){
321 return this.selections.length > 0;
324 <div id="method-Ext.grid.RowSelectionModel-isSelected"></div>/**
325 * Returns <tt>true</tt> if the specified row is selected.
326 * @param {Number/Record} index The record or index of the record to check
329 isSelected : function(index){
330 var r = Ext.isNumber(index) ? this.grid.store.getAt(index) : index;
331 return (r && this.selections.key(r.id) ? true : false);
334 <div id="method-Ext.grid.RowSelectionModel-isIdSelected"></div>/**
335 * Returns <tt>true</tt> if the specified record id is selected.
336 * @param {String} id The id of record to check
339 isIdSelected : function(id){
340 return (this.selections.key(id) ? true : false);
344 handleMouseDown : function(g, rowIndex, e){
345 if(e.button !== 0 || this.isLocked()){
348 var view = this.grid.getView();
349 if(e.shiftKey && !this.singleSelect && this.last !== false){
350 var last = this.last;
351 this.selectRange(last, rowIndex, e.ctrlKey);
352 this.last = last; // reset the last
353 view.focusRow(rowIndex);
355 var isSelected = this.isSelected(rowIndex);
356 if(e.ctrlKey && isSelected){
357 this.deselectRow(rowIndex);
358 }else if(!isSelected || this.getCount() > 1){
359 this.selectRow(rowIndex, e.ctrlKey || e.shiftKey);
360 view.focusRow(rowIndex);
365 <div id="method-Ext.grid.RowSelectionModel-selectRows"></div>/**
366 * Selects multiple rows.
367 * @param {Array} rows Array of the indexes of the row to select
368 * @param {Boolean} keepExisting (optional) <tt>true</tt> to keep
369 * existing selections (defaults to <tt>false</tt>)
371 selectRows : function(rows, keepExisting){
373 this.clearSelections();
375 for(var i = 0, len = rows.length; i < len; i++){
376 this.selectRow(rows[i], true);
380 <div id="method-Ext.grid.RowSelectionModel-selectRange"></div>/**
381 * Selects a range of rows if the selection model
382 * {@link Ext.grid.AbstractSelectionModel#isLocked is not locked}.
383 * All rows in between startRow and endRow are also selected.
384 * @param {Number} startRow The index of the first row in the range
385 * @param {Number} endRow The index of the last row in the range
386 * @param {Boolean} keepExisting (optional) True to retain existing selections
388 selectRange : function(startRow, endRow, keepExisting){
394 this.clearSelections();
396 if(startRow <= endRow){
397 for(i = startRow; i <= endRow; i++){
398 this.selectRow(i, true);
401 for(i = startRow; i >= endRow; i--){
402 this.selectRow(i, true);
407 <div id="method-Ext.grid.RowSelectionModel-deselectRange"></div>/**
408 * Deselects a range of rows if the selection model
409 * {@link Ext.grid.AbstractSelectionModel#isLocked is not locked}.
410 * All rows in between startRow and endRow are also deselected.
411 * @param {Number} startRow The index of the first row in the range
412 * @param {Number} endRow The index of the last row in the range
414 deselectRange : function(startRow, endRow, preventViewNotify){
418 for(var i = startRow; i <= endRow; i++){
419 this.deselectRow(i, preventViewNotify);
423 <div id="method-Ext.grid.RowSelectionModel-selectRow"></div>/**
424 * Selects a row. Before selecting a row, checks if the selection model
425 * {@link Ext.grid.AbstractSelectionModel#isLocked is locked} and fires the
426 * {@link #beforerowselect} event. If these checks are satisfied the row
427 * will be selected and followed up by firing the {@link #rowselect} and
428 * {@link #selectionchange} events.
429 * @param {Number} row The index of the row to select
430 * @param {Boolean} keepExisting (optional) <tt>true</tt> to keep existing selections
431 * @param {Boolean} preventViewNotify (optional) Specify <tt>true</tt> to
432 * prevent notifying the view (disables updating the selected appearance)
434 selectRow : function(index, keepExisting, preventViewNotify){
435 if(this.isLocked() || (index < 0 || index >= this.grid.store.getCount()) || (keepExisting && this.isSelected(index))){
438 var r = this.grid.store.getAt(index);
439 if(r && this.fireEvent('beforerowselect', this, index, keepExisting, r) !== false){
440 if(!keepExisting || this.singleSelect){
441 this.clearSelections();
443 this.selections.add(r);
444 this.last = this.lastActive = index;
445 if(!preventViewNotify){
446 this.grid.getView().onRowSelect(index);
448 this.fireEvent('rowselect', this, index, r);
449 this.fireEvent('selectionchange', this);
453 <div id="method-Ext.grid.RowSelectionModel-deselectRow"></div>/**
454 * Deselects a row. Before deselecting a row, checks if the selection model
455 * {@link Ext.grid.AbstractSelectionModel#isLocked is locked}.
456 * If this check is satisfied the row will be deselected and followed up by
457 * firing the {@link #rowdeselect} and {@link #selectionchange} events.
458 * @param {Number} row The index of the row to deselect
459 * @param {Boolean} preventViewNotify (optional) Specify <tt>true</tt> to
460 * prevent notifying the view (disables updating the selected appearance)
462 deselectRow : function(index, preventViewNotify){
466 if(this.last == index){
469 if(this.lastActive == index){
470 this.lastActive = false;
472 var r = this.grid.store.getAt(index);
474 this.selections.remove(r);
475 if(!preventViewNotify){
476 this.grid.getView().onRowDeselect(index);
478 this.fireEvent('rowdeselect', this, index, r);
479 this.fireEvent('selectionchange', this);
484 restoreLast : function(){
486 this.last = this._last;
491 acceptsNav : function(row, col, cm){
492 return !cm.isHidden(col) && cm.isCellEditable(col, row);
496 onEditorKey : function(field, e){
503 var shift = e.shiftKey;
508 newCell = g.walkCells(ed.row, ed.col-1, -1, this.acceptsNav, this);
510 newCell = g.walkCells(ed.row, ed.col+1, 1, this.acceptsNav, this);
512 }else if(k == e.ENTER){
513 if(this.moveEditorOnEnter !== false){
515 newCell = g.walkCells(last.row - 1, last.col, -1, this.acceptsNav, this);
517 newCell = g.walkCells(last.row + 1, last.col, 1, this.acceptsNav, this);
526 this.selectRow(r); // *** highlight newly-selected cell and update selection
529 if(g.isEditor && g.editing){ // *** handle tabbing while editorgrid is in edit mode
531 if(ae && ae.field.triggerBlur){
532 // *** if activeEditor is a TriggerField, explicitly call its triggerBlur() method
533 ae.field.triggerBlur();
536 g.startEditing(r, c);
540 destroy : function(){
542 this.rowNav.disable();
545 Ext.grid.RowSelectionModel.superclass.destroy.call(this);