DataView.js
上传用户:shuoshiled
上传日期:2018-01-28
资源大小:10124k
文件大小:26k
源码类别:

中间件编程

开发平台:

JavaScript

  1. /*!
  2.  * Ext JS Library 3.0.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 overCls 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 overCls 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.         var sel = this.isSelected(index);
  302.         var original = this.all.elements[index];
  303.         var node = this.bufferRender([record], index)[0];
  304.         this.all.replaceElement(index, node, true);
  305.         if(sel){
  306.             this.selected.replaceElement(original, node);
  307.             this.all.item(index).addClass(this.selectedClass);
  308.         }
  309.         this.updateIndexes(index, index);
  310.     },
  311.     // private
  312.     onAdd : function(ds, records, index){
  313.         if(this.all.getCount() === 0){
  314.             this.refresh();
  315.             return;
  316.         }
  317.         var nodes = this.bufferRender(records, index), n, a = this.all.elements;
  318.         if(index < this.all.getCount()){
  319.             n = this.all.item(index).insertSibling(nodes, 'before', true);
  320.             a.splice.apply(a, [index, 0].concat(nodes));
  321.         }else{
  322.             n = this.all.last().insertSibling(nodes, 'after', true);
  323.             a.push.apply(a, nodes);
  324.         }
  325.         this.updateIndexes(index);
  326.     },
  327.     // private
  328.     onRemove : function(ds, record, index){
  329.         this.deselect(index);
  330.         this.all.removeElement(index, true);
  331.         this.updateIndexes(index);
  332.         if (this.store.getCount() === 0){
  333.             this.refresh();
  334.         }
  335.     },
  336.     /**
  337.      * Refreshes an individual node's data from the store.
  338.      * @param {Number} index The item's data index in the store
  339.      */
  340.     refreshNode : function(index){
  341.         this.onUpdate(this.store, this.store.getAt(index));
  342.     },
  343.     // private
  344.     updateIndexes : function(startIndex, endIndex){
  345.         var ns = this.all.elements;
  346.         startIndex = startIndex || 0;
  347.         endIndex = endIndex || ((endIndex === 0) ? 0 : (ns.length - 1));
  348.         for(var i = startIndex; i <= endIndex; i++){
  349.             ns[i].viewIndex = i;
  350.         }
  351.     },
  352.     
  353.     /**
  354.      * Returns the store associated with this DataView.
  355.      * @return {Ext.data.Store} The store
  356.      */
  357.     getStore : function(){
  358.         return this.store;
  359.     },
  360.     /**
  361.      * Changes the data store bound to this view and refreshes it.
  362.      * @param {Store} store The store to bind to this view
  363.      */
  364.     bindStore : function(store, initial){
  365.         if(!initial && this.store){
  366.             this.store.un("beforeload", this.onBeforeLoad, this);
  367.             this.store.un("datachanged", this.refresh, this);
  368.             this.store.un("add", this.onAdd, this);
  369.             this.store.un("remove", this.onRemove, this);
  370.             this.store.un("update", this.onUpdate, this);
  371.             this.store.un("clear", this.refresh, this);
  372.             if(store !== this.store && this.store.autoDestroy){
  373.                 this.store.destroy();
  374.             }
  375.         }
  376.         if(store){
  377.             store = Ext.StoreMgr.lookup(store);
  378.             store.on({
  379.                 scope: this,
  380.                 beforeload: this.onBeforeLoad,
  381.                 datachanged: this.refresh,
  382.                 add: this.onAdd,
  383.                 remove: this.onRemove,
  384.                 update: this.onUpdate,
  385.                 clear: this.refresh
  386.             });
  387.         }
  388.         this.store = store;
  389.         if(store){
  390.             this.refresh();
  391.         }
  392.     },
  393.     /**
  394.      * Returns the template node the passed child belongs to, or null if it doesn't belong to one.
  395.      * @param {HTMLElement} node
  396.      * @return {HTMLElement} The template node
  397.      */
  398.     findItemFromChild : function(node){
  399.         return Ext.fly(node).findParent(this.itemSelector, this.getTemplateTarget());
  400.     },
  401.     // private
  402.     onClick : function(e){
  403.         var item = e.getTarget(this.itemSelector, this.getTemplateTarget());
  404.         if(item){
  405.             var index = this.indexOf(item);
  406.             if(this.onItemClick(item, index, e) !== false){
  407.                 this.fireEvent("click", this, index, item, e);
  408.             }
  409.         }else{
  410.             if(this.fireEvent("containerclick", this, e) !== false){
  411.                 this.onContainerClick(e);
  412.             }
  413.         }
  414.     },
  415.     onContainerClick : function(e){
  416.         this.clearSelections();
  417.     },
  418.     // private
  419.     onContextMenu : function(e){
  420.         var item = e.getTarget(this.itemSelector, this.getTemplateTarget());
  421.         if(item){
  422.             this.fireEvent("contextmenu", this, this.indexOf(item), item, e);
  423.         }else{
  424.             this.fireEvent("containercontextmenu", this, e);
  425.         }
  426.     },
  427.     // private
  428.     onDblClick : function(e){
  429.         var item = e.getTarget(this.itemSelector, this.getTemplateTarget());
  430.         if(item){
  431.             this.fireEvent("dblclick", this, this.indexOf(item), item, e);
  432.         }
  433.     },
  434.     // private
  435.     onMouseOver : function(e){
  436.         var item = e.getTarget(this.itemSelector, this.getTemplateTarget());
  437.         if(item && item !== this.lastItem){
  438.             this.lastItem = item;
  439.             Ext.fly(item).addClass(this.overClass);
  440.             this.fireEvent("mouseenter", this, this.indexOf(item), item, e);
  441.         }
  442.     },
  443.     // private
  444.     onMouseOut : function(e){
  445.         if(this.lastItem){
  446.             if(!e.within(this.lastItem, true, true)){
  447.                 Ext.fly(this.lastItem).removeClass(this.overClass);
  448.                 this.fireEvent("mouseleave", this, this.indexOf(this.lastItem), this.lastItem, e);
  449.                 delete this.lastItem;
  450.             }
  451.         }
  452.     },
  453.     // private
  454.     onItemClick : function(item, index, e){
  455.         if(this.fireEvent("beforeclick", this, index, item, e) === false){
  456.             return false;
  457.         }
  458.         if(this.multiSelect){
  459.             this.doMultiSelection(item, index, e);
  460.             e.preventDefault();
  461.         }else if(this.singleSelect){
  462.             this.doSingleSelection(item, index, e);
  463.             e.preventDefault();
  464.         }
  465.         return true;
  466.     },
  467.     // private
  468.     doSingleSelection : function(item, index, e){
  469.         if(e.ctrlKey && this.isSelected(index)){
  470.             this.deselect(index);
  471.         }else{
  472.             this.select(index, false);
  473.         }
  474.     },
  475.     // private
  476.     doMultiSelection : function(item, index, e){
  477.         if(e.shiftKey && this.last !== false){
  478.             var last = this.last;
  479.             this.selectRange(last, index, e.ctrlKey);
  480.             this.last = last; // reset the last
  481.         }else{
  482.             if((e.ctrlKey||this.simpleSelect) && this.isSelected(index)){
  483.                 this.deselect(index);
  484.             }else{
  485.                 this.select(index, e.ctrlKey || e.shiftKey || this.simpleSelect);
  486.             }
  487.         }
  488.     },
  489.     /**
  490.      * Gets the number of selected nodes.
  491.      * @return {Number} The node count
  492.      */
  493.     getSelectionCount : function(){
  494.         return this.selected.getCount();
  495.     },
  496.     /**
  497.      * Gets the currently selected nodes.
  498.      * @return {Array} An array of HTMLElements
  499.      */
  500.     getSelectedNodes : function(){
  501.         return this.selected.elements;
  502.     },
  503.     /**
  504.      * Gets the indexes of the selected nodes.
  505.      * @return {Array} An array of numeric indexes
  506.      */
  507.     getSelectedIndexes : function(){
  508.         var indexes = [], s = this.selected.elements;
  509.         for(var i = 0, len = s.length; i < len; i++){
  510.             indexes.push(s[i].viewIndex);
  511.         }
  512.         return indexes;
  513.     },
  514.     /**
  515.      * Gets an array of the selected records
  516.      * @return {Array} An array of {@link Ext.data.Record} objects
  517.      */
  518.     getSelectedRecords : function(){
  519.         var r = [], s = this.selected.elements;
  520.         for(var i = 0, len = s.length; i < len; i++){
  521.             r[r.length] = this.store.getAt(s[i].viewIndex);
  522.         }
  523.         return r;
  524.     },
  525.     /**
  526.      * Gets an array of the records from an array of nodes
  527.      * @param {Array} nodes The nodes to evaluate
  528.      * @return {Array} records The {@link Ext.data.Record} objects
  529.      */
  530.     getRecords : function(nodes){
  531.         var r = [], s = nodes;
  532.         for(var i = 0, len = s.length; i < len; i++){
  533.             r[r.length] = this.store.getAt(s[i].viewIndex);
  534.         }
  535.         return r;
  536.     },
  537.     /**
  538.      * Gets a record from a node
  539.      * @param {HTMLElement} node The node to evaluate
  540.      * @return {Record} record The {@link Ext.data.Record} object
  541.      */
  542.     getRecord : function(node){
  543.         return this.store.getAt(node.viewIndex);
  544.     },
  545.     /**
  546.      * Clears all selections.
  547.      * @param {Boolean} suppressEvent (optional) True to skip firing of the selectionchange event
  548.      */
  549.     clearSelections : function(suppressEvent, skipUpdate){
  550.         if((this.multiSelect || this.singleSelect) && this.selected.getCount() > 0){
  551.             if(!skipUpdate){
  552.                 this.selected.removeClass(this.selectedClass);
  553.             }
  554.             this.selected.clear();
  555.             this.last = false;
  556.             if(!suppressEvent){
  557.                 this.fireEvent("selectionchange", this, this.selected.elements);
  558.             }
  559.         }
  560.     },
  561.     /**
  562.      * Returns true if the passed node is selected, else false.
  563.      * @param {HTMLElement/Number} node The node or node index to check
  564.      * @return {Boolean} True if selected, else false
  565.      */
  566.     isSelected : function(node){
  567.         return this.selected.contains(this.getNode(node));
  568.     },
  569.     /**
  570.      * Deselects a node.
  571.      * @param {HTMLElement/Number} node The node to deselect
  572.      */
  573.     deselect : function(node){
  574.         if(this.isSelected(node)){
  575.             node = this.getNode(node);
  576.             this.selected.removeElement(node);
  577.             if(this.last == node.viewIndex){
  578.                 this.last = false;
  579.             }
  580.             Ext.fly(node).removeClass(this.selectedClass);
  581.             this.fireEvent("selectionchange", this, this.selected.elements);
  582.         }
  583.     },
  584.     /**
  585.      * Selects a set of nodes.
  586.      * @param {Array/HTMLElement/String/Number} nodeInfo An HTMLElement template node, index of a template node,
  587.      * id of a template node or an array of any of those to select
  588.      * @param {Boolean} keepExisting (optional) true to keep existing selections
  589.      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange vent
  590.      */
  591.     select : function(nodeInfo, keepExisting, suppressEvent){
  592.         if(Ext.isArray(nodeInfo)){
  593.             if(!keepExisting){
  594.                 this.clearSelections(true);
  595.             }
  596.             for(var i = 0, len = nodeInfo.length; i < len; i++){
  597.                 this.select(nodeInfo[i], true, true);
  598.             }
  599.             if(!suppressEvent){
  600.                 this.fireEvent("selectionchange", this, this.selected.elements);
  601.             }
  602.         } else{
  603.             var node = this.getNode(nodeInfo);
  604.             if(!keepExisting){
  605.                 this.clearSelections(true);
  606.             }
  607.             if(node && !this.isSelected(node)){
  608.                 if(this.fireEvent("beforeselect", this, node, this.selected.elements) !== false){
  609.                     Ext.fly(node).addClass(this.selectedClass);
  610.                     this.selected.add(node);
  611.                     this.last = node.viewIndex;
  612.                     if(!suppressEvent){
  613.                         this.fireEvent("selectionchange", this, this.selected.elements);
  614.                     }
  615.                 }
  616.             }
  617.         }
  618.     },
  619.     /**
  620.      * Selects a range of nodes. All nodes between start and end are selected.
  621.      * @param {Number} start The index of the first node in the range
  622.      * @param {Number} end The index of the last node in the range
  623.      * @param {Boolean} keepExisting (optional) True to retain existing selections
  624.      */
  625.     selectRange : function(start, end, keepExisting){
  626.         if(!keepExisting){
  627.             this.clearSelections(true);
  628.         }
  629.         this.select(this.getNodes(start, end), true);
  630.     },
  631.     /**
  632.      * Gets a template node.
  633.      * @param {HTMLElement/String/Number} nodeInfo An HTMLElement template node, index of a template node or the id of a template node
  634.      * @return {HTMLElement} The node or null if it wasn't found
  635.      */
  636.     getNode : function(nodeInfo){
  637.         if(Ext.isString(nodeInfo)){
  638.             return document.getElementById(nodeInfo);
  639.         }else if(Ext.isNumber(nodeInfo)){
  640.             return this.all.elements[nodeInfo];
  641.         }
  642.         return nodeInfo;
  643.     },
  644.     /**
  645.      * Gets a range nodes.
  646.      * @param {Number} start (optional) The index of the first node in the range
  647.      * @param {Number} end (optional) The index of the last node in the range
  648.      * @return {Array} An array of nodes
  649.      */
  650.     getNodes : function(start, end){
  651.         var ns = this.all.elements;
  652.         start = start || 0;
  653.         end = !Ext.isDefined(end) ? Math.max(ns.length - 1, 0) : end;
  654.         var nodes = [], i;
  655.         if(start <= end){
  656.             for(i = start; i <= end && ns[i]; i++){
  657.                 nodes.push(ns[i]);
  658.             }
  659.         } else{
  660.             for(i = start; i >= end && ns[i]; i--){
  661.                 nodes.push(ns[i]);
  662.             }
  663.         }
  664.         return nodes;
  665.     },
  666.     /**
  667.      * Finds the index of the passed node.
  668.      * @param {HTMLElement/String/Number} nodeInfo An HTMLElement template node, index of a template node or the id of a template node
  669.      * @return {Number} The index of the node or -1
  670.      */
  671.     indexOf : function(node){
  672.         node = this.getNode(node);
  673.         if(Ext.isNumber(node.viewIndex)){
  674.             return node.viewIndex;
  675.         }
  676.         return this.all.indexOf(node);
  677.     },
  678.     // private
  679.     onBeforeLoad : function(){
  680.         if(this.loadingText){
  681.             this.clearSelections(false, true);
  682.             this.getTemplateTarget().update('<div class="loading-indicator">'+this.loadingText+'</div>');
  683.             this.all.clear();
  684.         }
  685.     },
  686.     onDestroy : function(){
  687.         Ext.DataView.superclass.onDestroy.call(this);
  688.         this.bindStore(null);
  689.     }
  690. });
  691. /**
  692.  * Changes the data store bound to this view and refreshes it. (deprecated in favor of bindStore)
  693.  * @param {Store} store The store to bind to this view
  694.  */
  695. Ext.DataView.prototype.setStore = Ext.DataView.prototype.bindStore;
  696. Ext.reg('dataview', Ext.DataView);