RowSelectionModel.js
上传用户:dawnssy
上传日期:2022-08-06
资源大小:9345k
文件大小:18k
源码类别:

JavaScript

开发平台:

JavaScript

  1. /*!
  2.  * Ext JS Library 3.1.0
  3.  * Copyright(c) 2006-2009 Ext JS, LLC
  4.  * licensing@extjs.com
  5.  * http://www.extjs.com/license
  6.  */
  7. /**
  8.  * @class Ext.grid.RowSelectionModel
  9.  * @extends Ext.grid.AbstractSelectionModel
  10.  * The default SelectionModel used by {@link Ext.grid.GridPanel}.
  11.  * It supports multiple selections and keyboard selection/navigation. The objects stored
  12.  * as selections and returned by {@link #getSelected}, and {@link #getSelections} are
  13.  * the {@link Ext.data.Record Record}s which provide the data for the selected rows.
  14.  * @constructor
  15.  * @param {Object} config
  16.  */
  17. Ext.grid.RowSelectionModel = Ext.extend(Ext.grid.AbstractSelectionModel,  {
  18.     /**
  19.      * @cfg {Boolean} singleSelect
  20.      * <tt>true</tt> to allow selection of only one row at a time (defaults to <tt>false</tt>
  21.      * allowing multiple selections)
  22.      */
  23.     singleSelect : false,
  24.     
  25.     constructor : function(config){
  26.         Ext.apply(this, config);
  27.         this.selections = new Ext.util.MixedCollection(false, function(o){
  28.             return o.id;
  29.         });
  30.         this.last = false;
  31.         this.lastActive = false;
  32.         this.addEvents(
  33.         /**
  34.          * @event selectionchange
  35.          * Fires when the selection changes
  36.          * @param {SelectionModel} this
  37.          */
  38.         'selectionchange',
  39.         /**
  40.          * @event beforerowselect
  41.          * Fires before a row is selected, return false to cancel the selection.
  42.          * @param {SelectionModel} this
  43.          * @param {Number} rowIndex The index to be selected
  44.          * @param {Boolean} keepExisting False if other selections will be cleared
  45.          * @param {Record} record The record to be selected
  46.          */
  47.         'beforerowselect',
  48.         /**
  49.          * @event rowselect
  50.          * Fires when a row is selected.
  51.          * @param {SelectionModel} this
  52.          * @param {Number} rowIndex The selected index
  53.          * @param {Ext.data.Record} r The selected record
  54.          */
  55.         'rowselect',
  56.         /**
  57.          * @event rowdeselect
  58.          * Fires when a row is deselected.  To prevent deselection
  59.          * {@link Ext.grid.AbstractSelectionModel#lock lock the selections}. 
  60.          * @param {SelectionModel} this
  61.          * @param {Number} rowIndex
  62.          * @param {Record} record
  63.          */
  64.         'rowdeselect'
  65.         );
  66.         Ext.grid.RowSelectionModel.superclass.constructor.call(this);
  67.     },
  68.     /**
  69.      * @cfg {Boolean} moveEditorOnEnter
  70.      * <tt>false</tt> to turn off moving the editor to the next row down when the enter key is pressed
  71.      * or the next row up when shift + enter keys are pressed.
  72.      */
  73.     // private
  74.     initEvents : function(){
  75.         if(!this.grid.enableDragDrop && !this.grid.enableDrag){
  76.             this.grid.on('rowmousedown', this.handleMouseDown, this);
  77.         }
  78.         this.rowNav = new Ext.KeyNav(this.grid.getGridEl(), {
  79.             'up' : function(e){
  80.                 if(!e.shiftKey || this.singleSelect){
  81.                     this.selectPrevious(false);
  82.                 }else if(this.last !== false && this.lastActive !== false){
  83.                     var last = this.last;
  84.                     this.selectRange(this.last,  this.lastActive-1);
  85.                     this.grid.getView().focusRow(this.lastActive);
  86.                     if(last !== false){
  87.                         this.last = last;
  88.                     }
  89.                 }else{
  90.                     this.selectFirstRow();
  91.                 }
  92.             },
  93.             'down' : function(e){
  94.                 if(!e.shiftKey || this.singleSelect){
  95.                     this.selectNext(false);
  96.                 }else if(this.last !== false && this.lastActive !== false){
  97.                     var last = this.last;
  98.                     this.selectRange(this.last,  this.lastActive+1);
  99.                     this.grid.getView().focusRow(this.lastActive);
  100.                     if(last !== false){
  101.                         this.last = last;
  102.                     }
  103.                 }else{
  104.                     this.selectFirstRow();
  105.                 }
  106.             },
  107.             scope: this
  108.         });
  109.         this.grid.getView().on({
  110.             scope: this,
  111.             refresh: this.onRefresh,
  112.             rowupdated: this.onRowUpdated,
  113.             rowremoved: this.onRemove
  114.         });
  115.     },
  116.     // private
  117.     onRefresh : function(){
  118.         var ds = this.grid.store, index;
  119.         var s = this.getSelections();
  120.         this.clearSelections(true);
  121.         for(var i = 0, len = s.length; i < len; i++){
  122.             var r = s[i];
  123.             if((index = ds.indexOfId(r.id)) != -1){
  124.                 this.selectRow(index, true);
  125.             }
  126.         }
  127.         if(s.length != this.selections.getCount()){
  128.             this.fireEvent('selectionchange', this);
  129.         }
  130.     },
  131.     // private
  132.     onRemove : function(v, index, r){
  133.         if(this.selections.remove(r) !== false){
  134.             this.fireEvent('selectionchange', this);
  135.         }
  136.     },
  137.     // private
  138.     onRowUpdated : function(v, index, r){
  139.         if(this.isSelected(r)){
  140.             v.onRowSelect(index);
  141.         }
  142.     },
  143.     /**
  144.      * Select records.
  145.      * @param {Array} records The records to select
  146.      * @param {Boolean} keepExisting (optional) <tt>true</tt> to keep existing selections
  147.      */
  148.     selectRecords : function(records, keepExisting){
  149.         if(!keepExisting){
  150.             this.clearSelections();
  151.         }
  152.         var ds = this.grid.store;
  153.         for(var i = 0, len = records.length; i < len; i++){
  154.             this.selectRow(ds.indexOf(records[i]), true);
  155.         }
  156.     },
  157.     /**
  158.      * Gets the number of selected rows.
  159.      * @return {Number}
  160.      */
  161.     getCount : function(){
  162.         return this.selections.length;
  163.     },
  164.     /**
  165.      * Selects the first row in the grid.
  166.      */
  167.     selectFirstRow : function(){
  168.         this.selectRow(0);
  169.     },
  170.     /**
  171.      * Select the last row.
  172.      * @param {Boolean} keepExisting (optional) <tt>true</tt> to keep existing selections
  173.      */
  174.     selectLastRow : function(keepExisting){
  175.         this.selectRow(this.grid.store.getCount() - 1, keepExisting);
  176.     },
  177.     /**
  178.      * Selects the row immediately following the last selected row.
  179.      * @param {Boolean} keepExisting (optional) <tt>true</tt> to keep existing selections
  180.      * @return {Boolean} <tt>true</tt> if there is a next row, else <tt>false</tt>
  181.      */
  182.     selectNext : function(keepExisting){
  183.         if(this.hasNext()){
  184.             this.selectRow(this.last+1, keepExisting);
  185.             this.grid.getView().focusRow(this.last);
  186.             return true;
  187.         }
  188.         return false;
  189.     },
  190.     /**
  191.      * Selects the row that precedes the last selected row.
  192.      * @param {Boolean} keepExisting (optional) <tt>true</tt> to keep existing selections
  193.      * @return {Boolean} <tt>true</tt> if there is a previous row, else <tt>false</tt>
  194.      */
  195.     selectPrevious : function(keepExisting){
  196.         if(this.hasPrevious()){
  197.             this.selectRow(this.last-1, keepExisting);
  198.             this.grid.getView().focusRow(this.last);
  199.             return true;
  200.         }
  201.         return false;
  202.     },
  203.     /**
  204.      * Returns true if there is a next record to select
  205.      * @return {Boolean}
  206.      */
  207.     hasNext : function(){
  208.         return this.last !== false && (this.last+1) < this.grid.store.getCount();
  209.     },
  210.     /**
  211.      * Returns true if there is a previous record to select
  212.      * @return {Boolean}
  213.      */
  214.     hasPrevious : function(){
  215.         return !!this.last;
  216.     },
  217.     /**
  218.      * Returns the selected records
  219.      * @return {Array} Array of selected records
  220.      */
  221.     getSelections : function(){
  222.         return [].concat(this.selections.items);
  223.     },
  224.     /**
  225.      * Returns the first selected record.
  226.      * @return {Record}
  227.      */
  228.     getSelected : function(){
  229.         return this.selections.itemAt(0);
  230.     },
  231.     /**
  232.      * Calls the passed function with each selection. If the function returns
  233.      * <tt>false</tt>, iteration is stopped and this function returns
  234.      * <tt>false</tt>. Otherwise it returns <tt>true</tt>.
  235.      * @param {Function} fn The function to call upon each iteration. It is passed the selected {@link Ext.data.Record Record}.
  236.      * @param {Object} scope (optional) The scope (<code>this</code> reference) in which the function is executed. Defaults to this RowSelectionModel.
  237.      * @return {Boolean} true if all selections were iterated
  238.      */
  239.     each : function(fn, scope){
  240.         var s = this.getSelections();
  241.         for(var i = 0, len = s.length; i < len; i++){
  242.             if(fn.call(scope || this, s[i], i) === false){
  243.                 return false;
  244.             }
  245.         }
  246.         return true;
  247.     },
  248.     /**
  249.      * Clears all selections if the selection model
  250.      * {@link Ext.grid.AbstractSelectionModel#isLocked is not locked}.
  251.      * @param {Boolean} fast (optional) <tt>true</tt> to bypass the
  252.      * conditional checks and events described in {@link #deselectRow}.
  253.      */
  254.     clearSelections : function(fast){
  255.         if(this.isLocked()){
  256.             return;
  257.         }
  258.         if(fast !== true){
  259.             var ds = this.grid.store;
  260.             var s = this.selections;
  261.             s.each(function(r){
  262.                 this.deselectRow(ds.indexOfId(r.id));
  263.             }, this);
  264.             s.clear();
  265.         }else{
  266.             this.selections.clear();
  267.         }
  268.         this.last = false;
  269.     },
  270.     /**
  271.      * Selects all rows if the selection model
  272.      * {@link Ext.grid.AbstractSelectionModel#isLocked is not locked}. 
  273.      */
  274.     selectAll : function(){
  275.         if(this.isLocked()){
  276.             return;
  277.         }
  278.         this.selections.clear();
  279.         for(var i = 0, len = this.grid.store.getCount(); i < len; i++){
  280.             this.selectRow(i, true);
  281.         }
  282.     },
  283.     /**
  284.      * Returns <tt>true</tt> if there is a selection.
  285.      * @return {Boolean}
  286.      */
  287.     hasSelection : function(){
  288.         return this.selections.length > 0;
  289.     },
  290.     /**
  291.      * Returns <tt>true</tt> if the specified row is selected.
  292.      * @param {Number/Record} index The record or index of the record to check
  293.      * @return {Boolean}
  294.      */
  295.     isSelected : function(index){
  296.         var r = Ext.isNumber(index) ? this.grid.store.getAt(index) : index;
  297.         return (r && this.selections.key(r.id) ? true : false);
  298.     },
  299.     /**
  300.      * Returns <tt>true</tt> if the specified record id is selected.
  301.      * @param {String} id The id of record to check
  302.      * @return {Boolean}
  303.      */
  304.     isIdSelected : function(id){
  305.         return (this.selections.key(id) ? true : false);
  306.     },
  307.     // private
  308.     handleMouseDown : function(g, rowIndex, e){
  309.         if(e.button !== 0 || this.isLocked()){
  310.             return;
  311.         }
  312.         var view = this.grid.getView();
  313.         if(e.shiftKey && !this.singleSelect && this.last !== false){
  314.             var last = this.last;
  315.             this.selectRange(last, rowIndex, e.ctrlKey);
  316.             this.last = last; // reset the last
  317.             view.focusRow(rowIndex);
  318.         }else{
  319.             var isSelected = this.isSelected(rowIndex);
  320.             if(e.ctrlKey && isSelected){
  321.                 this.deselectRow(rowIndex);
  322.             }else if(!isSelected || this.getCount() > 1){
  323.                 this.selectRow(rowIndex, e.ctrlKey || e.shiftKey);
  324.                 view.focusRow(rowIndex);
  325.             }
  326.         }
  327.     },
  328.     /**
  329.      * Selects multiple rows.
  330.      * @param {Array} rows Array of the indexes of the row to select
  331.      * @param {Boolean} keepExisting (optional) <tt>true</tt> to keep
  332.      * existing selections (defaults to <tt>false</tt>)
  333.      */
  334.     selectRows : function(rows, keepExisting){
  335.         if(!keepExisting){
  336.             this.clearSelections();
  337.         }
  338.         for(var i = 0, len = rows.length; i < len; i++){
  339.             this.selectRow(rows[i], true);
  340.         }
  341.     },
  342.     /**
  343.      * Selects a range of rows if the selection model
  344.      * {@link Ext.grid.AbstractSelectionModel#isLocked is not locked}.
  345.      * All rows in between startRow and endRow are also selected.
  346.      * @param {Number} startRow The index of the first row in the range
  347.      * @param {Number} endRow The index of the last row in the range
  348.      * @param {Boolean} keepExisting (optional) True to retain existing selections
  349.      */
  350.     selectRange : function(startRow, endRow, keepExisting){
  351.         var i;
  352.         if(this.isLocked()){
  353.             return;
  354.         }
  355.         if(!keepExisting){
  356.             this.clearSelections();
  357.         }
  358.         if(startRow <= endRow){
  359.             for(i = startRow; i <= endRow; i++){
  360.                 this.selectRow(i, true);
  361.             }
  362.         }else{
  363.             for(i = startRow; i >= endRow; i--){
  364.                 this.selectRow(i, true);
  365.             }
  366.         }
  367.     },
  368.     /**
  369.      * Deselects a range of rows if the selection model
  370.      * {@link Ext.grid.AbstractSelectionModel#isLocked is not locked}.  
  371.      * All rows in between startRow and endRow are also deselected.
  372.      * @param {Number} startRow The index of the first row in the range
  373.      * @param {Number} endRow The index of the last row in the range
  374.      */
  375.     deselectRange : function(startRow, endRow, preventViewNotify){
  376.         if(this.isLocked()){
  377.             return;
  378.         }
  379.         for(var i = startRow; i <= endRow; i++){
  380.             this.deselectRow(i, preventViewNotify);
  381.         }
  382.     },
  383.     /**
  384.      * Selects a row.  Before selecting a row, checks if the selection model
  385.      * {@link Ext.grid.AbstractSelectionModel#isLocked is locked} and fires the
  386.      * {@link #beforerowselect} event.  If these checks are satisfied the row
  387.      * will be selected and followed up by  firing the {@link #rowselect} and
  388.      * {@link #selectionchange} events.
  389.      * @param {Number} row The index of the row to select
  390.      * @param {Boolean} keepExisting (optional) <tt>true</tt> to keep existing selections
  391.      * @param {Boolean} preventViewNotify (optional) Specify <tt>true</tt> to
  392.      * prevent notifying the view (disables updating the selected appearance)
  393.      */
  394.     selectRow : function(index, keepExisting, preventViewNotify){
  395.         if(this.isLocked() || (index < 0 || index >= this.grid.store.getCount()) || (keepExisting && this.isSelected(index))){
  396.             return;
  397.         }
  398.         var r = this.grid.store.getAt(index);
  399.         if(r && this.fireEvent('beforerowselect', this, index, keepExisting, r) !== false){
  400.             if(!keepExisting || this.singleSelect){
  401.                 this.clearSelections();
  402.             }
  403.             this.selections.add(r);
  404.             this.last = this.lastActive = index;
  405.             if(!preventViewNotify){
  406.                 this.grid.getView().onRowSelect(index);
  407.             }
  408.             this.fireEvent('rowselect', this, index, r);
  409.             this.fireEvent('selectionchange', this);
  410.         }
  411.     },
  412.     /**
  413.      * Deselects a row.  Before deselecting a row, checks if the selection model
  414.      * {@link Ext.grid.AbstractSelectionModel#isLocked is locked}.
  415.      * If this check is satisfied the row will be deselected and followed up by
  416.      * firing the {@link #rowdeselect} and {@link #selectionchange} events.
  417.      * @param {Number} row The index of the row to deselect
  418.      * @param {Boolean} preventViewNotify (optional) Specify <tt>true</tt> to
  419.      * prevent notifying the view (disables updating the selected appearance)
  420.      */
  421.     deselectRow : function(index, preventViewNotify){
  422.         if(this.isLocked()){
  423.             return;
  424.         }
  425.         if(this.last == index){
  426.             this.last = false;
  427.         }
  428.         if(this.lastActive == index){
  429.             this.lastActive = false;
  430.         }
  431.         var r = this.grid.store.getAt(index);
  432.         if(r){
  433.             this.selections.remove(r);
  434.             if(!preventViewNotify){
  435.                 this.grid.getView().onRowDeselect(index);
  436.             }
  437.             this.fireEvent('rowdeselect', this, index, r);
  438.             this.fireEvent('selectionchange', this);
  439.         }
  440.     },
  441.     // private
  442.     restoreLast : function(){
  443.         if(this._last){
  444.             this.last = this._last;
  445.         }
  446.     },
  447.     // private
  448.     acceptsNav : function(row, col, cm){
  449.         return !cm.isHidden(col) && cm.isCellEditable(col, row);
  450.     },
  451.     // private
  452.     onEditorKey : function(field, e){
  453.         var k = e.getKey(), 
  454.             newCell, 
  455.             g = this.grid, 
  456.             last = g.lastEdit,
  457.             ed = g.activeEditor,
  458.             ae, last, r, c;
  459.         var shift = e.shiftKey;
  460.         if(k == e.TAB){
  461.             e.stopEvent();
  462.             ed.completeEdit();
  463.             if(shift){
  464.                 newCell = g.walkCells(ed.row, ed.col-1, -1, this.acceptsNav, this);
  465.             }else{
  466.                 newCell = g.walkCells(ed.row, ed.col+1, 1, this.acceptsNav, this);
  467.             }
  468.         }else if(k == e.ENTER){
  469.             if(this.moveEditorOnEnter !== false){
  470.                 if(shift){
  471.                     newCell = g.walkCells(last.row - 1, last.col, -1, this.acceptsNav, this);
  472.                 }else{
  473.                     newCell = g.walkCells(last.row + 1, last.col, 1, this.acceptsNav, this);
  474.                 }
  475.             }
  476.         }
  477.         if(newCell){
  478.             r = newCell[0];
  479.             c = newCell[1];
  480.             if(last.row != r){
  481.                 this.selectRow(r); // *** highlight newly-selected cell and update selection
  482.             }
  483.             if(g.isEditor && g.editing){ // *** handle tabbing while editorgrid is in edit mode
  484.                 ae = g.activeEditor;
  485.                 if(ae && ae.field.triggerBlur){
  486.                     // *** if activeEditor is a TriggerField, explicitly call its triggerBlur() method
  487.                     ae.field.triggerBlur();
  488.                 }
  489.             }
  490.             g.startEditing(r, c);
  491.         }
  492.     },
  493.     
  494.     destroy : function(){
  495.         if(this.rowNav){
  496.             this.rowNav.disable();
  497.             this.rowNav = null;
  498.         }
  499.         Ext.grid.RowSelectionModel.superclass.destroy.call(this);
  500.     }
  501. });