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