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