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

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.DataView
  9.  * @extends Ext.BoxComponent
  10.  * A mechanism for displaying data using custom layout templates and formatting. DataView uses an {@link Ext.XTemplate}
  11.  * as its internal templating mechanism, and is bound to an {@link Ext.data.Store}
  12.  * so that as the data in the store changes the view is automatically updated to reflect the changes.  The view also
  13.  * provides built-in behavior for many common events that can occur for its contained items including click, doubleclick,
  14.  * mouseover, mouseout, etc. as well as a built-in selection model. <b>In order to use these features, an {@link #itemSelector}
  15.  * config must be provided for the DataView to determine what nodes it will be working with.</b>
  16.  *
  17.  * <p>The example below binds a DataView to a {@link Ext.data.Store} and renders it into an {@link Ext.Panel}.</p>
  18.  * <pre><code>
  19. var store = new Ext.data.JsonStore({
  20.     url: 'get-images.php',
  21.     root: 'images',
  22.     fields: [
  23.         'name', 'url',
  24.         {name:'size', type: 'float'},
  25.         {name:'lastmod', type:'date', dateFormat:'timestamp'}
  26.     ]
  27. });
  28. store.load();
  29. var tpl = new Ext.XTemplate(
  30.     '&lt;tpl for="."&gt;',
  31.         '&lt;div class="thumb-wrap" id="{name}"&gt;',
  32.         '&lt;div class="thumb"&gt;&lt;img src="{url}" title="{name}"&gt;&lt;/div&gt;',
  33.         '&lt;span class="x-editable"&gt;{shortName}&lt;/span&gt;&lt;/div&gt;',
  34.     '&lt;/tpl&gt;',
  35.     '&lt;div class="x-clear"&gt;&lt;/div&gt;'
  36. );
  37. var panel = new Ext.Panel({
  38.     id:'images-view',
  39.     frame:true,
  40.     width:535,
  41.     autoHeight:true,
  42.     collapsible:true,
  43.     layout:'fit',
  44.     title:'Simple DataView',
  45.     items: new Ext.DataView({
  46.         store: store,
  47.         tpl: tpl,
  48.         autoHeight:true,
  49.         multiSelect: true,
  50.         overClass:'x-view-over',
  51.         itemSelector:'div.thumb-wrap',
  52.         emptyText: 'No images to display'
  53.     })
  54. });
  55. panel.render(document.body);
  56. </code></pre>
  57.  * @constructor
  58.  * Create a new DataView
  59.  * @param {Object} config The config object
  60.  * @xtype dataview
  61.  */
  62. Ext.DataView = Ext.extend(Ext.BoxComponent, {
  63.     /**
  64.      * @cfg {String/Array} tpl
  65.      * The HTML fragment or an array of fragments that will make up the template used by this DataView.  This should
  66.      * be specified in the same format expected by the constructor of {@link Ext.XTemplate}.
  67.      */
  68.     /**
  69.      * @cfg {Ext.data.Store} store
  70.      * The {@link Ext.data.Store} to bind this DataView to.
  71.      */
  72.     /**
  73.      * @cfg {String} itemSelector
  74.      * <b>This is a required setting</b>. A simple CSS selector (e.g. <tt>div.some-class</tt> or 
  75.      * <tt>span:first-child</tt>) that will be used to determine what nodes this DataView will be
  76.      * working with.
  77.      */
  78.     /**
  79.      * @cfg {Boolean} multiSelect
  80.      * True to allow selection of more than one item at a time, false to allow selection of only a single item
  81.      * at a time or no selection at all, depending on the value of {@link #singleSelect} (defaults to false).
  82.      */
  83.     /**
  84.      * @cfg {Boolean} singleSelect
  85.      * True to allow selection of exactly one item at a time, false to allow no selection at all (defaults to false).
  86.      * Note that if {@link #multiSelect} = true, this value will be ignored.
  87.      */
  88.     /**
  89.      * @cfg {Boolean} simpleSelect
  90.      * True to enable multiselection by clicking on multiple items without requiring the user to hold Shift or Ctrl,
  91.      * false to force the user to hold Ctrl or Shift to select more than on item (defaults to false).
  92.      */
  93.     /**
  94.      * @cfg {String} overClass
  95.      * A CSS class to apply to each item in the view on mouseover (defaults to undefined).
  96.      */
  97.     /**
  98.      * @cfg {String} loadingText
  99.      * A string to display during data load operations (defaults to undefined).  If specified, this text will be
  100.      * displayed in a loading div and the view's contents will be cleared while loading, otherwise the view's
  101.      * contents will continue to display normally until the new data is loaded and the contents are replaced.
  102.      */
  103.     /**
  104.      * @cfg {String} selectedClass
  105.      * A CSS class to apply to each selected item in the view (defaults to 'x-view-selected').
  106.      */
  107.     selectedClass : "x-view-selected",
  108.     /**
  109.      * @cfg {String} emptyText
  110.      * The text to display in the view when there is no data to display (defaults to '').
  111.      */
  112.     emptyText : "",
  113.     /**
  114.      * @cfg {Boolean} deferEmptyText True to defer emptyText being applied until the store's first load
  115.      */
  116.     deferEmptyText: true,
  117.     /**
  118.      * @cfg {Boolean} trackOver True to enable mouseenter and mouseleave events
  119.      */
  120.     trackOver: false,
  121.     //private
  122.     last: false,
  123.     // private
  124.     initComponent : function(){
  125.         Ext.DataView.superclass.initComponent.call(this);
  126.         if(Ext.isString(this.tpl) || Ext.isArray(this.tpl)){
  127.             this.tpl = new Ext.XTemplate(this.tpl);
  128.         }
  129.         this.addEvents(
  130.             /**
  131.              * @event beforeclick
  132.              * Fires before a click is processed. Returns false to cancel the default action.
  133.              * @param {Ext.DataView} this
  134.              * @param {Number} index The index of the target node
  135.              * @param {HTMLElement} node The target node
  136.              * @param {Ext.EventObject} e The raw event object
  137.              */
  138.             "beforeclick",
  139.             /**
  140.              * @event click
  141.              * Fires when a template node is clicked.
  142.              * @param {Ext.DataView} this
  143.              * @param {Number} index The index of the target node
  144.              * @param {HTMLElement} node The target node
  145.              * @param {Ext.EventObject} e The raw event object
  146.              */
  147.             "click",
  148.             /**
  149.              * @event mouseenter
  150.              * Fires when the mouse enters a template node. trackOver:true or an overClass must be set to enable this event.
  151.              * @param {Ext.DataView} this
  152.              * @param {Number} index The index of the target node
  153.              * @param {HTMLElement} node The target node
  154.              * @param {Ext.EventObject} e The raw event object
  155.              */
  156.             "mouseenter",
  157.             /**
  158.              * @event mouseleave
  159.              * Fires when the mouse leaves a template node. trackOver:true or an overClass must be set to enable this event.
  160.              * @param {Ext.DataView} this
  161.              * @param {Number} index The index of the target node
  162.              * @param {HTMLElement} node The target node
  163.              * @param {Ext.EventObject} e The raw event object
  164.              */
  165.             "mouseleave",
  166.             /**
  167.              * @event containerclick
  168.              * Fires when a click occurs and it is not on a template node.
  169.              * @param {Ext.DataView} this
  170.              * @param {Ext.EventObject} e The raw event object
  171.              */
  172.             "containerclick",
  173.             /**
  174.              * @event dblclick
  175.              * Fires when a template node is double clicked.
  176.              * @param {Ext.DataView} this
  177.              * @param {Number} index The index of the target node
  178.              * @param {HTMLElement} node The target node
  179.              * @param {Ext.EventObject} e The raw event object
  180.              */
  181.             "dblclick",
  182.             /**
  183.              * @event contextmenu
  184.              * Fires when a template node is right clicked.
  185.              * @param {Ext.DataView} this
  186.              * @param {Number} index The index of the target node
  187.              * @param {HTMLElement} node The target node
  188.              * @param {Ext.EventObject} e The raw event object
  189.              */
  190.             "contextmenu",
  191.             /**
  192.              * @event containercontextmenu
  193.              * Fires when a right click occurs that is not on a template node.
  194.              * @param {Ext.DataView} this
  195.              * @param {Ext.EventObject} e The raw event object
  196.              */
  197.             "containercontextmenu",
  198.             /**
  199.              * @event selectionchange
  200.              * Fires when the selected nodes change.
  201.              * @param {Ext.DataView} this
  202.              * @param {Array} selections Array of the selected nodes
  203.              */
  204.             "selectionchange",
  205.             /**
  206.              * @event beforeselect
  207.              * Fires before a selection is made. If any handlers return false, the selection is cancelled.
  208.              * @param {Ext.DataView} this
  209.              * @param {HTMLElement} node The node to be selected
  210.              * @param {Array} selections Array of currently selected nodes
  211.              */
  212.             "beforeselect"
  213.         );
  214.         this.store = Ext.StoreMgr.lookup(this.store);
  215.         this.all = new Ext.CompositeElementLite();
  216.         this.selected = new Ext.CompositeElementLite();
  217.     },
  218.     // private
  219.     afterRender : function(){
  220.         Ext.DataView.superclass.afterRender.call(this);
  221. this.mon(this.getTemplateTarget(), {
  222.             "click": this.onClick,
  223.             "dblclick": this.onDblClick,
  224.             "contextmenu": this.onContextMenu,
  225.             scope:this
  226.         });
  227.         if(this.overClass || this.trackOver){
  228.             this.mon(this.getTemplateTarget(), {
  229.                 "mouseover": this.onMouseOver,
  230.                 "mouseout": this.onMouseOut,
  231.                 scope:this
  232.             });
  233.         }
  234.         if(this.store){
  235.             this.bindStore(this.store, true);
  236.         }
  237.     },
  238.     /**
  239.      * Refreshes the view by reloading the data from the store and re-rendering the template.
  240.      */
  241.     refresh : function(){
  242.         this.clearSelections(false, true);
  243.         var el = this.getTemplateTarget();
  244.         el.update("");
  245.         var records = this.store.getRange();
  246.         if(records.length < 1){
  247.             if(!this.deferEmptyText || this.hasSkippedEmptyText){
  248.                 el.update(this.emptyText);
  249.             }
  250.             this.all.clear();
  251.         }else{
  252.             this.tpl.overwrite(el, this.collectData(records, 0));
  253.             this.all.fill(Ext.query(this.itemSelector, el.dom));
  254.             this.updateIndexes(0);
  255.         }
  256.         this.hasSkippedEmptyText = true;
  257.     },
  258.     getTemplateTarget: function(){
  259.         return this.el;
  260.     },
  261.     /**
  262.      * Function which can be overridden to provide custom formatting for each Record that is used by this
  263.      * DataView's {@link #tpl template} to render each node.
  264.      * @param {Array/Object} data The raw data object that was used to create the Record.
  265.      * @param {Number} recordIndex the index number of the Record being prepared for rendering.
  266.      * @param {Record} record The Record being prepared for rendering.
  267.      * @return {Array/Object} The formatted data in a format expected by the internal {@link #tpl template}'s overwrite() method.
  268.      * (either an array if your params are numeric (i.e. {0}) or an object (i.e. {foo: 'bar'}))
  269.      */
  270.     prepareData : function(data){
  271.         return data;
  272.     },
  273.     /**
  274.      * <p>Function which can be overridden which returns the data object passed to this
  275.      * DataView's {@link #tpl template} to render the whole DataView.</p>
  276.      * <p>This is usually an Array of data objects, each element of which is processed by an
  277.      * {@link Ext.XTemplate XTemplate} which uses <tt>'&lt;tpl for="."&gt;'</tt> to iterate over its supplied
  278.      * data object as an Array. However, <i>named</i> properties may be placed into the data object to
  279.      * provide non-repeating data such as headings, totals etc.</p>
  280.      * @param {Array} records An Array of {@link Ext.data.Record}s to be rendered into the DataView.
  281.      * @param {Number} startIndex the index number of the Record being prepared for rendering.
  282.      * @return {Array} An Array of data objects to be processed by a repeating XTemplate. May also
  283.      * contain <i>named</i> properties.
  284.      */
  285.     collectData : function(records, startIndex){
  286.         var r = [];
  287.         for(var i = 0, len = records.length; i < len; i++){
  288.             r[r.length] = this.prepareData(records[i].data, startIndex+i, records[i]);
  289.         }
  290.         return r;
  291.     },
  292.     // private
  293.     bufferRender : function(records){
  294.         var div = document.createElement('div');
  295.         this.tpl.overwrite(div, this.collectData(records));
  296.         return Ext.query(this.itemSelector, div);
  297.     },
  298.     // private
  299.     onUpdate : function(ds, record){
  300.         var index = this.store.indexOf(record);
  301.         if(index > -1){
  302.             var sel = this.isSelected(index);
  303.             var original = this.all.elements[index];
  304.             var node = this.bufferRender([record], index)[0];
  305.             this.all.replaceElement(index, node, true);
  306.             if(sel){
  307.                 this.selected.replaceElement(original, node);
  308.                 this.all.item(index).addClass(this.selectedClass);
  309.             }
  310.             this.updateIndexes(index, index);
  311.         }
  312.     },
  313.     // private
  314.     onAdd : function(ds, records, index){
  315.         if(this.all.getCount() === 0){
  316.             this.refresh();
  317.             return;
  318.         }
  319.         var nodes = this.bufferRender(records, index), n, a = this.all.elements;
  320.         if(index < this.all.getCount()){
  321.             n = this.all.item(index).insertSibling(nodes, 'before', true);
  322.             a.splice.apply(a, [index, 0].concat(nodes));
  323.         }else{
  324.             n = this.all.last().insertSibling(nodes, 'after', true);
  325.             a.push.apply(a, nodes);
  326.         }
  327.         this.updateIndexes(index);
  328.     },
  329.     // private
  330.     onRemove : function(ds, record, index){
  331.         this.deselect(index);
  332.         this.all.removeElement(index, true);
  333.         this.updateIndexes(index);
  334.         if (this.store.getCount() === 0){
  335.             this.refresh();
  336.         }
  337.     },
  338.     /**
  339.      * Refreshes an individual node's data from the store.
  340.      * @param {Number} index The item's data index in the store
  341.      */
  342.     refreshNode : function(index){
  343.         this.onUpdate(this.store, this.store.getAt(index));
  344.     },
  345.     // private
  346.     updateIndexes : function(startIndex, endIndex){
  347.         var ns = this.all.elements;
  348.         startIndex = startIndex || 0;
  349.         endIndex = endIndex || ((endIndex === 0) ? 0 : (ns.length - 1));
  350.         for(var i = startIndex; i <= endIndex; i++){
  351.             ns[i].viewIndex = i;
  352.         }
  353.     },
  354.     
  355.     /**
  356.      * Returns the store associated with this DataView.
  357.      * @return {Ext.data.Store} The store
  358.      */
  359.     getStore : function(){
  360.         return this.store;
  361.     },
  362.     /**
  363.      * Changes the data store bound to this view and refreshes it.
  364.      * @param {Store} store The store to bind to this view
  365.      */
  366.     bindStore : function(store, initial){
  367.         if(!initial && this.store){
  368.             if(store !== this.store && this.store.autoDestroy){
  369.                 this.store.destroy();
  370.             }else{
  371.                 this.store.un("beforeload", this.onBeforeLoad, this);
  372.                 this.store.un("datachanged", this.refresh, this);
  373.                 this.store.un("add", this.onAdd, this);
  374.                 this.store.un("remove", this.onRemove, this);
  375.                 this.store.un("update", this.onUpdate, this);
  376.                 this.store.un("clear", this.refresh, this);
  377.             }
  378.             if(!store){
  379.                 this.store = null;
  380.             }
  381.         }
  382.         if(store){
  383.             store = Ext.StoreMgr.lookup(store);
  384.             store.on({
  385.                 scope: this,
  386.                 beforeload: this.onBeforeLoad,
  387.                 datachanged: this.refresh,
  388.                 add: this.onAdd,
  389.                 remove: this.onRemove,
  390.                 update: this.onUpdate,
  391.                 clear: this.refresh
  392.             });
  393.         }
  394.         this.store = store;
  395.         if(store){
  396.             this.refresh();
  397.         }
  398.     },
  399.     /**
  400.      * Returns the template node the passed child belongs to, or null if it doesn't belong to one.
  401.      * @param {HTMLElement} node
  402.      * @return {HTMLElement} The template node
  403.      */
  404.     findItemFromChild : function(node){
  405.         return Ext.fly(node).findParent(this.itemSelector, this.getTemplateTarget());
  406.     },
  407.     // private
  408.     onClick : function(e){
  409.         var item = e.getTarget(this.itemSelector, this.getTemplateTarget());
  410.         if(item){
  411.             var index = this.indexOf(item);
  412.             if(this.onItemClick(item, index, e) !== false){
  413.                 this.fireEvent("click", this, index, item, e);
  414.             }
  415.         }else{
  416.             if(this.fireEvent("containerclick", this, e) !== false){
  417.                 this.onContainerClick(e);
  418.             }
  419.         }
  420.     },
  421.     onContainerClick : function(e){
  422.         this.clearSelections();
  423.     },
  424.     // private
  425.     onContextMenu : function(e){
  426.         var item = e.getTarget(this.itemSelector, this.getTemplateTarget());
  427.         if(item){
  428.             this.fireEvent("contextmenu", this, this.indexOf(item), item, e);
  429.         }else{
  430.             this.fireEvent("containercontextmenu", this, e);
  431.         }
  432.     },
  433.     // private
  434.     onDblClick : function(e){
  435.         var item = e.getTarget(this.itemSelector, this.getTemplateTarget());
  436.         if(item){
  437.             this.fireEvent("dblclick", this, this.indexOf(item), item, e);
  438.         }
  439.     },
  440.     // private
  441.     onMouseOver : function(e){
  442.         var item = e.getTarget(this.itemSelector, this.getTemplateTarget());
  443.         if(item && item !== this.lastItem){
  444.             this.lastItem = item;
  445.             Ext.fly(item).addClass(this.overClass);
  446.             this.fireEvent("mouseenter", this, this.indexOf(item), item, e);
  447.         }
  448.     },
  449.     // private
  450.     onMouseOut : function(e){
  451.         if(this.lastItem){
  452.             if(!e.within(this.lastItem, true, true)){
  453.                 Ext.fly(this.lastItem).removeClass(this.overClass);
  454.                 this.fireEvent("mouseleave", this, this.indexOf(this.lastItem), this.lastItem, e);
  455.                 delete this.lastItem;
  456.             }
  457.         }
  458.     },
  459.     // private
  460.     onItemClick : function(item, index, e){
  461.         if(this.fireEvent("beforeclick", this, index, item, e) === false){
  462.             return false;
  463.         }
  464.         if(this.multiSelect){
  465.             this.doMultiSelection(item, index, e);
  466.             e.preventDefault();
  467.         }else if(this.singleSelect){
  468.             this.doSingleSelection(item, index, e);
  469.             e.preventDefault();
  470.         }
  471.         return true;
  472.     },
  473.     // private
  474.     doSingleSelection : function(item, index, e){
  475.         if(e.ctrlKey && this.isSelected(index)){
  476.             this.deselect(index);
  477.         }else{
  478.             this.select(index, false);
  479.         }
  480.     },
  481.     // private
  482.     doMultiSelection : function(item, index, e){
  483.         if(e.shiftKey && this.last !== false){
  484.             var last = this.last;
  485.             this.selectRange(last, index, e.ctrlKey);
  486.             this.last = last; // reset the last
  487.         }else{
  488.             if((e.ctrlKey||this.simpleSelect) && this.isSelected(index)){
  489.                 this.deselect(index);
  490.             }else{
  491.                 this.select(index, e.ctrlKey || e.shiftKey || this.simpleSelect);
  492.             }
  493.         }
  494.     },
  495.     /**
  496.      * Gets the number of selected nodes.
  497.      * @return {Number} The node count
  498.      */
  499.     getSelectionCount : function(){
  500.         return this.selected.getCount();
  501.     },
  502.     /**
  503.      * Gets the currently selected nodes.
  504.      * @return {Array} An array of HTMLElements
  505.      */
  506.     getSelectedNodes : function(){
  507.         return this.selected.elements;
  508.     },
  509.     /**
  510.      * Gets the indexes of the selected nodes.
  511.      * @return {Array} An array of numeric indexes
  512.      */
  513.     getSelectedIndexes : function(){
  514.         var indexes = [], s = this.selected.elements;
  515.         for(var i = 0, len = s.length; i < len; i++){
  516.             indexes.push(s[i].viewIndex);
  517.         }
  518.         return indexes;
  519.     },
  520.     /**
  521.      * Gets an array of the selected records
  522.      * @return {Array} An array of {@link Ext.data.Record} objects
  523.      */
  524.     getSelectedRecords : function(){
  525.         var r = [], s = this.selected.elements;
  526.         for(var i = 0, len = s.length; i < len; i++){
  527.             r[r.length] = this.store.getAt(s[i].viewIndex);
  528.         }
  529.         return r;
  530.     },
  531.     /**
  532.      * Gets an array of the records from an array of nodes
  533.      * @param {Array} nodes The nodes to evaluate
  534.      * @return {Array} records The {@link Ext.data.Record} objects
  535.      */
  536.     getRecords : function(nodes){
  537.         var r = [], s = nodes;
  538.         for(var i = 0, len = s.length; i < len; i++){
  539.             r[r.length] = this.store.getAt(s[i].viewIndex);
  540.         }
  541.         return r;
  542.     },
  543.     /**
  544.      * Gets a record from a node
  545.      * @param {HTMLElement} node The node to evaluate
  546.      * @return {Record} record The {@link Ext.data.Record} object
  547.      */
  548.     getRecord : function(node){
  549.         return this.store.getAt(node.viewIndex);
  550.     },
  551.     /**
  552.      * Clears all selections.
  553.      * @param {Boolean} suppressEvent (optional) True to skip firing of the selectionchange event
  554.      */
  555.     clearSelections : function(suppressEvent, skipUpdate){
  556.         if((this.multiSelect || this.singleSelect) && this.selected.getCount() > 0){
  557.             if(!skipUpdate){
  558.                 this.selected.removeClass(this.selectedClass);
  559.             }
  560.             this.selected.clear();
  561.             this.last = false;
  562.             if(!suppressEvent){
  563.                 this.fireEvent("selectionchange", this, this.selected.elements);
  564.             }
  565.         }
  566.     },
  567.     /**
  568.      * Returns true if the passed node is selected, else false.
  569.      * @param {HTMLElement/Number} node The node or node index to check
  570.      * @return {Boolean} True if selected, else false
  571.      */
  572.     isSelected : function(node){
  573.         return this.selected.contains(this.getNode(node));
  574.     },
  575.     /**
  576.      * Deselects a node.
  577.      * @param {HTMLElement/Number} node The node to deselect
  578.      */
  579.     deselect : function(node){
  580.         if(this.isSelected(node)){
  581.             node = this.getNode(node);
  582.             this.selected.removeElement(node);
  583.             if(this.last == node.viewIndex){
  584.                 this.last = false;
  585.             }
  586.             Ext.fly(node).removeClass(this.selectedClass);
  587.             this.fireEvent("selectionchange", this, this.selected.elements);
  588.         }
  589.     },
  590.     /**
  591.      * Selects a set of nodes.
  592.      * @param {Array/HTMLElement/String/Number} nodeInfo An HTMLElement template node, index of a template node,
  593.      * id of a template node or an array of any of those to select
  594.      * @param {Boolean} keepExisting (optional) true to keep existing selections
  595.      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange vent
  596.      */
  597.     select : function(nodeInfo, keepExisting, suppressEvent){
  598.         if(Ext.isArray(nodeInfo)){
  599.             if(!keepExisting){
  600.                 this.clearSelections(true);
  601.             }
  602.             for(var i = 0, len = nodeInfo.length; i < len; i++){
  603.                 this.select(nodeInfo[i], true, true);
  604.             }
  605.             if(!suppressEvent){
  606.                 this.fireEvent("selectionchange", this, this.selected.elements);
  607.             }
  608.         } else{
  609.             var node = this.getNode(nodeInfo);
  610.             if(!keepExisting){
  611.                 this.clearSelections(true);
  612.             }
  613.             if(node && !this.isSelected(node)){
  614.                 if(this.fireEvent("beforeselect", this, node, this.selected.elements) !== false){
  615.                     Ext.fly(node).addClass(this.selectedClass);
  616.                     this.selected.add(node);
  617.                     this.last = node.viewIndex;
  618.                     if(!suppressEvent){
  619.                         this.fireEvent("selectionchange", this, this.selected.elements);
  620.                     }
  621.                 }
  622.             }
  623.         }
  624.     },
  625.     /**
  626.      * Selects a range of nodes. All nodes between start and end are selected.
  627.      * @param {Number} start The index of the first node in the range
  628.      * @param {Number} end The index of the last node in the range
  629.      * @param {Boolean} keepExisting (optional) True to retain existing selections
  630.      */
  631.     selectRange : function(start, end, keepExisting){
  632.         if(!keepExisting){
  633.             this.clearSelections(true);
  634.         }
  635.         this.select(this.getNodes(start, end), true);
  636.     },
  637.     /**
  638.      * Gets a template node.
  639.      * @param {HTMLElement/String/Number} nodeInfo An HTMLElement template node, index of a template node or the id of a template node
  640.      * @return {HTMLElement} The node or null if it wasn't found
  641.      */
  642.     getNode : function(nodeInfo){
  643.         if(Ext.isString(nodeInfo)){
  644.             return document.getElementById(nodeInfo);
  645.         }else if(Ext.isNumber(nodeInfo)){
  646.             return this.all.elements[nodeInfo];
  647.         }
  648.         return nodeInfo;
  649.     },
  650.     /**
  651.      * Gets a range nodes.
  652.      * @param {Number} start (optional) The index of the first node in the range
  653.      * @param {Number} end (optional) The index of the last node in the range
  654.      * @return {Array} An array of nodes
  655.      */
  656.     getNodes : function(start, end){
  657.         var ns = this.all.elements;
  658.         start = start || 0;
  659.         end = !Ext.isDefined(end) ? Math.max(ns.length - 1, 0) : end;
  660.         var nodes = [], i;
  661.         if(start <= end){
  662.             for(i = start; i <= end && ns[i]; i++){
  663.                 nodes.push(ns[i]);
  664.             }
  665.         } else{
  666.             for(i = start; i >= end && ns[i]; i--){
  667.                 nodes.push(ns[i]);
  668.             }
  669.         }
  670.         return nodes;
  671.     },
  672.     /**
  673.      * Finds the index of the passed node.
  674.      * @param {HTMLElement/String/Number} nodeInfo An HTMLElement template node, index of a template node or the id of a template node
  675.      * @return {Number} The index of the node or -1
  676.      */
  677.     indexOf : function(node){
  678.         node = this.getNode(node);
  679.         if(Ext.isNumber(node.viewIndex)){
  680.             return node.viewIndex;
  681.         }
  682.         return this.all.indexOf(node);
  683.     },
  684.     // private
  685.     onBeforeLoad : function(){
  686.         if(this.loadingText){
  687.             this.clearSelections(false, true);
  688.             this.getTemplateTarget().update('<div class="loading-indicator">'+this.loadingText+'</div>');
  689.             this.all.clear();
  690.         }
  691.     },
  692.     onDestroy : function(){
  693.         this.all.clear();
  694.         this.selected.clear();
  695.         Ext.DataView.superclass.onDestroy.call(this);
  696.         this.bindStore(null);
  697.     }
  698. });
  699. /**
  700.  * Changes the data store bound to this view and refreshes it. (deprecated in favor of bindStore)
  701.  * @param {Store} store The store to bind to this view
  702.  */
  703. Ext.DataView.prototype.setStore = Ext.DataView.prototype.bindStore;
  704. Ext.reg('dataview', Ext.DataView);