commit extjs-2.2.1
[extjs.git] / docs / output / Ext.DataView.html
1         <div class="body-wrap">
2         <div class="top-tools">
3             <a class="inner-link" href="#Ext.DataView-props"><img src="../resources/images/default/s.gif" class="item-icon icon-prop">Properties</a>
4             <a class="inner-link" href="#Ext.DataView-methods"><img src="../resources/images/default/s.gif" class="item-icon icon-method">Methods</a>
5             <a class="inner-link" href="#Ext.DataView-events"><img src="../resources/images/default/s.gif" class="item-icon icon-event">Events</a>
6                             <a class="inner-link" href="#Ext.DataView-configs"><img src="../resources/images/default/s.gif" class="item-icon icon-config">Config Options</a>
7                         <a class="bookmark" href="../docs/?class=Ext.DataView"><img src="../resources/images/default/s.gif" class="item-icon icon-fav">Direct Link</a>
8         </div>
9                 <div class="inheritance res-block">
10 <pre class="res-block-inner"><a ext:cls="Ext.util.Observable" ext:member="" href="output/Ext.util.Observable.html">Observable</a>
11   <img src="resources/elbow-end.gif"/><a ext:cls="Ext.Component" ext:member="" href="output/Ext.Component.html">Component</a>
12     <img src="resources/elbow-end.gif"/><a ext:cls="Ext.BoxComponent" ext:member="" href="output/Ext.BoxComponent.html">BoxComponent</a>
13       <img src="resources/elbow-end.gif"/>DataView</pre></div>
14                 <h1>Class Ext.DataView</h1>
15         <table cellspacing="0">
16             <tr><td class="label">Package:</td><td class="hd-info">Ext</td></tr>
17             <tr><td class="label">Defined In:</td><td class="hd-info"><a href="../src/DataView.js" target="_blank">DataView.js</a></td></tr>
18             <tr><td class="label">Class:</td><td class="hd-info">DataView</td></tr>
19                                     <tr><td class="label">Extends:</td><td class="hd-info"><a ext:cls="Ext.BoxComponent" ext:member="" href="output/Ext.BoxComponent.html">BoxComponent</a></td></tr>
20                     </table>
21         <div class="description">
22             *
23 A mechanism for displaying data using custom layout templates and formatting. DataView uses an <a ext:cls="Ext.XTemplate" href="output/Ext.XTemplate.html">Ext.XTemplate</a>
24 as its internal templating mechanism, and is bound to an <a ext:cls="Ext.data.Store" href="output/Ext.data.Store.html">Ext.data.Store</a>
25 so that as the data in the store changes the view is automatically updated to reflect the changes.  The view also
26 provides built-in behavior for many common events that can occur for its contained items including click, doubleclick,
27 mouseover, mouseout, etc. as well as a built-in selection model. <b>In order to use these features, an <a ext:cls="Ext.DataView" ext:member="itemSelector" href="output/Ext.DataView.html#itemSelector">itemSelector</a>
28 config must be provided for the DataView to determine what nodes it will be working with.</b>
29 <p>The example below binds a DataView to a <a ext:cls="Ext.data.Store" href="output/Ext.data.Store.html">Ext.data.Store</a> and renders it into an <a ext:cls="Ext.Panel" href="output/Ext.Panel.html">Ext.Panel</a>.</p>
30 <pre><code>var store = <b>new</b> Ext.data.JsonStore({
31     url: <em>'get-images.php'</em>,
32     root: <em>'images'</em>,
33     fields: [
34         <em>'name'</em>, <em>'url'</em>,
35         {name:<em>'size'</em>, type: <em>'float'</em>},
36         {name:<em>'lastmod'</em>, type:<em>'date'</em>, dateFormat:<em>'timestamp'</em>}
37     ]
38 });
39 store.load();
40
41 <b>var</b> tpl = <b>new</b> Ext.XTemplate(
42     <em>'&lt;tpl <b>for</b>="."&gt;'</em>,
43         <em>'&lt;div class="thumb-wrap" id="{name}"&gt;'</em>,
44         <em>'&lt;div class="thumb"&gt;&lt;img src="{url}" title="{name}"&gt;&lt;/div&gt;'</em>,
45         <em>'&lt;span class="x-editable"&gt;{shortName}&lt;/span&gt;&lt;/div&gt;'</em>,
46     <em>'&lt;/tpl&gt;'</em>,
47     <em>'&lt;div class="x-clear"&gt;&lt;/div&gt;'</em>
48 );
49
50 <b>var</b> panel = <b>new</b> Ext.Panel({
51     id:<em>'images-view'</em>,
52     frame:true,
53     width:535,
54     autoHeight:true,
55     collapsible:true,
56     layout:<em>'fit'</em>,
57     title:<em>'Simple DataView'</em>,
58
59     items: <b>new</b> Ext.DataView({
60         store: store,
61         tpl: tpl,
62         autoHeight:true,
63         multiSelect: true,
64         overClass:<em>'x-view-over'</em>,
65         itemSelector:<em>'div.thumb-wrap'</em>,
66         emptyText: <em>'No images to display'</em>
67     })
68 });
69 panel.render(document.body);</code></pre>        </div>
70         
71         <div class="hr"></div>
72                 <a id="Ext.DataView-configs"></a>
73         <h2>Config Options</h2>
74         <table cellspacing="0" class="member-table">
75             <tr>
76                 <th class="sig-header" colspan="2">Config Options</th>
77                 <th class="msource-header">Defined By</th>
78             </tr>
79                 <tr class="config-row inherited">\r
80         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
81         <td class="sig">\r
82         <a id="Ext.DataView-allowDomMove"></a>\r
83             <b>allowDomMove</b> : Boolean            <div class="mdesc">\r
84                             Whether the component can move the Dom node when rendering (defaults to true).                        </div>\r
85         </td>\r
86         <td class="msource"><a ext:cls="Ext.Component" ext:member="#allowDomMove" href="output/Ext.Component.html#allowDomMove">Component</a></td>\r
87     </tr>\r
88         <tr class="config-row inherited alt expandable">\r
89         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
90         <td class="sig">\r
91         <a id="Ext.DataView-applyTo"></a>\r
92             <b>applyTo</b> : Mixed            <div class="mdesc">\r
93                         <div class="short">The id of the node, a DOM node or an existing Element corresponding to a DIV that is already present in the document ...</div>\r
94             <div class="long">\r
95                 The id of the node, a DOM node or an existing Element corresponding to a DIV that is already present in the document that specifies some structural markup for this component. When applyTo is used, constituent parts of the component can also be specified by id or CSS class name within the main element, and the component being created may attempt to create its subcomponents from that markup if applicable. Using this config, a call to render() is not required. If applyTo is specified, any value passed for <a ext:cls="Ext.Component" ext:member="renderTo" href="output/Ext.Component.html#renderTo">renderTo</a> will be ignored and the target element's parent node will automatically be used as the component's container.            </div>\r
96                         </div>\r
97         </td>\r
98         <td class="msource"><a ext:cls="Ext.Component" ext:member="#applyTo" href="output/Ext.Component.html#applyTo">Component</a></td>\r
99     </tr>\r
100         <tr class="config-row inherited expandable">\r
101         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
102         <td class="sig">\r
103         <a id="Ext.DataView-autoEl"></a>\r
104             <b>autoEl</b> : String/Object            <div class="mdesc">\r
105                         <div class="short">A tag name or DomHelper spec to create an element with. This is intended to create shorthand utility components inlin...</div>\r
106             <div class="long">\r
107                 A tag name or DomHelper spec to create an element with. This is intended to create shorthand utility components inline via JSON. It should not be used for higher level components which already create their own elements. Example usage: <pre><code>{xtype:<em>'box'</em>, autoEl: <em>'div'</em>, cls:<em>'my-class'</em>}
108 {xtype:<em>'box'</em>, autoEl: {tag:<em>'blockquote'</em>, html:<em>'autoEl is cool!'</em>}} // <b>with</b> DomHelper</code></pre>            </div>\r
109                         </div>\r
110         </td>\r
111         <td class="msource"><a ext:cls="Ext.Component" ext:member="#autoEl" href="output/Ext.Component.html#autoEl">Component</a></td>\r
112     </tr>\r
113         <tr class="config-row inherited alt expandable">\r
114         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
115         <td class="sig">\r
116         <a id="Ext.DataView-autoHeight"></a>\r
117             <b>autoHeight</b> : Boolean            <div class="mdesc">\r
118                         <div class="short">True to use height:'auto', false to use fixed height (defaults to false). Note: Although many components inherit this...</div>\r
119             <div class="long">\r
120                 True to use height:'auto', false to use fixed height (defaults to false). <b>Note</b>: Although many components inherit this config option, not all will function as expected with a height of 'auto'. Setting autoHeight:true means that the browser will manage height based on the element's contents, and that Ext will not manage it at all.            </div>\r
121                         </div>\r
122         </td>\r
123         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#autoHeight" href="output/Ext.BoxComponent.html#autoHeight">BoxComponent</a></td>\r
124     </tr>\r
125         <tr class="config-row inherited expandable">\r
126         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
127         <td class="sig">\r
128         <a id="Ext.DataView-autoShow"></a>\r
129             <b>autoShow</b> : Boolean            <div class="mdesc">\r
130                         <div class="short">True if the component should check for hidden classes (e.g. 'x-hidden' or 'x-hide-display') and remove them on render...</div>\r
131             <div class="long">\r
132                 True if the component should check for hidden classes (e.g. 'x-hidden' or 'x-hide-display') and remove them on render (defaults to false).            </div>\r
133                         </div>\r
134         </td>\r
135         <td class="msource"><a ext:cls="Ext.Component" ext:member="#autoShow" href="output/Ext.Component.html#autoShow">Component</a></td>\r
136     </tr>\r
137         <tr class="config-row inherited alt expandable">\r
138         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
139         <td class="sig">\r
140         <a id="Ext.DataView-autoWidth"></a>\r
141             <b>autoWidth</b> : Boolean            <div class="mdesc">\r
142                         <div class="short">True to use width:'auto', false to use fixed width (defaults to false). Note: Although many components inherit this c...</div>\r
143             <div class="long">\r
144                 True to use width:'auto', false to use fixed width (defaults to false). <b>Note</b>: Although many components inherit this config option, not all will function as expected with a width of 'auto'. Setting autoWidth:true means that the browser will manage width based on the element's contents, and that Ext will not manage it at all.            </div>\r
145                         </div>\r
146         </td>\r
147         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#autoWidth" href="output/Ext.BoxComponent.html#autoWidth">BoxComponent</a></td>\r
148     </tr>\r
149         <tr class="config-row inherited expandable">\r
150         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
151         <td class="sig">\r
152         <a id="Ext.DataView-clearCls"></a>\r
153             <b>clearCls</b> : String            <div class="mdesc">\r
154                         <div class="short">The CSS class used to provide field clearing (defaults to 'x-form-clear-left'). This config is only used when this Co...</div>\r
155             <div class="long">\r
156                 The CSS class used to provide field clearing (defaults to 'x-form-clear-left'). <p><b>This config is only used when this Component is rendered by a Container which has been configured to use the <a ext:cls="Ext.form.FormLayout" href="output/Ext.form.FormLayout.html">FormLayout</a> layout manager.</b></p>            </div>\r
157                         </div>\r
158         </td>\r
159         <td class="msource"><a ext:cls="Ext.Component" ext:member="#clearCls" href="output/Ext.Component.html#clearCls">Component</a></td>\r
160     </tr>\r
161         <tr class="config-row inherited alt expandable">\r
162         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
163         <td class="sig">\r
164         <a id="Ext.DataView-cls"></a>\r
165             <b>cls</b> : String            <div class="mdesc">\r
166                         <div class="short">An optional extra CSS class that will be added to this component's Element (defaults to ''). This can be useful for a...</div>\r
167             <div class="long">\r
168                 An optional extra CSS class that will be added to this component's Element (defaults to ''). This can be useful for adding customized styles to the component or any of its children using standard CSS rules.            </div>\r
169                         </div>\r
170         </td>\r
171         <td class="msource"><a ext:cls="Ext.Component" ext:member="#cls" href="output/Ext.Component.html#cls">Component</a></td>\r
172     </tr>\r
173         <tr class="config-row inherited expandable">\r
174         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
175         <td class="sig">\r
176         <a id="Ext.DataView-ctCls"></a>\r
177             <b>ctCls</b> : String            <div class="mdesc">\r
178                         <div class="short">An optional extra CSS class that will be added to this component's container (defaults to ''). This can be useful for...</div>\r
179             <div class="long">\r
180                 An optional extra CSS class that will be added to this component's container (defaults to ''). This can be useful for adding customized styles to the container or any of its children using standard CSS rules.            </div>\r
181                         </div>\r
182         </td>\r
183         <td class="msource"><a ext:cls="Ext.Component" ext:member="#ctCls" href="output/Ext.Component.html#ctCls">Component</a></td>\r
184     </tr>\r
185         <tr class="config-row alt">\r
186         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
187         <td class="sig">\r
188         <a id="Ext.DataView-deferEmptyText"></a>\r
189             <b>deferEmptyText</b> : Boolean            <div class="mdesc">\r
190                             True to defer emptyText being applied until the store's first load                        </div>\r
191         </td>\r
192         <td class="msource">DataView</td>\r
193     </tr>\r
194         <tr class="config-row inherited">\r
195         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
196         <td class="sig">\r
197         <a id="Ext.DataView-disabled"></a>\r
198             <b>disabled</b> : Boolean            <div class="mdesc">\r
199                             Render this component disabled (default is false).                        </div>\r
200         </td>\r
201         <td class="msource"><a ext:cls="Ext.Component" ext:member="#disabled" href="output/Ext.Component.html#disabled">Component</a></td>\r
202     </tr>\r
203         <tr class="config-row inherited alt">\r
204         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
205         <td class="sig">\r
206         <a id="Ext.DataView-disabledClass"></a>\r
207             <b>disabledClass</b> : String            <div class="mdesc">\r
208                             CSS class added to the component when it is disabled (defaults to "x-item-disabled").                        </div>\r
209         </td>\r
210         <td class="msource"><a ext:cls="Ext.Component" ext:member="#disabledClass" href="output/Ext.Component.html#disabledClass">Component</a></td>\r
211     </tr>\r
212         <tr class="config-row">\r
213         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
214         <td class="sig">\r
215         <a id="Ext.DataView-emptyText"></a>\r
216             <b>emptyText</b> : String            <div class="mdesc">\r
217                             The text to display in the view when there is no data to display (defaults to '').                        </div>\r
218         </td>\r
219         <td class="msource">DataView</td>\r
220     </tr>\r
221         <tr class="config-row inherited alt expandable">\r
222         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
223         <td class="sig">\r
224         <a id="Ext.DataView-fieldLabel"></a>\r
225             <b>fieldLabel</b> : String            <div class="mdesc">\r
226                         <div class="short">The label text to display next to this Component (defaults to '') This config is only used when this Component is ren...</div>\r
227             <div class="long">\r
228                 The label text to display next to this Component (defaults to '') <p><b>This config is only used when this Component is rendered by a Container which has been configured to use the <a ext:cls="Ext.form.FormLayout" href="output/Ext.form.FormLayout.html">FormLayout</a> layout manager.</b></p> Example use:<pre><code>new Ext.FormPanel({
229     height: 100,
230     renderTo: Ext.getBody(),
231     items: [{
232         xtype: <em>'textfield'</em>,
233         fieldLabel: <em>'Name'</em>
234     }]
235 });</code></pre>            </div>\r
236                         </div>\r
237         </td>\r
238         <td class="msource"><a ext:cls="Ext.Component" ext:member="#fieldLabel" href="output/Ext.Component.html#fieldLabel">Component</a></td>\r
239     </tr>\r
240         <tr class="config-row inherited">\r
241         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
242         <td class="sig">\r
243         <a id="Ext.DataView-height"></a>\r
244             <b>height</b> : Number            <div class="mdesc">\r
245                             The height of this component in pixels (defaults to auto).                        </div>\r
246         </td>\r
247         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#height" href="output/Ext.BoxComponent.html#height">BoxComponent</a></td>\r
248     </tr>\r
249         <tr class="config-row inherited alt">\r
250         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
251         <td class="sig">\r
252         <a id="Ext.DataView-hidden"></a>\r
253             <b>hidden</b> : Boolean            <div class="mdesc">\r
254                             Render this component hidden (default is false).                        </div>\r
255         </td>\r
256         <td class="msource"><a ext:cls="Ext.Component" ext:member="#hidden" href="output/Ext.Component.html#hidden">Component</a></td>\r
257     </tr>\r
258         <tr class="config-row inherited expandable">\r
259         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
260         <td class="sig">\r
261         <a id="Ext.DataView-hideLabel"></a>\r
262             <b>hideLabel</b> : Boolean            <div class="mdesc">\r
263                         <div class="short">True to completely hide the label element (defaults to false). By default, even if you do not specify a fieldLabel th...</div>\r
264             <div class="long">\r
265                 True to completely hide the label element (defaults to false). By default, even if you do not specify a <a ext:cls="fieldLabel" href="output/fieldLabel.html">fieldLabel</a> the space will still be reserved so that the field will line up with other fields that do have labels. Setting this to true will cause the field to not reserve that space. <p><b>This config is only used when this Component is rendered by a Container which has been configured to use the <a ext:cls="Ext.form.FormLayout" href="output/Ext.form.FormLayout.html">FormLayout</a> layout manager.</b></p> Example use:<pre><code>new Ext.FormPanel({
266     height: 100,
267     renderTo: Ext.getBody(),
268     items: [{
269         xtype: <em>'textfield'</em>
270         hideLabel: true
271     }]
272 });</code></pre>            </div>\r
273                         </div>\r
274         </td>\r
275         <td class="msource"><a ext:cls="Ext.Component" ext:member="#hideLabel" href="output/Ext.Component.html#hideLabel">Component</a></td>\r
276     </tr>\r
277         <tr class="config-row inherited alt expandable">\r
278         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
279         <td class="sig">\r
280         <a id="Ext.DataView-hideMode"></a>\r
281             <b>hideMode</b> : String            <div class="mdesc">\r
282                         <div class="short">How this component should be hidden. Supported values are "visibility" (css visibility), "offsets" (negative offset p...</div>\r
283             <div class="long">\r
284                 <p>How this component should be hidden. Supported values are "visibility" (css visibility), "offsets" (negative offset position) and "display" (css display) - defaults to "display".</p> <p>For Containers which may be hidden and shown as part of a <a ext:cls="Ext.layout.CardLayout" href="output/Ext.layout.CardLayout.html">card layout</a> Container such as a <a ext:cls="Ext.TabPanel" href="output/Ext.TabPanel.html">TabPanel</a>, it is recommended that hideMode is configured as "offsets". This ensures that hidden Components still have height and width so that layout managers can perform measurements when calculating layouts.</p>            </div>\r
285                         </div>\r
286         </td>\r
287         <td class="msource"><a ext:cls="Ext.Component" ext:member="#hideMode" href="output/Ext.Component.html#hideMode">Component</a></td>\r
288     </tr>\r
289         <tr class="config-row inherited expandable">\r
290         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
291         <td class="sig">\r
292         <a id="Ext.DataView-hideParent"></a>\r
293             <b>hideParent</b> : Boolean            <div class="mdesc">\r
294                         <div class="short">True to hide and show the component's container when hide/show is called on the component, false to hide and show the...</div>\r
295             <div class="long">\r
296                 True to hide and show the component's container when hide/show is called on the component, false to hide and show the component itself (defaults to false). For example, this can be used as a shortcut for a hide button on a window by setting hide:true on the button when adding it to its parent container.            </div>\r
297                         </div>\r
298         </td>\r
299         <td class="msource"><a ext:cls="Ext.Component" ext:member="#hideParent" href="output/Ext.Component.html#hideParent">Component</a></td>\r
300     </tr>\r
301         <tr class="config-row inherited alt expandable">\r
302         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
303         <td class="sig">\r
304         <a id="Ext.DataView-id"></a>\r
305             <b>id</b> : String            <div class="mdesc">\r
306                         <div class="short">The unique id of this component (defaults to an auto-assigned id). You should assign an id if you need to be able to ...</div>\r
307             <div class="long">\r
308                 The unique id of this component (defaults to an auto-assigned id). You should assign an id if you need to be able to access the component later and you do not have an object reference available (e.g., using <a ext:cls="Ext.ComponentMgr" ext:member="getCmp" href="output/Ext.ComponentMgr.html#getCmp">Ext.ComponentMgr.getCmp</a>). Note that this id will also be used as the element id for the containing HTML element that is rendered to the page for this component. This allows you to write id-based CSS rules to style the specific instance of this component uniquely, and also to select sub-elements using this component's id as the parent.            </div>\r
309                         </div>\r
310         </td>\r
311         <td class="msource"><a ext:cls="Ext.Component" ext:member="#id" href="output/Ext.Component.html#id">Component</a></td>\r
312     </tr>\r
313         <tr class="config-row inherited expandable">\r
314         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
315         <td class="sig">\r
316         <a id="Ext.DataView-itemCls"></a>\r
317             <b>itemCls</b> : String            <div class="mdesc">\r
318                         <div class="short">An additional CSS class to apply to the wrapper's form item element of this field (defaults to the container's itemCl...</div>\r
319             <div class="long">\r
320                 An additional CSS class to apply to the wrapper's form item element of this field (defaults to the container's itemCls value if set, or ''). Since it is applied to the item wrapper, it allows you to write standard CSS rules that can apply to the field, the label (if specified) or any other element within the markup for the field. <p><b>This config is only used when this Component is rendered by a Container which has been configured to use the <a ext:cls="Ext.form.FormLayout" href="output/Ext.form.FormLayout.html">FormLayout</a> layout manager.</b></p> Example use:<pre><code><i>// Apply a style to the field's label:</i>
321 &lt;style>
322     .required .x-form-item-label {font-weight:bold;color:red;}
323 &lt;/style>
324
325 <b>new</b> Ext.FormPanel({
326     height: 100,
327     renderTo: Ext.getBody(),
328     items: [{
329         xtype: <em>'textfield'</em>,
330         fieldLabel: <em>'Name'</em>,
331         itemCls: <em>'required'</em> <i>//<b>this</b> label will be styled</i>
332     },{
333         xtype: <em>'textfield'</em>,
334         fieldLabel: <em>'Favorite Color'</em>
335     }]
336 });</code></pre>            </div>\r
337                         </div>\r
338         </td>\r
339         <td class="msource"><a ext:cls="Ext.Component" ext:member="#itemCls" href="output/Ext.Component.html#itemCls">Component</a></td>\r
340     </tr>\r
341         <tr class="config-row alt expandable">\r
342         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
343         <td class="sig">\r
344         <a id="Ext.DataView-itemSelector"></a>\r
345             <b>itemSelector</b> : String            <div class="mdesc">\r
346                         <div class="short">This is a required setting. A simple CSS selector (e.g. div.some-class or span:first-child) that will be used to dete...</div>\r
347             <div class="long">\r
348                 <b>This is a required setting</b>. A simple CSS selector (e.g. div.some-class or span:first-child) that will be used to determine what nodes this DataView will be working with.            </div>\r
349                         </div>\r
350         </td>\r
351         <td class="msource">DataView</td>\r
352     </tr>\r
353         <tr class="config-row inherited expandable">\r
354         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
355         <td class="sig">\r
356         <a id="Ext.DataView-labelSeparator"></a>\r
357             <b>labelSeparator</b> : String            <div class="mdesc">\r
358                         <div class="short">The standard separator to display after the text of each form label (defaults to the value of Ext.layout.FormLayout.l...</div>\r
359             <div class="long">\r
360                 The standard separator to display after the text of each form label (defaults to the value of <a ext:cls="Ext.layout.FormLayout" ext:member="labelSeparator" href="output/Ext.layout.FormLayout.html#labelSeparator">Ext.layout.FormLayout.labelSeparator</a>, which is a colon ':' by default). To display no separator for this field's label specify empty string ''. <p><b>This config is only used when this Component is rendered by a Container which has been configured to use the <a ext:cls="Ext.form.FormLayout" href="output/Ext.form.FormLayout.html">FormLayout</a> layout manager.</b></p> Example use:<pre><code>new Ext.FormPanel({
361     height: 100,
362     renderTo: Ext.getBody(),
363     items: [{
364         xtype: <em>'textfield'</em>,
365         fieldLabel: <em>'Name'</em>,
366         labelSeparator: <em>'...'</em>
367     }]
368 });</code></pre>            </div>\r
369                         </div>\r
370         </td>\r
371         <td class="msource"><a ext:cls="Ext.Component" ext:member="#labelSeparator" href="output/Ext.Component.html#labelSeparator">Component</a></td>\r
372     </tr>\r
373         <tr class="config-row inherited alt expandable">\r
374         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
375         <td class="sig">\r
376         <a id="Ext.DataView-labelStyle"></a>\r
377             <b>labelStyle</b> : String            <div class="mdesc">\r
378                         <div class="short">A CSS style specification to apply directly to this field's label (defaults to the container's labelStyle value if se...</div>\r
379             <div class="long">\r
380                 A CSS style specification to apply directly to this field's label (defaults to the container's labelStyle value if set, or '').<code></code>. <p><b>This config is only used when this Component is rendered by a Container which has been configured to use the <a ext:cls="Ext.form.FormLayout" href="output/Ext.form.FormLayout.html">FormLayout</a> layout manager.</b></p> Example use:<pre><code>new Ext.FormPanel({
381     height: 100,
382     renderTo: Ext.getBody(),
383     items: [{
384         xtype: <em>'textfield'</em>,
385         fieldLabel: <em>'Name'</em>,
386         labelStyle: <em>'font-weight:bold;'</em>
387     }]
388 });</code></pre>            </div>\r
389                         </div>\r
390         </td>\r
391         <td class="msource"><a ext:cls="Ext.Component" ext:member="#labelStyle" href="output/Ext.Component.html#labelStyle">Component</a></td>\r
392     </tr>\r
393         <tr class="config-row inherited expandable">\r
394         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
395         <td class="sig">\r
396         <a id="Ext.DataView-listeners"></a>\r
397             <b>listeners</b> : Object            <div class="mdesc">\r
398                         <div class="short">(optional) A config object containing one or more event handlers to be added to this object during initialization. Th...</div>\r
399             <div class="long">\r
400                 (optional) A config object containing one or more event handlers to be added to this object during initialization. This should be a valid listeners config object as specified in the <a ext:cls="Ext.util.Observable" ext:member="addListener" href="output/Ext.util.Observable.html#addListener">addListener</a> example for attaching multiple handlers at once.            </div>\r
401                         </div>\r
402         </td>\r
403         <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#listeners" href="output/Ext.util.Observable.html#listeners">Observable</a></td>\r
404     </tr>\r
405         <tr class="config-row alt expandable">\r
406         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
407         <td class="sig">\r
408         <a id="Ext.DataView-loadingText"></a>\r
409             <b>loadingText</b> : String            <div class="mdesc">\r
410                         <div class="short">A string to display during data load operations (defaults to undefined). If specified, this text will be displayed in...</div>\r
411             <div class="long">\r
412                 A string to display during data load operations (defaults to undefined). If specified, this text will be displayed in a loading div and the view's contents will be cleared while loading, otherwise the view's contents will continue to display normally until the new data is loaded and the contents are replaced.            </div>\r
413                         </div>\r
414         </td>\r
415         <td class="msource">DataView</td>\r
416     </tr>\r
417         <tr class="config-row expandable">\r
418         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
419         <td class="sig">\r
420         <a id="Ext.DataView-multiSelect"></a>\r
421             <b>multiSelect</b> : Boolean            <div class="mdesc">\r
422                         <div class="short">True to allow selection of more than one item at a time, false to allow selection of only a single item at a time or ...</div>\r
423             <div class="long">\r
424                 True to allow selection of more than one item at a time, false to allow selection of only a single item at a time or no selection at all, depending on the value of <a ext:cls="Ext.DataView" ext:member="singleSelect" href="output/Ext.DataView.html#singleSelect">singleSelect</a> (defaults to false).            </div>\r
425                         </div>\r
426         </td>\r
427         <td class="msource">DataView</td>\r
428     </tr>\r
429         <tr class="config-row alt">\r
430         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
431         <td class="sig">\r
432         <a id="Ext.DataView-overClass"></a>\r
433             <b>overClass</b> : String            <div class="mdesc">\r
434                             A CSS class to apply to each item in the view on mouseover (defaults to undefined).                        </div>\r
435         </td>\r
436         <td class="msource">DataView</td>\r
437     </tr>\r
438         <tr class="config-row inherited expandable">\r
439         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
440         <td class="sig">\r
441         <a id="Ext.DataView-overCls"></a>\r
442             <b>overCls</b> : String            <div class="mdesc">\r
443                         <div class="short">An optional extra CSS class that will be added to this component's Element when the mouse moves over the Element, and...</div>\r
444             <div class="long">\r
445                 An optional extra CSS class that will be added to this component's Element when the mouse moves over the Element, and removed when the mouse moves out. (defaults to ''). This can be useful for adding customized "active" or "hover" styles to the component or any of its children using standard CSS rules.            </div>\r
446                         </div>\r
447         </td>\r
448         <td class="msource"><a ext:cls="Ext.Component" ext:member="#overCls" href="output/Ext.Component.html#overCls">Component</a></td>\r
449     </tr>\r
450         <tr class="config-row inherited alt">\r
451         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
452         <td class="sig">\r
453         <a id="Ext.DataView-pageX"></a>\r
454             <b>pageX</b> : Number            <div class="mdesc">\r
455                             The page level x coordinate for this component if contained within a positioning container.                        </div>\r
456         </td>\r
457         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#pageX" href="output/Ext.BoxComponent.html#pageX">BoxComponent</a></td>\r
458     </tr>\r
459         <tr class="config-row inherited">\r
460         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
461         <td class="sig">\r
462         <a id="Ext.DataView-pageY"></a>\r
463             <b>pageY</b> : Number            <div class="mdesc">\r
464                             The page level y coordinate for this component if contained within a positioning container.                        </div>\r
465         </td>\r
466         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#pageY" href="output/Ext.BoxComponent.html#pageY">BoxComponent</a></td>\r
467     </tr>\r
468         <tr class="config-row inherited alt expandable">\r
469         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
470         <td class="sig">\r
471         <a id="Ext.DataView-plugins"></a>\r
472             <b>plugins</b> : Object/Array            <div class="mdesc">\r
473                         <div class="short">An object or array of objects that will provide custom functionality for this component. The only requirement for a v...</div>\r
474             <div class="long">\r
475                 An object or array of objects that will provide custom functionality for this component. The only requirement for a valid plugin is that it contain an init method that accepts a reference of type Ext.Component. When a component is created, if any plugins are available, the component will call the init method on each plugin, passing a reference to itself. Each plugin can then call methods or respond to events on the component as needed to provide its functionality.            </div>\r
476                         </div>\r
477         </td>\r
478         <td class="msource"><a ext:cls="Ext.Component" ext:member="#plugins" href="output/Ext.Component.html#plugins">Component</a></td>\r
479     </tr>\r
480         <tr class="config-row inherited expandable">\r
481         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
482         <td class="sig">\r
483         <a id="Ext.DataView-renderTo"></a>\r
484             <b>renderTo</b> : Mixed            <div class="mdesc">\r
485                         <div class="short">The id of the node, a DOM node or an existing Element that will be the container to render this component into. Using...</div>\r
486             <div class="long">\r
487                 The id of the node, a DOM node or an existing Element that will be the container to render this component into. Using this config, a call to render() is not required.            </div>\r
488                         </div>\r
489         </td>\r
490         <td class="msource"><a ext:cls="Ext.Component" ext:member="#renderTo" href="output/Ext.Component.html#renderTo">Component</a></td>\r
491     </tr>\r
492         <tr class="config-row alt">\r
493         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
494         <td class="sig">\r
495         <a id="Ext.DataView-selectedClass"></a>\r
496             <b>selectedClass</b> : String            <div class="mdesc">\r
497                             A CSS class to apply to each selected item in the view (defaults to 'x-view-selected').                        </div>\r
498         </td>\r
499         <td class="msource">DataView</td>\r
500     </tr>\r
501         <tr class="config-row expandable">\r
502         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
503         <td class="sig">\r
504         <a id="Ext.DataView-simpleSelect"></a>\r
505             <b>simpleSelect</b> : Boolean            <div class="mdesc">\r
506                         <div class="short">True to enable multiselection by clicking on multiple items without requiring the user to hold Shift or Ctrl, false t...</div>\r
507             <div class="long">\r
508                 True to enable multiselection by clicking on multiple items without requiring the user to hold Shift or Ctrl, false to force the user to hold Ctrl or Shift to select more than on item (defaults to false).            </div>\r
509                         </div>\r
510         </td>\r
511         <td class="msource">DataView</td>\r
512     </tr>\r
513         <tr class="config-row alt expandable">\r
514         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
515         <td class="sig">\r
516         <a id="Ext.DataView-singleSelect"></a>\r
517             <b>singleSelect</b> : Boolean            <div class="mdesc">\r
518                         <div class="short">True to allow selection of exactly one item at a time, false to allow no selection at all (defaults to false). Note t...</div>\r
519             <div class="long">\r
520                 True to allow selection of exactly one item at a time, false to allow no selection at all (defaults to false). Note that if <a ext:cls="Ext.DataView" ext:member="multiSelect" href="output/Ext.DataView.html#multiSelect">multiSelect</a> = true, this value will be ignored.            </div>\r
521                         </div>\r
522         </td>\r
523         <td class="msource">DataView</td>\r
524     </tr>\r
525         <tr class="config-row inherited expandable">\r
526         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
527         <td class="sig">\r
528         <a id="Ext.DataView-stateEvents"></a>\r
529             <b>stateEvents</b> : Array            <div class="mdesc">\r
530                         <div class="short">An array of events that, when fired, should trigger this component to save its state (defaults to none). These can be...</div>\r
531             <div class="long">\r
532                 An array of events that, when fired, should trigger this component to save its state (defaults to none). These can be any types of events supported by this component, including browser or custom events (e.g., ['click', 'customerchange']). <p>See <a ext:cls="Ext.Component" ext:member="stateful" href="output/Ext.Component.html#stateful">stateful</a> for an explanation of saving and restoring Component state.</p>            </div>\r
533                         </div>\r
534         </td>\r
535         <td class="msource"><a ext:cls="Ext.Component" ext:member="#stateEvents" href="output/Ext.Component.html#stateEvents">Component</a></td>\r
536     </tr>\r
537         <tr class="config-row inherited alt expandable">\r
538         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
539         <td class="sig">\r
540         <a id="Ext.DataView-stateId"></a>\r
541             <b>stateId</b> : String            <div class="mdesc">\r
542                         <div class="short">The unique id for this component to use for state management purposes (defaults to the component id if one was set, o...</div>\r
543             <div class="long">\r
544                 The unique id for this component to use for state management purposes (defaults to the component id if one was set, otherwise null if the component is using a generated id). <p>See <a ext:cls="Ext.Component" ext:member="stateful" href="output/Ext.Component.html#stateful">stateful</a> for an explanation of saving and restoring Component state.</p>            </div>\r
545                         </div>\r
546         </td>\r
547         <td class="msource"><a ext:cls="Ext.Component" ext:member="#stateId" href="output/Ext.Component.html#stateId">Component</a></td>\r
548     </tr>\r
549         <tr class="config-row inherited expandable">\r
550         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
551         <td class="sig">\r
552         <a id="Ext.DataView-stateful"></a>\r
553             <b>stateful</b> : Boolean            <div class="mdesc">\r
554                         <div class="short">A flag which causes the Component to attempt to restore the state of internal properties from a saved state on startu...</div>\r
555             <div class="long">\r
556                 <p>A flag which causes the Component to attempt to restore the state of internal properties from a saved state on startup. The component must have either a <a ext:cls="Ext.Component" ext:member="stateId" href="output/Ext.Component.html#stateId">stateId</a> or <a ext:cls="Ext.Component" ext:member="id" href="output/Ext.Component.html#id">id</a> assigned for state to be managed. Auto-generated ids are not guaranteed to be stable across page loads and cannot be relied upon to save and restore the same state for a component.<p> For state saving to work, the state manager's provider must have been set to an implementation of <a ext:cls="Ext.state.Provider" href="output/Ext.state.Provider.html">Ext.state.Provider</a> which overrides the <a ext:cls="Ext.state.Provider" ext:member="set" href="output/Ext.state.Provider.html#set">set</a> and <a ext:cls="Ext.state.Provider" ext:member="get" href="output/Ext.state.Provider.html#get">get</a> methods to save and recall name/value pairs. A built-in implementation, <a ext:cls="Ext.state.CookieProvider" href="output/Ext.state.CookieProvider.html">Ext.state.CookieProvider</a> is available.</p> <p>To set the state provider for the current page:</p> <pre><code>Ext.state.Manager.setProvider(<b>new</b> Ext.state.CookieProvider());</code></pre> <p>Components attempt to save state when one of the events listed in the <a ext:cls="Ext.Component" ext:member="stateEvents" href="output/Ext.Component.html#stateEvents">stateEvents</a> configuration fires.</p> <p>You can perform extra processing on state save and restore by attaching handlers to the <a ext:cls="Ext.Component" ext:member="beforestaterestore" href="output/Ext.Component.html#beforestaterestore">beforestaterestore</a>, <a ext:cls="Ext.Component" ext:member="staterestore" href="output/Ext.Component.html#staterestore">staterestore</a>, <a ext:cls="Ext.Component" ext:member="beforestatesave" href="output/Ext.Component.html#beforestatesave">beforestatesave</a> and <a ext:cls="Ext.Component" ext:member="statesave" href="output/Ext.Component.html#statesave">statesave</a> events</p>            </div>\r
557                         </div>\r
558         </td>\r
559         <td class="msource"><a ext:cls="Ext.Component" ext:member="#stateful" href="output/Ext.Component.html#stateful">Component</a></td>\r
560     </tr>\r
561         <tr class="config-row alt">\r
562         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
563         <td class="sig">\r
564         <a id="Ext.DataView-store"></a>\r
565             <b>store</b> : Ext.data.Store            <div class="mdesc">\r
566                             The <a ext:cls="Ext.data.Store" href="output/Ext.data.Store.html">Ext.data.Store</a> to bind this DataView to.                        </div>\r
567         </td>\r
568         <td class="msource">DataView</td>\r
569     </tr>\r
570         <tr class="config-row inherited expandable">\r
571         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
572         <td class="sig">\r
573         <a id="Ext.DataView-style"></a>\r
574             <b>style</b> : String            <div class="mdesc">\r
575                         <div class="short">A custom style specification to be applied to this component's Element. Should be a valid argument to Ext.Element.app...</div>\r
576             <div class="long">\r
577                 A custom style specification to be applied to this component's Element. Should be a valid argument to <a ext:cls="Ext.Element" ext:member="applyStyles" href="output/Ext.Element.html#applyStyles">Ext.Element.applyStyles</a>.            </div>\r
578                         </div>\r
579         </td>\r
580         <td class="msource"><a ext:cls="Ext.Component" ext:member="#style" href="output/Ext.Component.html#style">Component</a></td>\r
581     </tr>\r
582         <tr class="config-row alt expandable">\r
583         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
584         <td class="sig">\r
585         <a id="Ext.DataView-tpl"></a>\r
586             <b>tpl</b> : String/Array            <div class="mdesc">\r
587                         <div class="short">The HTML fragment or an array of fragments that will make up the template used by this DataView. This should be speci...</div>\r
588             <div class="long">\r
589                 The HTML fragment or an array of fragments that will make up the template used by this DataView. This should be specified in the same format expected by the constructor of <a ext:cls="Ext.XTemplate" href="output/Ext.XTemplate.html">Ext.XTemplate</a>.            </div>\r
590                         </div>\r
591         </td>\r
592         <td class="msource">DataView</td>\r
593     </tr>\r
594         <tr class="config-row">\r
595         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
596         <td class="sig">\r
597         <a id="Ext.DataView-trackOver"></a>\r
598             <b>trackOver</b> : Boolean            <div class="mdesc">\r
599                             True to enable mouseenter and mouseleave events                        </div>\r
600         </td>\r
601         <td class="msource">DataView</td>\r
602     </tr>\r
603         <tr class="config-row inherited alt">\r
604         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
605         <td class="sig">\r
606         <a id="Ext.DataView-width"></a>\r
607             <b>width</b> : Number            <div class="mdesc">\r
608                             The width of this component in pixels (defaults to auto).                        </div>\r
609         </td>\r
610         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#width" href="output/Ext.BoxComponent.html#width">BoxComponent</a></td>\r
611     </tr>\r
612         <tr class="config-row inherited">\r
613         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
614         <td class="sig">\r
615         <a id="Ext.DataView-x"></a>\r
616             <b>x</b> : Number            <div class="mdesc">\r
617                             The local x (left) coordinate for this component if contained within a positioning container.                        </div>\r
618         </td>\r
619         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#x" href="output/Ext.BoxComponent.html#x">BoxComponent</a></td>\r
620     </tr>\r
621         <tr class="config-row inherited alt expandable">\r
622         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
623         <td class="sig">\r
624         <a id="Ext.DataView-xtype"></a>\r
625             <b>xtype</b> : String            <div class="mdesc">\r
626                         <div class="short">The registered xtype to create. This config option is not used when passing a config object into a constructor. This ...</div>\r
627             <div class="long">\r
628                 The registered xtype to create. This config option is not used when passing a config object into a constructor. This config option is used only when lazy instantiation is being used, and a child item of a Container is being specified not as a fully instantiated Component, but as a <i>Component config object</i>. The xtype will be looked up at render time up to determine what type of child Component to create.<br><br> The predefined xtypes are listed <a ext:cls="Ext.Component" href="output/Ext.Component.html">here</a>. <br><br> If you subclass Components to create your own Components, you may register them using <a ext:cls="Ext.ComponentMgr" ext:member="registerType" href="output/Ext.ComponentMgr.html#registerType">Ext.ComponentMgr.registerType</a> in order to be able to take advantage of lazy instantiation and rendering.            </div>\r
629                         </div>\r
630         </td>\r
631         <td class="msource"><a ext:cls="Ext.Component" ext:member="#xtype" href="output/Ext.Component.html#xtype">Component</a></td>\r
632     </tr>\r
633         <tr class="config-row inherited">\r
634         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
635         <td class="sig">\r
636         <a id="Ext.DataView-y"></a>\r
637             <b>y</b> : Number            <div class="mdesc">\r
638                             The local y (top) coordinate for this component if contained within a positioning container.                        </div>\r
639         </td>\r
640         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#y" href="output/Ext.BoxComponent.html#y">BoxComponent</a></td>\r
641     </tr>\r
642             </table>
643                 <a id="Ext.DataView-props"></a>
644         <h2>Public Properties</h2>
645                 <table cellspacing="0" class="member-table">
646             <tr>
647                 <th class="sig-header" colspan="2">Property</th>
648                 <th class="msource-header">Defined By</th>
649             </tr>
650                 <tr class="property-row inherited">\r
651         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
652         <td class="sig">\r
653         <a id="Ext.DataView-disabled"></a>\r
654             <b>disabled</b> : Boolean            <div class="mdesc">\r
655                             True if this component is disabled. Read-only.                        </div>\r
656         </td>\r
657         <td class="msource"><a ext:cls="Ext.Component" ext:member="#disabled" href="output/Ext.Component.html#disabled">Component</a></td>\r
658     </tr>\r
659         <tr class="property-row inherited alt">\r
660         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
661         <td class="sig">\r
662         <a id="Ext.DataView-hidden"></a>\r
663             <b>hidden</b> : Boolean            <div class="mdesc">\r
664                             
665 True if this component is hidden. Read-only.                        </div>\r
666         </td>\r
667         <td class="msource"><a ext:cls="Ext.Component" ext:member="#hidden" href="output/Ext.Component.html#hidden">Component</a></td>\r
668     </tr>\r
669         <tr class="property-row inherited">\r
670         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
671         <td class="sig">\r
672         <a id="Ext.DataView-initialConfig"></a>\r
673             <b>initialConfig</b> : Object            <div class="mdesc">\r
674                             This Component's initial configuration specification. Read-only.                        </div>\r
675         </td>\r
676         <td class="msource"><a ext:cls="Ext.Component" ext:member="#initialConfig" href="output/Ext.Component.html#initialConfig">Component</a></td>\r
677     </tr>\r
678         <tr class="property-row inherited alt expandable">\r
679         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
680         <td class="sig">\r
681         <a id="Ext.DataView-ownerCt"></a>\r
682             <b>ownerCt</b> : Ext.Container            <div class="mdesc">\r
683                         <div class="short">The component's owner Ext.Container (defaults to undefined, and is set automatically when
684 the component is added to a...</div>\r
685             <div class="long">\r
686                 The component's owner <a ext:cls="Ext.Container" href="output/Ext.Container.html">Ext.Container</a> (defaults to undefined, and is set automatically when
687 the component is added to a container).  Read-only.            </div>\r
688                         </div>\r
689         </td>\r
690         <td class="msource"><a ext:cls="Ext.Component" ext:member="#ownerCt" href="output/Ext.Component.html#ownerCt">Component</a></td>\r
691     </tr>\r
692         <tr class="property-row inherited">\r
693         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
694         <td class="sig">\r
695         <a id="Ext.DataView-rendered"></a>\r
696             <b>rendered</b> : Boolean            <div class="mdesc">\r
697                             True if this component has been rendered. Read-only.                        </div>\r
698         </td>\r
699         <td class="msource"><a ext:cls="Ext.Component" ext:member="#rendered" href="output/Ext.Component.html#rendered">Component</a></td>\r
700     </tr>\r
701             </table>
702                 <a id="Ext.DataView-methods"></a>
703         <h2>Public Methods</h2>
704                 <table cellspacing="0" class="member-table">
705             <tr>
706                 <th class="sig-header" colspan="2">Method</th>
707                 <th class="msource-header">Defined By</th>
708             </tr>
709                 <tr class="method-row expandable">\r
710         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
711         <td class="sig">\r
712         <a id="Ext.DataView-DataView"></a>\r
713             <b>DataView</b>(&nbsp;<code>Object config</code>&nbsp;)            <div class="mdesc">\r
714                         <div class="short">Create a new DataView</div>\r
715             <div class="long">\r
716                 Create a new DataView    <div class="mdetail-params">\r
717         <strong>Parameters:</strong>\r
718         <ul><li><code>config</code> : Object<div class="sub-desc">The config object</div></li>        </ul>\r
719         <strong>Returns:</strong>\r
720         <ul>\r
721             <li><code></code></li>\r
722         </ul>\r
723     </div>\r
724                 </div>\r
725                         </div>\r
726         </td>\r
727         <td class="msource">DataView</td>\r
728     </tr>\r
729         <tr class="method-row inherited alt expandable">\r
730         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
731         <td class="sig">\r
732         <a id="Ext.DataView-addClass"></a>\r
733             <b>addClass</b>(&nbsp;<code>string cls</code>&nbsp;) : void            <div class="mdesc">\r
734                         <div class="short">Adds a CSS class to the component's underlying element.</div>\r
735             <div class="long">\r
736                 Adds a CSS class to the component's underlying element.    <div class="mdetail-params">\r
737         <strong>Parameters:</strong>\r
738         <ul><li><code>cls</code> : string<div class="sub-desc">The CSS class name to add</div></li>        </ul>\r
739         <strong>Returns:</strong>\r
740         <ul>\r
741             <li><code>void</code></li>\r
742         </ul>\r
743     </div>\r
744                 </div>\r
745                         </div>\r
746         </td>\r
747         <td class="msource"><a ext:cls="Ext.Component" ext:member="#addClass" href="output/Ext.Component.html#addClass">Component</a></td>\r
748     </tr>\r
749         <tr class="method-row inherited expandable">\r
750         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
751         <td class="sig">\r
752         <a id="Ext.DataView-addEvents"></a>\r
753             <b>addEvents</b>(&nbsp;<code>Object object</code>&nbsp;) : void            <div class="mdesc">\r
754                         <div class="short">Used to define events on this Observable</div>\r
755             <div class="long">\r
756                 Used to define events on this Observable    <div class="mdetail-params">\r
757         <strong>Parameters:</strong>\r
758         <ul><li><code>object</code> : Object<div class="sub-desc">The object with the events defined</div></li>        </ul>\r
759         <strong>Returns:</strong>\r
760         <ul>\r
761             <li><code>void</code></li>\r
762         </ul>\r
763     </div>\r
764                 </div>\r
765                         </div>\r
766         </td>\r
767         <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#addEvents" href="output/Ext.util.Observable.html#addEvents">Observable</a></td>\r
768     </tr>\r
769         <tr class="method-row inherited alt expandable">\r
770         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
771         <td class="sig">\r
772         <a id="Ext.DataView-addListener"></a>\r
773             <b>addListener</b>(&nbsp;<code>String eventName</code>, <code>Function handler</code>, <span class="optional" title="Optional">[<code>Object scope</code>]</span>, <span class="optional" title="Optional">[<code>Object options</code>]</span>&nbsp;) : void            <div class="mdesc">\r
774                         <div class="short">Appends an event handler to this component</div>\r
775             <div class="long">\r
776                 Appends an event handler to this component    <div class="mdetail-params">\r
777         <strong>Parameters:</strong>\r
778         <ul><li><code>eventName</code> : String<div class="sub-desc">The type of event to listen for</div></li><li><code>handler</code> : Function<div class="sub-desc">The method the event invokes</div></li><li><code>scope</code> : Object<div class="sub-desc">(optional) The scope in which to execute the handler
779 function. The handler function's "this" context.</div></li><li><code>options</code> : Object<div class="sub-desc">(optional) An object containing handler configuration
780 properties. This may contain any of the following properties:<ul>
781 <li><b>scope</b> : Object<p class="sub-desc">The scope in which to execute the handler function. The handler function's "this" context.</p></li>
782 <li><b>delay</b> : Number<p class="sub-desc">The number of milliseconds to delay the invocation of the handler after the event fires.</p></li>
783 <li><b>single</b> : Boolean<p class="sub-desc">True to add a handler to handle just the next firing of the event, and then remove itself.</p></li>
784 <li><b>buffer</b> : Number<p class="sub-desc">Causes the handler to be scheduled to run in an <a ext:cls="Ext.util.DelayedTask" href="output/Ext.util.DelayedTask.html">Ext.util.DelayedTask</a> delayed
785 by the specified number of milliseconds. If the event fires again within that time, the original
786 handler is <em>not</em> invoked, but the new handler is scheduled in its place.</p></li>
787 </ul><br>
788 <p>
789 <b>Combining Options</b><br>
790 Using the options argument, it is possible to combine different types of listeners:<br>
791 <br>
792 A normalized, delayed, one-time listener that auto stops the event and passes a custom argument (forumId)
793 <pre><code>el.on(<em>'click'</em>, <b>this</b>.onClick, <b>this</b>, {
794     single: true,
795     delay: 100,
796     forumId: 4
797 });</code></pre>
798 <p>
799 <b>Attaching multiple handlers in 1 call</b><br>
800 The method also allows for a single argument to be passed which is a config object containing properties
801 which specify multiple handlers.
802 <p>
803 <pre><code>foo.on({
804     <em>'click'</em> : {
805         fn: <b>this</b>.onClick,
806         scope: <b>this</b>,
807         delay: 100
808     },
809     <em>'mouseover'</em> : {
810         fn: <b>this</b>.onMouseOver,
811         scope: <b>this</b>
812     },
813     <em>'mouseout'</em> : {
814         fn: <b>this</b>.onMouseOut,
815         scope: <b>this</b>
816     }
817 });</code></pre>
818 <p>
819 Or a shorthand syntax:<br>
820 <pre><code>foo.on({
821     <em>'click'</em> : <b>this</b>.onClick,
822     <em>'mouseover'</em> : <b>this</b>.onMouseOver,
823     <em>'mouseout'</em> : <b>this</b>.onMouseOut,
824      scope: <b>this</b>
825 });</code></pre></div></li>        </ul>\r
826         <strong>Returns:</strong>\r
827         <ul>\r
828             <li><code>void</code></li>\r
829         </ul>\r
830     </div>\r
831                 </div>\r
832                         </div>\r
833         </td>\r
834         <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#addListener" href="output/Ext.util.Observable.html#addListener">Observable</a></td>\r
835     </tr>\r
836         <tr class="method-row inherited expandable">\r
837         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
838         <td class="sig">\r
839         <a id="Ext.DataView-applyToMarkup"></a>\r
840             <b>applyToMarkup</b>(&nbsp;<code>String/HTMLElement el</code>&nbsp;) : void            <div class="mdesc">\r
841                         <div class="short">Apply this component to existing markup that is valid. With this function, no call to render() is required.</div>\r
842             <div class="long">\r
843                 Apply this component to existing markup that is valid. With this function, no call to render() is required.    <div class="mdetail-params">\r
844         <strong>Parameters:</strong>\r
845         <ul><li><code>el</code> : String/HTMLElement<div class="sub-desc"></div></li>        </ul>\r
846         <strong>Returns:</strong>\r
847         <ul>\r
848             <li><code>void</code></li>\r
849         </ul>\r
850     </div>\r
851                 </div>\r
852                         </div>\r
853         </td>\r
854         <td class="msource"><a ext:cls="Ext.Component" ext:member="#applyToMarkup" href="output/Ext.Component.html#applyToMarkup">Component</a></td>\r
855     </tr>\r
856         <tr class="method-row alt expandable">\r
857         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
858         <td class="sig">\r
859         <a id="Ext.DataView-clearSelections"></a>\r
860             <b>clearSelections</b>(&nbsp;<span class="optional" title="Optional">[<code>Boolean suppressEvent</code>]</span>&nbsp;) : void            <div class="mdesc">\r
861                         <div class="short">Clears all selections.</div>\r
862             <div class="long">\r
863                 Clears all selections.    <div class="mdetail-params">\r
864         <strong>Parameters:</strong>\r
865         <ul><li><code>suppressEvent</code> : Boolean<div class="sub-desc">(optional) True to skip firing of the selectionchange event</div></li>        </ul>\r
866         <strong>Returns:</strong>\r
867         <ul>\r
868             <li><code>void</code></li>\r
869         </ul>\r
870     </div>\r
871                 </div>\r
872                         </div>\r
873         </td>\r
874         <td class="msource">DataView</td>\r
875     </tr>\r
876         <tr class="method-row inherited expandable">\r
877         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
878         <td class="sig">\r
879         <a id="Ext.DataView-cloneConfig"></a>\r
880             <b>cloneConfig</b>(&nbsp;<code>Object overrides</code>&nbsp;) : Ext.Component            <div class="mdesc">\r
881                         <div class="short">Clone the current component using the original config values passed into this instance by default.</div>\r
882             <div class="long">\r
883                 Clone the current component using the original config values passed into this instance by default.    <div class="mdetail-params">\r
884         <strong>Parameters:</strong>\r
885         <ul><li><code>overrides</code> : Object<div class="sub-desc">A new config containing any properties to override in the cloned version.
886 An id property can be passed on this object, otherwise one will be generated to avoid duplicates.</div></li>        </ul>\r
887         <strong>Returns:</strong>\r
888         <ul>\r
889             <li><code>Ext.Component</code><div class="sub-desc">clone The cloned copy of this component</div></li>\r
890         </ul>\r
891     </div>\r
892                 </div>\r
893                         </div>\r
894         </td>\r
895         <td class="msource"><a ext:cls="Ext.Component" ext:member="#cloneConfig" href="output/Ext.Component.html#cloneConfig">Component</a></td>\r
896     </tr>\r
897         <tr class="method-row alt expandable">\r
898         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
899         <td class="sig">\r
900         <a id="Ext.DataView-collectData"></a>\r
901             <b>collectData</b>(&nbsp;<code>records {Array}</code>&nbsp;) : Array            <div class="mdesc">\r
902                         <div class="short">Function which can be overridden which returns the data object passed to this
903 DataView's template to render the whole...</div>\r
904             <div class="long">\r
905                 <p>Function which can be overridden which returns the data object passed to this
906 DataView's <a ext:cls="Ext.DataView" ext:member="tpl" href="output/Ext.DataView.html#tpl">template</a> to render the whole DataView.</p>
907 <p>This is usually an Array of data objects, each element of which is processed by an
908 <a ext:cls="Ext.XTemplate" href="output/Ext.XTemplate.html">XTemplate</a> which uses <tt>'&lt;tpl for="."&gt;'</tt> to iterate over its supplied
909 data object as an Array. However, <i>named</i> properties may be placed into the data object to
910 provide non-repeating data such as headings, totals etc.</p>    <div class="mdetail-params">\r
911         <strong>Parameters:</strong>\r
912         <ul><li><code>{Array}</code> : records<div class="sub-desc">An Array of <a ext:cls="Ext.data.Record" href="output/Ext.data.Record.html">Ext.data.Record</a>s to be rendered into the DataView.</div></li>        </ul>\r
913         <strong>Returns:</strong>\r
914         <ul>\r
915             <li><code>Array</code><div class="sub-desc">An Array of data objects to be processed by a repeating XTemplate. May also contain <i>named</i> properties.</div></li>\r
916         </ul>\r
917     </div>\r
918                 </div>\r
919                         </div>\r
920         </td>\r
921         <td class="msource">DataView</td>\r
922     </tr>\r
923         <tr class="method-row expandable">\r
924         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
925         <td class="sig">\r
926         <a id="Ext.DataView-deselect"></a>\r
927             <b>deselect</b>(&nbsp;<code>HTMLElement/Number node</code>&nbsp;) : void            <div class="mdesc">\r
928                         <div class="short">Deselects a node.</div>\r
929             <div class="long">\r
930                 Deselects a node.    <div class="mdetail-params">\r
931         <strong>Parameters:</strong>\r
932         <ul><li><code>node</code> : HTMLElement/Number<div class="sub-desc">The node to deselect</div></li>        </ul>\r
933         <strong>Returns:</strong>\r
934         <ul>\r
935             <li><code>void</code></li>\r
936         </ul>\r
937     </div>\r
938                 </div>\r
939                         </div>\r
940         </td>\r
941         <td class="msource">DataView</td>\r
942     </tr>\r
943         <tr class="method-row inherited alt expandable">\r
944         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
945         <td class="sig">\r
946         <a id="Ext.DataView-destroy"></a>\r
947             <b>destroy</b>() : void            <div class="mdesc">\r
948                         <div class="short">Destroys this component by purging any event listeners, removing the component's element from the DOM,
949 removing the c...</div>\r
950             <div class="long">\r
951                 Destroys this component by purging any event listeners, removing the component's element from the DOM,
952 removing the component from its <a ext:cls="Ext.Container" href="output/Ext.Container.html">Ext.Container</a> (if applicable) and unregistering it from
953 <a ext:cls="Ext.ComponentMgr" href="output/Ext.ComponentMgr.html">Ext.ComponentMgr</a>.  Destruction is generally handled automatically by the framework and this method
954 should usually not need to be called directly.    <div class="mdetail-params">\r
955         <strong>Parameters:</strong>\r
956         <ul><li>None.</li>        </ul>\r
957         <strong>Returns:</strong>\r
958         <ul>\r
959             <li><code>void</code></li>\r
960         </ul>\r
961     </div>\r
962                 </div>\r
963                         </div>\r
964         </td>\r
965         <td class="msource"><a ext:cls="Ext.Component" ext:member="#destroy" href="output/Ext.Component.html#destroy">Component</a></td>\r
966     </tr>\r
967         <tr class="method-row inherited expandable">\r
968         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
969         <td class="sig">\r
970         <a id="Ext.DataView-disable"></a>\r
971             <b>disable</b>() : Ext.Component            <div class="mdesc">\r
972                         <div class="short">Disable this component.</div>\r
973             <div class="long">\r
974                 Disable this component.    <div class="mdetail-params">\r
975         <strong>Parameters:</strong>\r
976         <ul><li>None.</li>        </ul>\r
977         <strong>Returns:</strong>\r
978         <ul>\r
979             <li><code>Ext.Component</code><div class="sub-desc">this</div></li>\r
980         </ul>\r
981     </div>\r
982                 </div>\r
983                         </div>\r
984         </td>\r
985         <td class="msource"><a ext:cls="Ext.Component" ext:member="#disable" href="output/Ext.Component.html#disable">Component</a></td>\r
986     </tr>\r
987         <tr class="method-row inherited alt expandable">\r
988         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
989         <td class="sig">\r
990         <a id="Ext.DataView-enable"></a>\r
991             <b>enable</b>() : Ext.Component            <div class="mdesc">\r
992                         <div class="short">Enable this component.</div>\r
993             <div class="long">\r
994                 Enable this component.    <div class="mdetail-params">\r
995         <strong>Parameters:</strong>\r
996         <ul><li>None.</li>        </ul>\r
997         <strong>Returns:</strong>\r
998         <ul>\r
999             <li><code>Ext.Component</code><div class="sub-desc">this</div></li>\r
1000         </ul>\r
1001     </div>\r
1002                 </div>\r
1003                         </div>\r
1004         </td>\r
1005         <td class="msource"><a ext:cls="Ext.Component" ext:member="#enable" href="output/Ext.Component.html#enable">Component</a></td>\r
1006     </tr>\r
1007         <tr class="method-row expandable">\r
1008         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1009         <td class="sig">\r
1010         <a id="Ext.DataView-findItemFromChild"></a>\r
1011             <b>findItemFromChild</b>(&nbsp;<code>HTMLElement node</code>&nbsp;) : HTMLElement            <div class="mdesc">\r
1012                         <div class="short">Returns the template node the passed child belongs to, or null if it doesn't belong to one.</div>\r
1013             <div class="long">\r
1014                 Returns the template node the passed child belongs to, or null if it doesn't belong to one.    <div class="mdetail-params">\r
1015         <strong>Parameters:</strong>\r
1016         <ul><li><code>node</code> : HTMLElement<div class="sub-desc"></div></li>        </ul>\r
1017         <strong>Returns:</strong>\r
1018         <ul>\r
1019             <li><code>HTMLElement</code><div class="sub-desc">The template node</div></li>\r
1020         </ul>\r
1021     </div>\r
1022                 </div>\r
1023                         </div>\r
1024         </td>\r
1025         <td class="msource">DataView</td>\r
1026     </tr>\r
1027         <tr class="method-row inherited alt expandable">\r
1028         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1029         <td class="sig">\r
1030         <a id="Ext.DataView-findParentBy"></a>\r
1031             <b>findParentBy</b>(&nbsp;<code>Function fcn</code>, <span class="optional" title="Optional">[<code>Object scope</code>]</span>&nbsp;) : Ext.Container            <div class="mdesc">\r
1032                         <div class="short">Find a container above this component at any level by a custom function. If the passed function returns
1033 true, the con...</div>\r
1034             <div class="long">\r
1035                 Find a container above this component at any level by a custom function. If the passed function returns
1036 true, the container will be returned. The passed function is called with the arguments (container, this component).    <div class="mdetail-params">\r
1037         <strong>Parameters:</strong>\r
1038         <ul><li><code>fcn</code> : Function<div class="sub-desc"></div></li><li><code>scope</code> : Object<div class="sub-desc">(optional)</div></li>        </ul>\r
1039         <strong>Returns:</strong>\r
1040         <ul>\r
1041             <li><code>Ext.Container</code><div class="sub-desc">The first Container for which the custom function returns true</div></li>\r
1042         </ul>\r
1043     </div>\r
1044                 </div>\r
1045                         </div>\r
1046         </td>\r
1047         <td class="msource"><a ext:cls="Ext.Component" ext:member="#findParentBy" href="output/Ext.Component.html#findParentBy">Component</a></td>\r
1048     </tr>\r
1049         <tr class="method-row inherited expandable">\r
1050         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1051         <td class="sig">\r
1052         <a id="Ext.DataView-findParentByType"></a>\r
1053             <b>findParentByType</b>(&nbsp;<code>String/Class xtype</code>&nbsp;) : Ext.Container            <div class="mdesc">\r
1054                         <div class="short">Find a container above this component at any level by xtype or class</div>\r
1055             <div class="long">\r
1056                 Find a container above this component at any level by xtype or class    <div class="mdetail-params">\r
1057         <strong>Parameters:</strong>\r
1058         <ul><li><code>xtype</code> : String/Class<div class="sub-desc">The xtype string for a component, or the class of the component directly</div></li>        </ul>\r
1059         <strong>Returns:</strong>\r
1060         <ul>\r
1061             <li><code>Ext.Container</code><div class="sub-desc">The first Container which matches the given xtype or class</div></li>\r
1062         </ul>\r
1063     </div>\r
1064                 </div>\r
1065                         </div>\r
1066         </td>\r
1067         <td class="msource"><a ext:cls="Ext.Component" ext:member="#findParentByType" href="output/Ext.Component.html#findParentByType">Component</a></td>\r
1068     </tr>\r
1069         <tr class="method-row inherited alt expandable">\r
1070         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1071         <td class="sig">\r
1072         <a id="Ext.DataView-fireEvent"></a>\r
1073             <b>fireEvent</b>(&nbsp;<code>String eventName</code>, <code>Object... args</code>&nbsp;) : Boolean            <div class="mdesc">\r
1074                         <div class="short">Fires the specified event with the passed parameters (minus the event name).</div>\r
1075             <div class="long">\r
1076                 Fires the specified event with the passed parameters (minus the event name).    <div class="mdetail-params">\r
1077         <strong>Parameters:</strong>\r
1078         <ul><li><code>eventName</code> : String<div class="sub-desc"></div></li><li><code>args</code> : Object...<div class="sub-desc">Variable number of parameters are passed to handlers</div></li>        </ul>\r
1079         <strong>Returns:</strong>\r
1080         <ul>\r
1081             <li><code>Boolean</code><div class="sub-desc">returns false if any of the handlers return false otherwise it returns true</div></li>\r
1082         </ul>\r
1083     </div>\r
1084                 </div>\r
1085                         </div>\r
1086         </td>\r
1087         <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#fireEvent" href="output/Ext.util.Observable.html#fireEvent">Observable</a></td>\r
1088     </tr>\r
1089         <tr class="method-row inherited expandable">\r
1090         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1091         <td class="sig">\r
1092         <a id="Ext.DataView-focus"></a>\r
1093             <b>focus</b>(&nbsp;<span class="optional" title="Optional">[<code>Boolean selectText</code>]</span>, <span class="optional" title="Optional">[<code>Boolean/Number delay</code>]</span>&nbsp;) : Ext.Component            <div class="mdesc">\r
1094                         <div class="short">Try to focus this component.</div>\r
1095             <div class="long">\r
1096                 Try to focus this component.    <div class="mdetail-params">\r
1097         <strong>Parameters:</strong>\r
1098         <ul><li><code>selectText</code> : Boolean<div class="sub-desc">(optional) If applicable, true to also select the text in this component</div></li><li><code>delay</code> : Boolean/Number<div class="sub-desc">(optional) Delay the focus this number of milliseconds (true for 10 milliseconds)</div></li>        </ul>\r
1099         <strong>Returns:</strong>\r
1100         <ul>\r
1101             <li><code>Ext.Component</code><div class="sub-desc">this</div></li>\r
1102         </ul>\r
1103     </div>\r
1104                 </div>\r
1105                         </div>\r
1106         </td>\r
1107         <td class="msource"><a ext:cls="Ext.Component" ext:member="#focus" href="output/Ext.Component.html#focus">Component</a></td>\r
1108     </tr>\r
1109         <tr class="method-row inherited alt expandable">\r
1110         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1111         <td class="sig">\r
1112         <a id="Ext.DataView-getBox"></a>\r
1113             <b>getBox</b>(&nbsp;<span class="optional" title="Optional">[<code>Boolean local</code>]</span>&nbsp;) : Object            <div class="mdesc">\r
1114                         <div class="short">Gets the current box measurements of the component's underlying element.</div>\r
1115             <div class="long">\r
1116                 Gets the current box measurements of the component's underlying element.    <div class="mdetail-params">\r
1117         <strong>Parameters:</strong>\r
1118         <ul><li><code>local</code> : Boolean<div class="sub-desc">(optional) If true the element's left and top are returned instead of page XY (defaults to false)</div></li>        </ul>\r
1119         <strong>Returns:</strong>\r
1120         <ul>\r
1121             <li><code>Object</code><div class="sub-desc">box An object in the format {x, y, width, height}</div></li>\r
1122         </ul>\r
1123     </div>\r
1124                 </div>\r
1125                         </div>\r
1126         </td>\r
1127         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#getBox" href="output/Ext.BoxComponent.html#getBox">BoxComponent</a></td>\r
1128     </tr>\r
1129         <tr class="method-row inherited expandable">\r
1130         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1131         <td class="sig">\r
1132         <a id="Ext.DataView-getEl"></a>\r
1133             <b>getEl</b>() : Ext.Element            <div class="mdesc">\r
1134                         <div class="short">Returns the underlying <a ext:cls="Ext.Element" href="output/Ext.Element.html">Ext.Element</a>.</div>\r
1135             <div class="long">\r
1136                 Returns the underlying <a ext:cls="Ext.Element" href="output/Ext.Element.html">Ext.Element</a>.    <div class="mdetail-params">\r
1137         <strong>Parameters:</strong>\r
1138         <ul><li>None.</li>        </ul>\r
1139         <strong>Returns:</strong>\r
1140         <ul>\r
1141             <li><code>Ext.Element</code><div class="sub-desc">The element</div></li>\r
1142         </ul>\r
1143     </div>\r
1144                 </div>\r
1145                         </div>\r
1146         </td>\r
1147         <td class="msource"><a ext:cls="Ext.Component" ext:member="#getEl" href="output/Ext.Component.html#getEl">Component</a></td>\r
1148     </tr>\r
1149         <tr class="method-row inherited alt expandable">\r
1150         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1151         <td class="sig">\r
1152         <a id="Ext.DataView-getId"></a>\r
1153             <b>getId</b>() : String            <div class="mdesc">\r
1154                         <div class="short">Returns the id of this component.</div>\r
1155             <div class="long">\r
1156                 Returns the id of this component.    <div class="mdetail-params">\r
1157         <strong>Parameters:</strong>\r
1158         <ul><li>None.</li>        </ul>\r
1159         <strong>Returns:</strong>\r
1160         <ul>\r
1161             <li><code>String</code></li>\r
1162         </ul>\r
1163     </div>\r
1164                 </div>\r
1165                         </div>\r
1166         </td>\r
1167         <td class="msource"><a ext:cls="Ext.Component" ext:member="#getId" href="output/Ext.Component.html#getId">Component</a></td>\r
1168     </tr>\r
1169         <tr class="method-row inherited expandable">\r
1170         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1171         <td class="sig">\r
1172         <a id="Ext.DataView-getItemId"></a>\r
1173             <b>getItemId</b>() : String            <div class="mdesc">\r
1174                         <div class="short">Returns the item id of this component.</div>\r
1175             <div class="long">\r
1176                 Returns the item id of this component.    <div class="mdetail-params">\r
1177         <strong>Parameters:</strong>\r
1178         <ul><li>None.</li>        </ul>\r
1179         <strong>Returns:</strong>\r
1180         <ul>\r
1181             <li><code>String</code></li>\r
1182         </ul>\r
1183     </div>\r
1184                 </div>\r
1185                         </div>\r
1186         </td>\r
1187         <td class="msource"><a ext:cls="Ext.Component" ext:member="#getItemId" href="output/Ext.Component.html#getItemId">Component</a></td>\r
1188     </tr>\r
1189         <tr class="method-row alt expandable">\r
1190         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1191         <td class="sig">\r
1192         <a id="Ext.DataView-getNode"></a>\r
1193             <b>getNode</b>(&nbsp;<code>HTMLElement/String/Number nodeInfo</code>&nbsp;) : HTMLElement            <div class="mdesc">\r
1194                         <div class="short">Gets a template node.</div>\r
1195             <div class="long">\r
1196                 Gets a template node.    <div class="mdetail-params">\r
1197         <strong>Parameters:</strong>\r
1198         <ul><li><code>nodeInfo</code> : HTMLElement/String/Number<div class="sub-desc">An HTMLElement template node, index of a template node or the id of a template node</div></li>        </ul>\r
1199         <strong>Returns:</strong>\r
1200         <ul>\r
1201             <li><code>HTMLElement</code><div class="sub-desc">The node or null if it wasn't found</div></li>\r
1202         </ul>\r
1203     </div>\r
1204                 </div>\r
1205                         </div>\r
1206         </td>\r
1207         <td class="msource">DataView</td>\r
1208     </tr>\r
1209         <tr class="method-row expandable">\r
1210         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1211         <td class="sig">\r
1212         <a id="Ext.DataView-getNodes"></a>\r
1213             <b>getNodes</b>(&nbsp;<span class="optional" title="Optional">[<code>Number start</code>]</span>, <span class="optional" title="Optional">[<code>Number end</code>]</span>&nbsp;) : Array            <div class="mdesc">\r
1214                         <div class="short">Gets a range nodes.</div>\r
1215             <div class="long">\r
1216                 Gets a range nodes.    <div class="mdetail-params">\r
1217         <strong>Parameters:</strong>\r
1218         <ul><li><code>start</code> : Number<div class="sub-desc">(optional) The index of the first node in the range</div></li><li><code>end</code> : Number<div class="sub-desc">(optional) The index of the last node in the range</div></li>        </ul>\r
1219         <strong>Returns:</strong>\r
1220         <ul>\r
1221             <li><code>Array</code><div class="sub-desc">An array of nodes</div></li>\r
1222         </ul>\r
1223     </div>\r
1224                 </div>\r
1225                         </div>\r
1226         </td>\r
1227         <td class="msource">DataView</td>\r
1228     </tr>\r
1229         <tr class="method-row inherited alt expandable">\r
1230         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1231         <td class="sig">\r
1232         <a id="Ext.DataView-getPosition"></a>\r
1233             <b>getPosition</b>(&nbsp;<span class="optional" title="Optional">[<code>Boolean local</code>]</span>&nbsp;) : Array            <div class="mdesc">\r
1234                         <div class="short">Gets the current XY position of the component's underlying element.</div>\r
1235             <div class="long">\r
1236                 Gets the current XY position of the component's underlying element.    <div class="mdetail-params">\r
1237         <strong>Parameters:</strong>\r
1238         <ul><li><code>local</code> : Boolean<div class="sub-desc">(optional) If true the element's left and top are returned instead of page XY (defaults to false)</div></li>        </ul>\r
1239         <strong>Returns:</strong>\r
1240         <ul>\r
1241             <li><code>Array</code><div class="sub-desc">The XY position of the element (e.g., [100, 200])</div></li>\r
1242         </ul>\r
1243     </div>\r
1244                 </div>\r
1245                         </div>\r
1246         </td>\r
1247         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#getPosition" href="output/Ext.BoxComponent.html#getPosition">BoxComponent</a></td>\r
1248     </tr>\r
1249         <tr class="method-row expandable">\r
1250         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1251         <td class="sig">\r
1252         <a id="Ext.DataView-getRecord"></a>\r
1253             <b>getRecord</b>(&nbsp;<code>HTMLElement node</code>&nbsp;) : Record            <div class="mdesc">\r
1254                         <div class="short">Gets a record from a node</div>\r
1255             <div class="long">\r
1256                 Gets a record from a node    <div class="mdetail-params">\r
1257         <strong>Parameters:</strong>\r
1258         <ul><li><code>node</code> : HTMLElement<div class="sub-desc">The node to evaluate</div></li>        </ul>\r
1259         <strong>Returns:</strong>\r
1260         <ul>\r
1261             <li><code>Record</code><div class="sub-desc">record The {@link Ext.data.Record} object</div></li>\r
1262         </ul>\r
1263     </div>\r
1264                 </div>\r
1265                         </div>\r
1266         </td>\r
1267         <td class="msource">DataView</td>\r
1268     </tr>\r
1269         <tr class="method-row alt expandable">\r
1270         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1271         <td class="sig">\r
1272         <a id="Ext.DataView-getRecords"></a>\r
1273             <b>getRecords</b>(&nbsp;<code>Array nodes</code>&nbsp;) : Array            <div class="mdesc">\r
1274                         <div class="short">Gets an array of the records from an array of nodes</div>\r
1275             <div class="long">\r
1276                 Gets an array of the records from an array of nodes    <div class="mdetail-params">\r
1277         <strong>Parameters:</strong>\r
1278         <ul><li><code>nodes</code> : Array<div class="sub-desc">The nodes to evaluate</div></li>        </ul>\r
1279         <strong>Returns:</strong>\r
1280         <ul>\r
1281             <li><code>Array</code><div class="sub-desc">records The {@link Ext.data.Record} objects</div></li>\r
1282         </ul>\r
1283     </div>\r
1284                 </div>\r
1285                         </div>\r
1286         </td>\r
1287         <td class="msource">DataView</td>\r
1288     </tr>\r
1289         <tr class="method-row expandable">\r
1290         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1291         <td class="sig">\r
1292         <a id="Ext.DataView-getSelectedIndexes"></a>\r
1293             <b>getSelectedIndexes</b>() : Array            <div class="mdesc">\r
1294                         <div class="short">Gets the indexes of the selected nodes.</div>\r
1295             <div class="long">\r
1296                 Gets the indexes of the selected nodes.    <div class="mdetail-params">\r
1297         <strong>Parameters:</strong>\r
1298         <ul><li>None.</li>        </ul>\r
1299         <strong>Returns:</strong>\r
1300         <ul>\r
1301             <li><code>Array</code><div class="sub-desc">An array of numeric indexes</div></li>\r
1302         </ul>\r
1303     </div>\r
1304                 </div>\r
1305                         </div>\r
1306         </td>\r
1307         <td class="msource">DataView</td>\r
1308     </tr>\r
1309         <tr class="method-row alt expandable">\r
1310         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1311         <td class="sig">\r
1312         <a id="Ext.DataView-getSelectedNodes"></a>\r
1313             <b>getSelectedNodes</b>() : Array            <div class="mdesc">\r
1314                         <div class="short">Gets the currently selected nodes.</div>\r
1315             <div class="long">\r
1316                 Gets the currently selected nodes.    <div class="mdetail-params">\r
1317         <strong>Parameters:</strong>\r
1318         <ul><li>None.</li>        </ul>\r
1319         <strong>Returns:</strong>\r
1320         <ul>\r
1321             <li><code>Array</code><div class="sub-desc">An array of HTMLElements</div></li>\r
1322         </ul>\r
1323     </div>\r
1324                 </div>\r
1325                         </div>\r
1326         </td>\r
1327         <td class="msource">DataView</td>\r
1328     </tr>\r
1329         <tr class="method-row expandable">\r
1330         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1331         <td class="sig">\r
1332         <a id="Ext.DataView-getSelectedRecords"></a>\r
1333             <b>getSelectedRecords</b>() : Array            <div class="mdesc">\r
1334                         <div class="short">Gets an array of the selected records</div>\r
1335             <div class="long">\r
1336                 Gets an array of the selected records    <div class="mdetail-params">\r
1337         <strong>Parameters:</strong>\r
1338         <ul><li>None.</li>        </ul>\r
1339         <strong>Returns:</strong>\r
1340         <ul>\r
1341             <li><code>Array</code><div class="sub-desc">An array of {@link Ext.data.Record} objects</div></li>\r
1342         </ul>\r
1343     </div>\r
1344                 </div>\r
1345                         </div>\r
1346         </td>\r
1347         <td class="msource">DataView</td>\r
1348     </tr>\r
1349         <tr class="method-row alt expandable">\r
1350         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1351         <td class="sig">\r
1352         <a id="Ext.DataView-getSelectionCount"></a>\r
1353             <b>getSelectionCount</b>() : Number            <div class="mdesc">\r
1354                         <div class="short">Gets the number of selected nodes.</div>\r
1355             <div class="long">\r
1356                 Gets the number of selected nodes.    <div class="mdetail-params">\r
1357         <strong>Parameters:</strong>\r
1358         <ul><li>None.</li>        </ul>\r
1359         <strong>Returns:</strong>\r
1360         <ul>\r
1361             <li><code>Number</code><div class="sub-desc">The node count</div></li>\r
1362         </ul>\r
1363     </div>\r
1364                 </div>\r
1365                         </div>\r
1366         </td>\r
1367         <td class="msource">DataView</td>\r
1368     </tr>\r
1369         <tr class="method-row inherited expandable">\r
1370         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1371         <td class="sig">\r
1372         <a id="Ext.DataView-getSize"></a>\r
1373             <b>getSize</b>() : Object            <div class="mdesc">\r
1374                         <div class="short">Gets the current size of the component's underlying element.</div>\r
1375             <div class="long">\r
1376                 Gets the current size of the component's underlying element.    <div class="mdetail-params">\r
1377         <strong>Parameters:</strong>\r
1378         <ul><li>None.</li>        </ul>\r
1379         <strong>Returns:</strong>\r
1380         <ul>\r
1381             <li><code>Object</code><div class="sub-desc">An object containing the element's size {width: (element width), height: (element height)}</div></li>\r
1382         </ul>\r
1383     </div>\r
1384                 </div>\r
1385                         </div>\r
1386         </td>\r
1387         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#getSize" href="output/Ext.BoxComponent.html#getSize">BoxComponent</a></td>\r
1388     </tr>\r
1389         <tr class="method-row alt expandable">\r
1390         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1391         <td class="sig">\r
1392         <a id="Ext.DataView-getStore"></a>\r
1393             <b>getStore</b>() : Ext.data.Store            <div class="mdesc">\r
1394                         <div class="short">Returns the store associated with this DataView.</div>\r
1395             <div class="long">\r
1396                 Returns the store associated with this DataView.    <div class="mdetail-params">\r
1397         <strong>Parameters:</strong>\r
1398         <ul><li>None.</li>        </ul>\r
1399         <strong>Returns:</strong>\r
1400         <ul>\r
1401             <li><code>Ext.data.Store</code><div class="sub-desc">The store</div></li>\r
1402         </ul>\r
1403     </div>\r
1404                 </div>\r
1405                         </div>\r
1406         </td>\r
1407         <td class="msource">DataView</td>\r
1408     </tr>\r
1409         <tr class="method-row inherited expandable">\r
1410         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1411         <td class="sig">\r
1412         <a id="Ext.DataView-getXType"></a>\r
1413             <b>getXType</b>() : String            <div class="mdesc">\r
1414                         <div class="short">Gets the xtype for this component as registered with Ext.ComponentMgr. For a list of all
1415 available xtypes, see the Ex...</div>\r
1416             <div class="long">\r
1417                 Gets the xtype for this component as registered with <a ext:cls="Ext.ComponentMgr" href="output/Ext.ComponentMgr.html">Ext.ComponentMgr</a>. For a list of all
1418 available xtypes, see the <a ext:cls="Ext.Component" href="output/Ext.Component.html">Ext.Component</a> header. Example usage:
1419 <pre><code>var t = <b>new</b> Ext.form.TextField();
1420 alert(t.getXType());  // alerts <em>'textfield'</em></code></pre>    <div class="mdetail-params">\r
1421         <strong>Parameters:</strong>\r
1422         <ul><li>None.</li>        </ul>\r
1423         <strong>Returns:</strong>\r
1424         <ul>\r
1425             <li><code>String</code><div class="sub-desc">The xtype</div></li>\r
1426         </ul>\r
1427     </div>\r
1428                 </div>\r
1429                         </div>\r
1430         </td>\r
1431         <td class="msource"><a ext:cls="Ext.Component" ext:member="#getXType" href="output/Ext.Component.html#getXType">Component</a></td>\r
1432     </tr>\r
1433         <tr class="method-row inherited alt expandable">\r
1434         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1435         <td class="sig">\r
1436         <a id="Ext.DataView-getXTypes"></a>\r
1437             <b>getXTypes</b>() : String            <div class="mdesc">\r
1438                         <div class="short">Returns this Component's xtype hierarchy as a slash-delimited string. For a list of all
1439 available xtypes, see the Ext...</div>\r
1440             <div class="long">\r
1441                 <p>Returns this Component's xtype hierarchy as a slash-delimited string. For a list of all
1442 available xtypes, see the <a ext:cls="Ext.Component" href="output/Ext.Component.html">Ext.Component</a> header.</p>
1443 <p><b>If using your own subclasses, be aware that a Component must register its own xtype
1444 to participate in determination of inherited xtypes.</b></p>
1445 <p>Example usage:</p>
1446 <pre><code>\r
1447 var t = new Ext.form.TextField();\r
1448 alert(t.getXTypes());  // alerts 'component/box/field/textfield'</pre></code>    <div class="mdetail-params">\r
1449         <strong>Parameters:</strong>\r
1450         <ul><li>None.</li>        </ul>\r
1451         <strong>Returns:</strong>\r
1452         <ul>\r
1453             <li><code>String</code><div class="sub-desc">The xtype hierarchy string</div></li>\r
1454         </ul>\r
1455     </div>\r
1456                 </div>\r
1457                         </div>\r
1458         </td>\r
1459         <td class="msource"><a ext:cls="Ext.Component" ext:member="#getXTypes" href="output/Ext.Component.html#getXTypes">Component</a></td>\r
1460     </tr>\r
1461         <tr class="method-row inherited expandable">\r
1462         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1463         <td class="sig">\r
1464         <a id="Ext.DataView-hasListener"></a>\r
1465             <b>hasListener</b>(&nbsp;<code>String eventName</code>&nbsp;) : Boolean            <div class="mdesc">\r
1466                         <div class="short">Checks to see if this object has any listeners for a specified event</div>\r
1467             <div class="long">\r
1468                 Checks to see if this object has any listeners for a specified event    <div class="mdetail-params">\r
1469         <strong>Parameters:</strong>\r
1470         <ul><li><code>eventName</code> : String<div class="sub-desc">The name of the event to check for</div></li>        </ul>\r
1471         <strong>Returns:</strong>\r
1472         <ul>\r
1473             <li><code>Boolean</code><div class="sub-desc">True if the event is being listened for, else false</div></li>\r
1474         </ul>\r
1475     </div>\r
1476                 </div>\r
1477                         </div>\r
1478         </td>\r
1479         <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#hasListener" href="output/Ext.util.Observable.html#hasListener">Observable</a></td>\r
1480     </tr>\r
1481         <tr class="method-row inherited alt expandable">\r
1482         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1483         <td class="sig">\r
1484         <a id="Ext.DataView-hide"></a>\r
1485             <b>hide</b>() : Ext.Component            <div class="mdesc">\r
1486                         <div class="short">Hide this component.</div>\r
1487             <div class="long">\r
1488                 Hide this component.    <div class="mdetail-params">\r
1489         <strong>Parameters:</strong>\r
1490         <ul><li>None.</li>        </ul>\r
1491         <strong>Returns:</strong>\r
1492         <ul>\r
1493             <li><code>Ext.Component</code><div class="sub-desc">this</div></li>\r
1494         </ul>\r
1495     </div>\r
1496                 </div>\r
1497                         </div>\r
1498         </td>\r
1499         <td class="msource"><a ext:cls="Ext.Component" ext:member="#hide" href="output/Ext.Component.html#hide">Component</a></td>\r
1500     </tr>\r
1501         <tr class="method-row expandable">\r
1502         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1503         <td class="sig">\r
1504         <a id="Ext.DataView-indexOf"></a>\r
1505             <b>indexOf</b>(&nbsp;<code>HTMLElement/String/Number nodeInfo</code>&nbsp;) : Number            <div class="mdesc">\r
1506                         <div class="short">Finds the index of the passed node.</div>\r
1507             <div class="long">\r
1508                 Finds the index of the passed node.    <div class="mdetail-params">\r
1509         <strong>Parameters:</strong>\r
1510         <ul><li><code>nodeInfo</code> : HTMLElement/String/Number<div class="sub-desc">An HTMLElement template node, index of a template node or the id of a template node</div></li>        </ul>\r
1511         <strong>Returns:</strong>\r
1512         <ul>\r
1513             <li><code>Number</code><div class="sub-desc">The index of the node or -1</div></li>\r
1514         </ul>\r
1515     </div>\r
1516                 </div>\r
1517                         </div>\r
1518         </td>\r
1519         <td class="msource">DataView</td>\r
1520     </tr>\r
1521         <tr class="method-row alt expandable">\r
1522         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1523         <td class="sig">\r
1524         <a id="Ext.DataView-isSelected"></a>\r
1525             <b>isSelected</b>(&nbsp;<code>HTMLElement/Number node</code>&nbsp;) : Boolean            <div class="mdesc">\r
1526                         <div class="short">Returns true if the passed node is selected, else false.</div>\r
1527             <div class="long">\r
1528                 Returns true if the passed node is selected, else false.    <div class="mdetail-params">\r
1529         <strong>Parameters:</strong>\r
1530         <ul><li><code>node</code> : HTMLElement/Number<div class="sub-desc">The node or node index to check</div></li>        </ul>\r
1531         <strong>Returns:</strong>\r
1532         <ul>\r
1533             <li><code>Boolean</code><div class="sub-desc">True if selected, else false</div></li>\r
1534         </ul>\r
1535     </div>\r
1536                 </div>\r
1537                         </div>\r
1538         </td>\r
1539         <td class="msource">DataView</td>\r
1540     </tr>\r
1541         <tr class="method-row inherited expandable">\r
1542         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1543         <td class="sig">\r
1544         <a id="Ext.DataView-isVisible"></a>\r
1545             <b>isVisible</b>() : void            <div class="mdesc">\r
1546                         <div class="short">Returns true if this component is visible.</div>\r
1547             <div class="long">\r
1548                 Returns true if this component is visible.    <div class="mdetail-params">\r
1549         <strong>Parameters:</strong>\r
1550         <ul><li>None.</li>        </ul>\r
1551         <strong>Returns:</strong>\r
1552         <ul>\r
1553             <li><code>void</code></li>\r
1554         </ul>\r
1555     </div>\r
1556                 </div>\r
1557                         </div>\r
1558         </td>\r
1559         <td class="msource"><a ext:cls="Ext.Component" ext:member="#isVisible" href="output/Ext.Component.html#isVisible">Component</a></td>\r
1560     </tr>\r
1561         <tr class="method-row inherited alt expandable">\r
1562         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1563         <td class="sig">\r
1564         <a id="Ext.DataView-isXType"></a>\r
1565             <b>isXType</b>(&nbsp;<code>String xtype</code>, <span class="optional" title="Optional">[<code>Boolean shallow</code>]</span>&nbsp;) : void            <div class="mdesc">\r
1566                         <div class="short">Tests whether or not this Component is of a specific xtype. This can test whether this Component is descended
1567 from th...</div>\r
1568             <div class="long">\r
1569                 <p>Tests whether or not this Component is of a specific xtype. This can test whether this Component is descended
1570 from the xtype (default) or whether it is directly of the xtype specified (shallow = true).</p>
1571 <p><b>If using your own subclasses, be aware that a Component must register its own xtype
1572 to participate in determination of inherited xtypes.</b></p>
1573 <p>For a list of all available xtypes, see the <a ext:cls="Ext.Component" href="output/Ext.Component.html">Ext.Component</a> header.</p>
1574 <p>Example usage:</p>
1575 <pre><code>var t = <b>new</b> Ext.form.TextField();
1576 <b>var</b> isText = t.isXType(<em>'textfield'</em>);        <i>// true</i>
1577 <b>var</b> isBoxSubclass = t.isXType(<em>'box'</em>);       <i>// true, descended from BoxComponent</i>
1578 <b>var</b> isBoxInstance = t.isXType(<em>'box'</em>, true); // false, not a direct BoxComponent instance</code></pre>    <div class="mdetail-params">\r
1579         <strong>Parameters:</strong>\r
1580         <ul><li><code>xtype</code> : String<div class="sub-desc">The xtype to check for this Component</div></li><li><code>shallow</code> : Boolean<div class="sub-desc">(optional) False to check whether this Component is descended from the xtype (this is
1581 the default), or true to check whether this Component is directly of the specified xtype.</div></li>        </ul>\r
1582         <strong>Returns:</strong>\r
1583         <ul>\r
1584             <li><code>void</code></li>\r
1585         </ul>\r
1586     </div>\r
1587                 </div>\r
1588                         </div>\r
1589         </td>\r
1590         <td class="msource"><a ext:cls="Ext.Component" ext:member="#isXType" href="output/Ext.Component.html#isXType">Component</a></td>\r
1591     </tr>\r
1592         <tr class="method-row inherited expandable">\r
1593         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1594         <td class="sig">\r
1595         <a id="Ext.DataView-on"></a>\r
1596             <b>on</b>(&nbsp;<code>String eventName</code>, <code>Function handler</code>, <span class="optional" title="Optional">[<code>Object scope</code>]</span>, <span class="optional" title="Optional">[<code>Object options</code>]</span>&nbsp;) : void            <div class="mdesc">\r
1597                         <div class="short">Appends an event handler to this element (shorthand for addListener)</div>\r
1598             <div class="long">\r
1599                 Appends an event handler to this element (shorthand for addListener)    <div class="mdetail-params">\r
1600         <strong>Parameters:</strong>\r
1601         <ul><li><code>eventName</code> : String<div class="sub-desc">The type of event to listen for</div></li><li><code>handler</code> : Function<div class="sub-desc">The method the event invokes</div></li><li><code>scope</code> : Object<div class="sub-desc">(optional) The scope in which to execute the handler
1602 function. The handler function's "this" context.</div></li><li><code>options</code> : Object<div class="sub-desc">(optional)</div></li>        </ul>\r
1603         <strong>Returns:</strong>\r
1604         <ul>\r
1605             <li><code>void</code></li>\r
1606         </ul>\r
1607     </div>\r
1608                 </div>\r
1609                         </div>\r
1610         </td>\r
1611         <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#on" href="output/Ext.util.Observable.html#on">Observable</a></td>\r
1612     </tr>\r
1613         <tr class="method-row alt expandable">\r
1614         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1615         <td class="sig">\r
1616         <a id="Ext.DataView-prepareData"></a>\r
1617             <b>prepareData</b>(&nbsp;<code>Array/Object data</code>, <code>Number recordIndex</code>, <code>Record record</code>&nbsp;) : Array/Object            <div class="mdesc">\r
1618                         <div class="short">Function which can be overridden to provide custom formatting for each Record that is used by this
1619 DataView's templat...</div>\r
1620             <div class="long">\r
1621                 Function which can be overridden to provide custom formatting for each Record that is used by this
1622 DataView's <a ext:cls="Ext.DataView" ext:member="tpl" href="output/Ext.DataView.html#tpl">template</a> to render each node.    <div class="mdetail-params">\r
1623         <strong>Parameters:</strong>\r
1624         <ul><li><code>data</code> : Array/Object<div class="sub-desc">The raw data object that was used to create the Record.</div></li><li><code>recordIndex</code> : Number<div class="sub-desc">the index number of the Record being prepared for rendering.</div></li><li><code>record</code> : Record<div class="sub-desc">The Record being prepared for rendering.</div></li>        </ul>\r
1625         <strong>Returns:</strong>\r
1626         <ul>\r
1627             <li><code>Array/Object</code><div class="sub-desc">The formatted data in a format expected by the internal {@link #tpl template}'s overwrite() method. (either an array if your params are numeric (i.e. {0}) or an object (i.e. {foo: 'bar'}))</div></li>\r
1628         </ul>\r
1629     </div>\r
1630                 </div>\r
1631                         </div>\r
1632         </td>\r
1633         <td class="msource">DataView</td>\r
1634     </tr>\r
1635         <tr class="method-row inherited expandable">\r
1636         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1637         <td class="sig">\r
1638         <a id="Ext.DataView-purgeListeners"></a>\r
1639             <b>purgeListeners</b>() : void            <div class="mdesc">\r
1640                         <div class="short">Removes all listeners for this object</div>\r
1641             <div class="long">\r
1642                 Removes all listeners for this object    <div class="mdetail-params">\r
1643         <strong>Parameters:</strong>\r
1644         <ul><li>None.</li>        </ul>\r
1645         <strong>Returns:</strong>\r
1646         <ul>\r
1647             <li><code>void</code></li>\r
1648         </ul>\r
1649     </div>\r
1650                 </div>\r
1651                         </div>\r
1652         </td>\r
1653         <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#purgeListeners" href="output/Ext.util.Observable.html#purgeListeners">Observable</a></td>\r
1654     </tr>\r
1655         <tr class="method-row alt expandable">\r
1656         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1657         <td class="sig">\r
1658         <a id="Ext.DataView-refresh"></a>\r
1659             <b>refresh</b>() : void            <div class="mdesc">\r
1660                         <div class="short">Refreshes the view by reloading the data from the store and re-rendering the template.</div>\r
1661             <div class="long">\r
1662                 Refreshes the view by reloading the data from the store and re-rendering the template.    <div class="mdetail-params">\r
1663         <strong>Parameters:</strong>\r
1664         <ul><li>None.</li>        </ul>\r
1665         <strong>Returns:</strong>\r
1666         <ul>\r
1667             <li><code>void</code></li>\r
1668         </ul>\r
1669     </div>\r
1670                 </div>\r
1671                         </div>\r
1672         </td>\r
1673         <td class="msource">DataView</td>\r
1674     </tr>\r
1675         <tr class="method-row expandable">\r
1676         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1677         <td class="sig">\r
1678         <a id="Ext.DataView-refreshNode"></a>\r
1679             <b>refreshNode</b>(&nbsp;<code>Number index</code>&nbsp;) : void            <div class="mdesc">\r
1680                         <div class="short">Refreshes an individual node's data from the store.</div>\r
1681             <div class="long">\r
1682                 Refreshes an individual node's data from the store.    <div class="mdetail-params">\r
1683         <strong>Parameters:</strong>\r
1684         <ul><li><code>index</code> : Number<div class="sub-desc">The item's data index in the store</div></li>        </ul>\r
1685         <strong>Returns:</strong>\r
1686         <ul>\r
1687             <li><code>void</code></li>\r
1688         </ul>\r
1689     </div>\r
1690                 </div>\r
1691                         </div>\r
1692         </td>\r
1693         <td class="msource">DataView</td>\r
1694     </tr>\r
1695         <tr class="method-row inherited alt expandable">\r
1696         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1697         <td class="sig">\r
1698         <a id="Ext.DataView-relayEvents"></a>\r
1699             <b>relayEvents</b>(&nbsp;<code>Object o</code>, <code>Array events</code>&nbsp;) : void            <div class="mdesc">\r
1700                         <div class="short">Relays selected events from the specified Observable as if the events were fired by <tt><b>this</b></tt>.</div>\r
1701             <div class="long">\r
1702                 Relays selected events from the specified Observable as if the events were fired by <tt><b>this</b></tt>.    <div class="mdetail-params">\r
1703         <strong>Parameters:</strong>\r
1704         <ul><li><code>o</code> : Object<div class="sub-desc">The Observable whose events this object is to relay.</div></li><li><code>events</code> : Array<div class="sub-desc">Array of event names to relay.</div></li>        </ul>\r
1705         <strong>Returns:</strong>\r
1706         <ul>\r
1707             <li><code>void</code></li>\r
1708         </ul>\r
1709     </div>\r
1710                 </div>\r
1711                         </div>\r
1712         </td>\r
1713         <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#relayEvents" href="output/Ext.util.Observable.html#relayEvents">Observable</a></td>\r
1714     </tr>\r
1715         <tr class="method-row inherited expandable">\r
1716         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1717         <td class="sig">\r
1718         <a id="Ext.DataView-removeClass"></a>\r
1719             <b>removeClass</b>(&nbsp;<code>string cls</code>&nbsp;) : void            <div class="mdesc">\r
1720                         <div class="short">Removes a CSS class from the component's underlying element.</div>\r
1721             <div class="long">\r
1722                 Removes a CSS class from the component's underlying element.    <div class="mdetail-params">\r
1723         <strong>Parameters:</strong>\r
1724         <ul><li><code>cls</code> : string<div class="sub-desc">The CSS class name to remove</div></li>        </ul>\r
1725         <strong>Returns:</strong>\r
1726         <ul>\r
1727             <li><code>void</code></li>\r
1728         </ul>\r
1729     </div>\r
1730                 </div>\r
1731                         </div>\r
1732         </td>\r
1733         <td class="msource"><a ext:cls="Ext.Component" ext:member="#removeClass" href="output/Ext.Component.html#removeClass">Component</a></td>\r
1734     </tr>\r
1735         <tr class="method-row inherited alt expandable">\r
1736         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1737         <td class="sig">\r
1738         <a id="Ext.DataView-removeListener"></a>\r
1739             <b>removeListener</b>(&nbsp;<code>String eventName</code>, <code>Function handler</code>, <span class="optional" title="Optional">[<code>Object scope</code>]</span>&nbsp;) : void            <div class="mdesc">\r
1740                         <div class="short">Removes a listener</div>\r
1741             <div class="long">\r
1742                 Removes a listener    <div class="mdetail-params">\r
1743         <strong>Parameters:</strong>\r
1744         <ul><li><code>eventName</code> : String<div class="sub-desc">The type of event to listen for</div></li><li><code>handler</code> : Function<div class="sub-desc">The handler to remove</div></li><li><code>scope</code> : Object<div class="sub-desc">(optional) The scope (this object) for the handler</div></li>        </ul>\r
1745         <strong>Returns:</strong>\r
1746         <ul>\r
1747             <li><code>void</code></li>\r
1748         </ul>\r
1749     </div>\r
1750                 </div>\r
1751                         </div>\r
1752         </td>\r
1753         <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#removeListener" href="output/Ext.util.Observable.html#removeListener">Observable</a></td>\r
1754     </tr>\r
1755         <tr class="method-row inherited expandable">\r
1756         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1757         <td class="sig">\r
1758         <a id="Ext.DataView-render"></a>\r
1759             <b>render</b>(&nbsp;<span class="optional" title="Optional">[<code>Element/HTMLElement/String container</code>]</span>, <span class="optional" title="Optional">[<code>String/Number position</code>]</span>&nbsp;) : void            <div class="mdesc">\r
1760                         <div class="short">Render this Component into the passed HTML element.
1761 If you are using a Container object to house this Component, then...</div>\r
1762             <div class="long">\r
1763                 <p>Render this Component into the passed HTML element.</p>
1764 <p><b>If you are using a <a ext:cls="Ext.Container" href="output/Ext.Container.html">Container</a> object to house this Component, then
1765 do not use the render method.</b></p>
1766 <p>A Container's child Components are rendered by that Container's
1767 <a ext:cls="Ext.Container" ext:member="layout" href="output/Ext.Container.html#layout">layout</a> manager when the Container is first rendered.</p>
1768 <p>Certain layout managers allow dynamic addition of child components. Those that do
1769 include <a ext:cls="Ext.layout.CardLayout" href="output/Ext.layout.CardLayout.html">Ext.layout.CardLayout</a>, <a ext:cls="Ext.layout.AnchorLayout" href="output/Ext.layout.AnchorLayout.html">Ext.layout.AnchorLayout</a>,
1770 <a ext:cls="Ext.layout.FormLayout" href="output/Ext.layout.FormLayout.html">Ext.layout.FormLayout</a>, <a ext:cls="Ext.layout.TableLayout" href="output/Ext.layout.TableLayout.html">Ext.layout.TableLayout</a>.</p>
1771 <p>If the Container is already rendered when a new child Component is added, you may need to call
1772 the Container's <a ext:cls="Ext.Container" ext:member="doLayout" href="output/Ext.Container.html#doLayout">doLayout</a> to refresh the view which causes any
1773 unrendered child Components to be rendered. This is required so that you can add multiple
1774 child components if needed while only refreshing the layout once.</p>
1775 <p>When creating complex UIs, it is important to remember that sizing and positioning
1776 of child items is the responsibility of the Container's <a ext:cls="Ext.Container" ext:member="layout" href="output/Ext.Container.html#layout">layout</a> manager.
1777 If you expect child items to be sized in response to user interactions, you must
1778 configure the Container with a layout manager which creates and manages the type of layout you
1779 have in mind.</p>
1780 <p><b>Omitting the Container's <a ext:cls="Ext.Container" ext:member="layout" href="output/Ext.Container.html#layout">layout</a> config means that a basic
1781 layout manager is used which does nothing but render child components sequentially into the
1782 Container. No sizing or positioning will be performed in this situation.</b></p>    <div class="mdetail-params">\r
1783         <strong>Parameters:</strong>\r
1784         <ul><li><code>container</code> : Element/HTMLElement/String<div class="sub-desc">(optional) The element this Component should be
1785 rendered into. If it is being created from existing markup, this should be omitted.</div></li><li><code>position</code> : String/Number<div class="sub-desc">(optional) The element ID or DOM node index within the container <b>before</b>
1786 which this component will be inserted (defaults to appending to the end of the container)</div></li>        </ul>\r
1787         <strong>Returns:</strong>\r
1788         <ul>\r
1789             <li><code>void</code></li>\r
1790         </ul>\r
1791     </div>\r
1792                 </div>\r
1793                         </div>\r
1794         </td>\r
1795         <td class="msource"><a ext:cls="Ext.Component" ext:member="#render" href="output/Ext.Component.html#render">Component</a></td>\r
1796     </tr>\r
1797         <tr class="method-row inherited alt expandable">\r
1798         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1799         <td class="sig">\r
1800         <a id="Ext.DataView-resumeEvents"></a>\r
1801             <b>resumeEvents</b>() : void            <div class="mdesc">\r
1802                         <div class="short">Resume firing events. (see <a ext:cls="Ext.util.Observable" ext:member="suspendEvents" href="output/Ext.util.Observable.html#suspendEvents">suspendEvents</a>)</div>\r
1803             <div class="long">\r
1804                 Resume firing events. (see <a ext:cls="Ext.util.Observable" ext:member="suspendEvents" href="output/Ext.util.Observable.html#suspendEvents">suspendEvents</a>)    <div class="mdetail-params">\r
1805         <strong>Parameters:</strong>\r
1806         <ul><li>None.</li>        </ul>\r
1807         <strong>Returns:</strong>\r
1808         <ul>\r
1809             <li><code>void</code></li>\r
1810         </ul>\r
1811     </div>\r
1812                 </div>\r
1813                         </div>\r
1814         </td>\r
1815         <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#resumeEvents" href="output/Ext.util.Observable.html#resumeEvents">Observable</a></td>\r
1816     </tr>\r
1817         <tr class="method-row expandable">\r
1818         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1819         <td class="sig">\r
1820         <a id="Ext.DataView-select"></a>\r
1821             <b>select</b>(&nbsp;<code>Array/HTMLElement/String/Number nodeInfo</code>, <span class="optional" title="Optional">[<code>Boolean keepExisting</code>]</span>, <span class="optional" title="Optional">[<code>Boolean suppressEvent</code>]</span>&nbsp;) : void            <div class="mdesc">\r
1822                         <div class="short">Selects a set of nodes.</div>\r
1823             <div class="long">\r
1824                 Selects a set of nodes.    <div class="mdetail-params">\r
1825         <strong>Parameters:</strong>\r
1826         <ul><li><code>nodeInfo</code> : Array/HTMLElement/String/Number<div class="sub-desc">An HTMLElement template node, index of a template node,
1827 id of a template node or an array of any of those to select</div></li><li><code>keepExisting</code> : Boolean<div class="sub-desc">(optional) true to keep existing selections</div></li><li><code>suppressEvent</code> : Boolean<div class="sub-desc">(optional) true to skip firing of the selectionchange vent</div></li>        </ul>\r
1828         <strong>Returns:</strong>\r
1829         <ul>\r
1830             <li><code>void</code></li>\r
1831         </ul>\r
1832     </div>\r
1833                 </div>\r
1834                         </div>\r
1835         </td>\r
1836         <td class="msource">DataView</td>\r
1837     </tr>\r
1838         <tr class="method-row alt expandable">\r
1839         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1840         <td class="sig">\r
1841         <a id="Ext.DataView-selectRange"></a>\r
1842             <b>selectRange</b>(&nbsp;<code>Number start</code>, <code>Number end</code>, <span class="optional" title="Optional">[<code>Boolean keepExisting</code>]</span>&nbsp;) : void            <div class="mdesc">\r
1843                         <div class="short">Selects a range of nodes. All nodes between start and end are selected.</div>\r
1844             <div class="long">\r
1845                 Selects a range of nodes. All nodes between start and end are selected.    <div class="mdetail-params">\r
1846         <strong>Parameters:</strong>\r
1847         <ul><li><code>start</code> : Number<div class="sub-desc">The index of the first node in the range</div></li><li><code>end</code> : Number<div class="sub-desc">The index of the last node in the range</div></li><li><code>keepExisting</code> : Boolean<div class="sub-desc">(optional) True to retain existing selections</div></li>        </ul>\r
1848         <strong>Returns:</strong>\r
1849         <ul>\r
1850             <li><code>void</code></li>\r
1851         </ul>\r
1852     </div>\r
1853                 </div>\r
1854                         </div>\r
1855         </td>\r
1856         <td class="msource">DataView</td>\r
1857     </tr>\r
1858         <tr class="method-row inherited expandable">\r
1859         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1860         <td class="sig">\r
1861         <a id="Ext.DataView-setDisabled"></a>\r
1862             <b>setDisabled</b>(&nbsp;<code>Boolean disabled</code>&nbsp;) : void            <div class="mdesc">\r
1863                         <div class="short">Convenience function for setting disabled/enabled by boolean.</div>\r
1864             <div class="long">\r
1865                 Convenience function for setting disabled/enabled by boolean.    <div class="mdetail-params">\r
1866         <strong>Parameters:</strong>\r
1867         <ul><li><code>disabled</code> : Boolean<div class="sub-desc"></div></li>        </ul>\r
1868         <strong>Returns:</strong>\r
1869         <ul>\r
1870             <li><code>void</code></li>\r
1871         </ul>\r
1872     </div>\r
1873                 </div>\r
1874                         </div>\r
1875         </td>\r
1876         <td class="msource"><a ext:cls="Ext.Component" ext:member="#setDisabled" href="output/Ext.Component.html#setDisabled">Component</a></td>\r
1877     </tr>\r
1878         <tr class="method-row inherited alt expandable">\r
1879         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1880         <td class="sig">\r
1881         <a id="Ext.DataView-setHeight"></a>\r
1882             <b>setHeight</b>(&nbsp;<code>Number height</code>&nbsp;) : Ext.BoxComponent            <div class="mdesc">\r
1883                         <div class="short">Sets the height of the component.  This method fires the <a ext:cls="Ext.BoxComponent" ext:member="resize" href="output/Ext.BoxComponent.html#resize">resize</a> event.</div>\r
1884             <div class="long">\r
1885                 Sets the height of the component.  This method fires the <a ext:cls="Ext.BoxComponent" ext:member="resize" href="output/Ext.BoxComponent.html#resize">resize</a> event.    <div class="mdetail-params">\r
1886         <strong>Parameters:</strong>\r
1887         <ul><li><code>height</code> : Number<div class="sub-desc">The new height to set</div></li>        </ul>\r
1888         <strong>Returns:</strong>\r
1889         <ul>\r
1890             <li><code>Ext.BoxComponent</code><div class="sub-desc">this</div></li>\r
1891         </ul>\r
1892     </div>\r
1893                 </div>\r
1894                         </div>\r
1895         </td>\r
1896         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#setHeight" href="output/Ext.BoxComponent.html#setHeight">BoxComponent</a></td>\r
1897     </tr>\r
1898         <tr class="method-row inherited expandable">\r
1899         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1900         <td class="sig">\r
1901         <a id="Ext.DataView-setPagePosition"></a>\r
1902             <b>setPagePosition</b>(&nbsp;<code>Number x</code>, <code>Number y</code>&nbsp;) : Ext.BoxComponent            <div class="mdesc">\r
1903                         <div class="short">Sets the page XY position of the component.  To set the left and top instead, use setPosition.
1904 This method fires the ...</div>\r
1905             <div class="long">\r
1906                 Sets the page XY position of the component.  To set the left and top instead, use <a ext:cls="Ext.BoxComponent" ext:member="setPosition" href="output/Ext.BoxComponent.html#setPosition">setPosition</a>.
1907 This method fires the <a ext:cls="Ext.BoxComponent" ext:member="move" href="output/Ext.BoxComponent.html#move">move</a> event.    <div class="mdetail-params">\r
1908         <strong>Parameters:</strong>\r
1909         <ul><li><code>x</code> : Number<div class="sub-desc">The new x position</div></li><li><code>y</code> : Number<div class="sub-desc">The new y position</div></li>        </ul>\r
1910         <strong>Returns:</strong>\r
1911         <ul>\r
1912             <li><code>Ext.BoxComponent</code><div class="sub-desc">this</div></li>\r
1913         </ul>\r
1914     </div>\r
1915                 </div>\r
1916                         </div>\r
1917         </td>\r
1918         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#setPagePosition" href="output/Ext.BoxComponent.html#setPagePosition">BoxComponent</a></td>\r
1919     </tr>\r
1920         <tr class="method-row inherited alt expandable">\r
1921         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1922         <td class="sig">\r
1923         <a id="Ext.DataView-setPosition"></a>\r
1924             <b>setPosition</b>(&nbsp;<code>Number left</code>, <code>Number top</code>&nbsp;) : Ext.BoxComponent            <div class="mdesc">\r
1925                         <div class="short">Sets the left and top of the component.  To set the page XY position instead, use setPagePosition.
1926 This method fires ...</div>\r
1927             <div class="long">\r
1928                 Sets the left and top of the component.  To set the page XY position instead, use <a ext:cls="Ext.BoxComponent" ext:member="setPagePosition" href="output/Ext.BoxComponent.html#setPagePosition">setPagePosition</a>.
1929 This method fires the <a ext:cls="Ext.BoxComponent" ext:member="move" href="output/Ext.BoxComponent.html#move">move</a> event.    <div class="mdetail-params">\r
1930         <strong>Parameters:</strong>\r
1931         <ul><li><code>left</code> : Number<div class="sub-desc">The new left</div></li><li><code>top</code> : Number<div class="sub-desc">The new top</div></li>        </ul>\r
1932         <strong>Returns:</strong>\r
1933         <ul>\r
1934             <li><code>Ext.BoxComponent</code><div class="sub-desc">this</div></li>\r
1935         </ul>\r
1936     </div>\r
1937                 </div>\r
1938                         </div>\r
1939         </td>\r
1940         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#setPosition" href="output/Ext.BoxComponent.html#setPosition">BoxComponent</a></td>\r
1941     </tr>\r
1942         <tr class="method-row inherited expandable">\r
1943         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1944         <td class="sig">\r
1945         <a id="Ext.DataView-setSize"></a>\r
1946             <b>setSize</b>(&nbsp;<code>Number/Object width</code>, <code>Number height</code>&nbsp;) : Ext.BoxComponent            <div class="mdesc">\r
1947                         <div class="short">Sets the width and height of the component.  This method fires the resize event.  This method can accept
1948 either width...</div>\r
1949             <div class="long">\r
1950                 Sets the width and height of the component.  This method fires the <a ext:cls="Ext.BoxComponent" ext:member="resize" href="output/Ext.BoxComponent.html#resize">resize</a> event.  This method can accept
1951 either width and height as separate numeric arguments, or you can pass a size object like {width:10, height:20}.    <div class="mdetail-params">\r
1952         <strong>Parameters:</strong>\r
1953         <ul><li><code>width</code> : Number/Object<div class="sub-desc">The new width to set, or a size object in the format {width, height}</div></li><li><code>height</code> : Number<div class="sub-desc">The new height to set (not required if a size object is passed as the first arg)</div></li>        </ul>\r
1954         <strong>Returns:</strong>\r
1955         <ul>\r
1956             <li><code>Ext.BoxComponent</code><div class="sub-desc">this</div></li>\r
1957         </ul>\r
1958     </div>\r
1959                 </div>\r
1960                         </div>\r
1961         </td>\r
1962         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#setSize" href="output/Ext.BoxComponent.html#setSize">BoxComponent</a></td>\r
1963     </tr>\r
1964         <tr class="method-row alt expandable">\r
1965         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1966         <td class="sig">\r
1967         <a id="Ext.DataView-setStore"></a>\r
1968             <b>setStore</b>(&nbsp;<code>Store store</code>&nbsp;) : void            <div class="mdesc">\r
1969                         <div class="short">Changes the data store bound to this view and refreshes it.</div>\r
1970             <div class="long">\r
1971                 Changes the data store bound to this view and refreshes it.    <div class="mdetail-params">\r
1972         <strong>Parameters:</strong>\r
1973         <ul><li><code>store</code> : Store<div class="sub-desc">The store to bind to this view</div></li>        </ul>\r
1974         <strong>Returns:</strong>\r
1975         <ul>\r
1976             <li><code>void</code></li>\r
1977         </ul>\r
1978     </div>\r
1979                 </div>\r
1980                         </div>\r
1981         </td>\r
1982         <td class="msource">DataView</td>\r
1983     </tr>\r
1984         <tr class="method-row inherited expandable">\r
1985         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1986         <td class="sig">\r
1987         <a id="Ext.DataView-setVisible"></a>\r
1988             <b>setVisible</b>(&nbsp;<code>Boolean visible</code>&nbsp;) : Ext.Component            <div class="mdesc">\r
1989                         <div class="short">Convenience function to hide or show this component by boolean.</div>\r
1990             <div class="long">\r
1991                 Convenience function to hide or show this component by boolean.    <div class="mdetail-params">\r
1992         <strong>Parameters:</strong>\r
1993         <ul><li><code>visible</code> : Boolean<div class="sub-desc">True to show, false to hide</div></li>        </ul>\r
1994         <strong>Returns:</strong>\r
1995         <ul>\r
1996             <li><code>Ext.Component</code><div class="sub-desc">this</div></li>\r
1997         </ul>\r
1998     </div>\r
1999                 </div>\r
2000                         </div>\r
2001         </td>\r
2002         <td class="msource"><a ext:cls="Ext.Component" ext:member="#setVisible" href="output/Ext.Component.html#setVisible">Component</a></td>\r
2003     </tr>\r
2004         <tr class="method-row inherited alt expandable">\r
2005         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2006         <td class="sig">\r
2007         <a id="Ext.DataView-setWidth"></a>\r
2008             <b>setWidth</b>(&nbsp;<code>Number width</code>&nbsp;) : Ext.BoxComponent            <div class="mdesc">\r
2009                         <div class="short">Sets the width of the component.  This method fires the <a ext:cls="Ext.BoxComponent" ext:member="resize" href="output/Ext.BoxComponent.html#resize">resize</a> event.</div>\r
2010             <div class="long">\r
2011                 Sets the width of the component.  This method fires the <a ext:cls="Ext.BoxComponent" ext:member="resize" href="output/Ext.BoxComponent.html#resize">resize</a> event.    <div class="mdetail-params">\r
2012         <strong>Parameters:</strong>\r
2013         <ul><li><code>width</code> : Number<div class="sub-desc">The new width to set</div></li>        </ul>\r
2014         <strong>Returns:</strong>\r
2015         <ul>\r
2016             <li><code>Ext.BoxComponent</code><div class="sub-desc">this</div></li>\r
2017         </ul>\r
2018     </div>\r
2019                 </div>\r
2020                         </div>\r
2021         </td>\r
2022         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#setWidth" href="output/Ext.BoxComponent.html#setWidth">BoxComponent</a></td>\r
2023     </tr>\r
2024         <tr class="method-row inherited expandable">\r
2025         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2026         <td class="sig">\r
2027         <a id="Ext.DataView-show"></a>\r
2028             <b>show</b>() : Ext.Component            <div class="mdesc">\r
2029                         <div class="short">Show this component.</div>\r
2030             <div class="long">\r
2031                 Show this component.    <div class="mdetail-params">\r
2032         <strong>Parameters:</strong>\r
2033         <ul><li>None.</li>        </ul>\r
2034         <strong>Returns:</strong>\r
2035         <ul>\r
2036             <li><code>Ext.Component</code><div class="sub-desc">this</div></li>\r
2037         </ul>\r
2038     </div>\r
2039                 </div>\r
2040                         </div>\r
2041         </td>\r
2042         <td class="msource"><a ext:cls="Ext.Component" ext:member="#show" href="output/Ext.Component.html#show">Component</a></td>\r
2043     </tr>\r
2044         <tr class="method-row inherited alt expandable">\r
2045         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2046         <td class="sig">\r
2047         <a id="Ext.DataView-suspendEvents"></a>\r
2048             <b>suspendEvents</b>() : void            <div class="mdesc">\r
2049                         <div class="short">Suspend the firing of all events. (see <a ext:cls="Ext.util.Observable" ext:member="resumeEvents" href="output/Ext.util.Observable.html#resumeEvents">resumeEvents</a>)</div>\r
2050             <div class="long">\r
2051                 Suspend the firing of all events. (see <a ext:cls="Ext.util.Observable" ext:member="resumeEvents" href="output/Ext.util.Observable.html#resumeEvents">resumeEvents</a>)    <div class="mdetail-params">\r
2052         <strong>Parameters:</strong>\r
2053         <ul><li>None.</li>        </ul>\r
2054         <strong>Returns:</strong>\r
2055         <ul>\r
2056             <li><code>void</code></li>\r
2057         </ul>\r
2058     </div>\r
2059                 </div>\r
2060                         </div>\r
2061         </td>\r
2062         <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#suspendEvents" href="output/Ext.util.Observable.html#suspendEvents">Observable</a></td>\r
2063     </tr>\r
2064         <tr class="method-row inherited expandable">\r
2065         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2066         <td class="sig">\r
2067         <a id="Ext.DataView-syncSize"></a>\r
2068             <b>syncSize</b>() : Ext.BoxComponent            <div class="mdesc">\r
2069                         <div class="short">Force the component's size to recalculate based on the underlying element's current height and width.</div>\r
2070             <div class="long">\r
2071                 Force the component's size to recalculate based on the underlying element's current height and width.    <div class="mdetail-params">\r
2072         <strong>Parameters:</strong>\r
2073         <ul><li>None.</li>        </ul>\r
2074         <strong>Returns:</strong>\r
2075         <ul>\r
2076             <li><code>Ext.BoxComponent</code><div class="sub-desc">this</div></li>\r
2077         </ul>\r
2078     </div>\r
2079                 </div>\r
2080                         </div>\r
2081         </td>\r
2082         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#syncSize" href="output/Ext.BoxComponent.html#syncSize">BoxComponent</a></td>\r
2083     </tr>\r
2084         <tr class="method-row inherited alt expandable">\r
2085         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2086         <td class="sig">\r
2087         <a id="Ext.DataView-un"></a>\r
2088             <b>un</b>(&nbsp;<code>String eventName</code>, <code>Function handler</code>, <span class="optional" title="Optional">[<code>Object scope</code>]</span>&nbsp;) : void            <div class="mdesc">\r
2089                         <div class="short">Removes a listener (shorthand for removeListener)</div>\r
2090             <div class="long">\r
2091                 Removes a listener (shorthand for removeListener)    <div class="mdetail-params">\r
2092         <strong>Parameters:</strong>\r
2093         <ul><li><code>eventName</code> : String<div class="sub-desc">The type of event to listen for</div></li><li><code>handler</code> : Function<div class="sub-desc">The handler to remove</div></li><li><code>scope</code> : Object<div class="sub-desc">(optional) The scope (this object) for the handler</div></li>        </ul>\r
2094         <strong>Returns:</strong>\r
2095         <ul>\r
2096             <li><code>void</code></li>\r
2097         </ul>\r
2098     </div>\r
2099                 </div>\r
2100                         </div>\r
2101         </td>\r
2102         <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#un" href="output/Ext.util.Observable.html#un">Observable</a></td>\r
2103     </tr>\r
2104         <tr class="method-row inherited expandable">\r
2105         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2106         <td class="sig">\r
2107         <a id="Ext.DataView-updateBox"></a>\r
2108             <b>updateBox</b>(&nbsp;<code>Object box</code>&nbsp;) : Ext.BoxComponent            <div class="mdesc">\r
2109                         <div class="short">Sets the current box measurements of the component's underlying element.</div>\r
2110             <div class="long">\r
2111                 Sets the current box measurements of the component's underlying element.    <div class="mdetail-params">\r
2112         <strong>Parameters:</strong>\r
2113         <ul><li><code>box</code> : Object<div class="sub-desc">An object in the format {x, y, width, height}</div></li>        </ul>\r
2114         <strong>Returns:</strong>\r
2115         <ul>\r
2116             <li><code>Ext.BoxComponent</code><div class="sub-desc">this</div></li>\r
2117         </ul>\r
2118     </div>\r
2119                 </div>\r
2120                         </div>\r
2121         </td>\r
2122         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#updateBox" href="output/Ext.BoxComponent.html#updateBox">BoxComponent</a></td>\r
2123     </tr>\r
2124             </table>
2125                 <a id="Ext.DataView-events"></a>
2126         <h2>Public Events</h2>
2127                 <table cellspacing="0" class="member-table">
2128             <tr>
2129                 <th class="sig-header" colspan="2">Event</th>
2130                 <th class="msource-header">Defined By</th>
2131             </tr>
2132                 <tr class="event-row expandable">\r
2133         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2134         <td class="sig">\r
2135         <a id="Ext.DataView-beforeclick"></a>\r
2136             <b>beforeclick</b> : (&nbsp;<code>Ext.DataView this</code>, <code>Number index</code>, <code>HTMLElement node</code>, <code>Ext.EventObject e</code>&nbsp;)            <div class="mdesc">\r
2137                         <div class="short">Fires before a click is processed. Returns false to cancel the default action.</div>\r
2138             <div class="long">\r
2139                 Fires before a click is processed. Returns false to cancel the default action.    <div class="mdetail-params">\r
2140         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
2141         <ul><li><code>this</code> : Ext.DataView<div class="sub-desc"></div></li><li><code>index</code> : Number<div class="sub-desc">The index of the target node</div></li><li><code>node</code> : HTMLElement<div class="sub-desc">The target node</div></li><li><code>e</code> : Ext.EventObject<div class="sub-desc">The raw event object</div></li>        </ul>\r
2142     </div>\r
2143                 </div>\r
2144                         </div>\r
2145         </td>\r
2146         <td class="msource">DataView</td>\r
2147     </tr>\r
2148         <tr class="event-row inherited alt expandable">\r
2149         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2150         <td class="sig">\r
2151         <a id="Ext.DataView-beforedestroy"></a>\r
2152             <b>beforedestroy</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">\r
2153                         <div class="short">Fires before the component is destroyed. Return false to stop the destroy.</div>\r
2154             <div class="long">\r
2155                 Fires before the component is destroyed. Return false to stop the destroy.    <div class="mdetail-params">\r
2156         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
2157         <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>\r
2158     </div>\r
2159                 </div>\r
2160                         </div>\r
2161         </td>\r
2162         <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-beforedestroy" href="output/Ext.Component.html#event-beforedestroy">Component</a></td>\r
2163     </tr>\r
2164         <tr class="event-row inherited expandable">\r
2165         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2166         <td class="sig">\r
2167         <a id="Ext.DataView-beforehide"></a>\r
2168             <b>beforehide</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">\r
2169                         <div class="short">Fires before the component is hidden. Return false to stop the hide.</div>\r
2170             <div class="long">\r
2171                 Fires before the component is hidden. Return false to stop the hide.    <div class="mdetail-params">\r
2172         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
2173         <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>\r
2174     </div>\r
2175                 </div>\r
2176                         </div>\r
2177         </td>\r
2178         <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-beforehide" href="output/Ext.Component.html#event-beforehide">Component</a></td>\r
2179     </tr>\r
2180         <tr class="event-row inherited alt expandable">\r
2181         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2182         <td class="sig">\r
2183         <a id="Ext.DataView-beforerender"></a>\r
2184             <b>beforerender</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">\r
2185                         <div class="short">Fires before the component is rendered. Return false to stop the render.</div>\r
2186             <div class="long">\r
2187                 Fires before the component is rendered. Return false to stop the render.    <div class="mdetail-params">\r
2188         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
2189         <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>\r
2190     </div>\r
2191                 </div>\r
2192                         </div>\r
2193         </td>\r
2194         <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-beforerender" href="output/Ext.Component.html#event-beforerender">Component</a></td>\r
2195     </tr>\r
2196         <tr class="event-row expandable">\r
2197         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2198         <td class="sig">\r
2199         <a id="Ext.DataView-beforeselect"></a>\r
2200             <b>beforeselect</b> : (&nbsp;<code>Ext.DataView this</code>, <code>HTMLElement node</code>, <code>Array selections</code>&nbsp;)            <div class="mdesc">\r
2201                         <div class="short">Fires before a selection is made. If any handlers return false, the selection is cancelled.</div>\r
2202             <div class="long">\r
2203                 Fires before a selection is made. If any handlers return false, the selection is cancelled.    <div class="mdetail-params">\r
2204         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
2205         <ul><li><code>this</code> : Ext.DataView<div class="sub-desc"></div></li><li><code>node</code> : HTMLElement<div class="sub-desc">The node to be selected</div></li><li><code>selections</code> : Array<div class="sub-desc">Array of currently selected nodes</div></li>        </ul>\r
2206     </div>\r
2207                 </div>\r
2208                         </div>\r
2209         </td>\r
2210         <td class="msource">DataView</td>\r
2211     </tr>\r
2212         <tr class="event-row inherited alt expandable">\r
2213         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2214         <td class="sig">\r
2215         <a id="Ext.DataView-beforeshow"></a>\r
2216             <b>beforeshow</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">\r
2217                         <div class="short">Fires before the component is shown. Return false to stop the show.</div>\r
2218             <div class="long">\r
2219                 Fires before the component is shown. Return false to stop the show.    <div class="mdetail-params">\r
2220         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
2221         <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>\r
2222     </div>\r
2223                 </div>\r
2224                         </div>\r
2225         </td>\r
2226         <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-beforeshow" href="output/Ext.Component.html#event-beforeshow">Component</a></td>\r
2227     </tr>\r
2228         <tr class="event-row inherited expandable">\r
2229         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2230         <td class="sig">\r
2231         <a id="Ext.DataView-beforestaterestore"></a>\r
2232             <b>beforestaterestore</b> : (&nbsp;<code>Ext.Component this</code>, <code>Object state</code>&nbsp;)            <div class="mdesc">\r
2233                         <div class="short">Fires before the state of the component is restored. Return false to stop the restore.</div>\r
2234             <div class="long">\r
2235                 Fires before the state of the component is restored. Return false to stop the restore.    <div class="mdetail-params">\r
2236         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
2237         <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li><li><code>state</code> : Object<div class="sub-desc">The hash of state values</div></li>        </ul>\r
2238     </div>\r
2239                 </div>\r
2240                         </div>\r
2241         </td>\r
2242         <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-beforestaterestore" href="output/Ext.Component.html#event-beforestaterestore">Component</a></td>\r
2243     </tr>\r
2244         <tr class="event-row inherited alt expandable">\r
2245         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2246         <td class="sig">\r
2247         <a id="Ext.DataView-beforestatesave"></a>\r
2248             <b>beforestatesave</b> : (&nbsp;<code>Ext.Component this</code>, <code>Object state</code>&nbsp;)            <div class="mdesc">\r
2249                         <div class="short">Fires before the state of the component is saved to the configured state provider. Return false to stop the save.</div>\r
2250             <div class="long">\r
2251                 Fires before the state of the component is saved to the configured state provider. Return false to stop the save.    <div class="mdetail-params">\r
2252         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
2253         <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li><li><code>state</code> : Object<div class="sub-desc">The hash of state values</div></li>        </ul>\r
2254     </div>\r
2255                 </div>\r
2256                         </div>\r
2257         </td>\r
2258         <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-beforestatesave" href="output/Ext.Component.html#event-beforestatesave">Component</a></td>\r
2259     </tr>\r
2260         <tr class="event-row expandable">\r
2261         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2262         <td class="sig">\r
2263         <a id="Ext.DataView-click"></a>\r
2264             <b>click</b> : (&nbsp;<code>Ext.DataView this</code>, <code>Number index</code>, <code>HTMLElement node</code>, <code>Ext.EventObject e</code>&nbsp;)            <div class="mdesc">\r
2265                         <div class="short">Fires when a template node is clicked.</div>\r
2266             <div class="long">\r
2267                 Fires when a template node is clicked.    <div class="mdetail-params">\r
2268         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
2269         <ul><li><code>this</code> : Ext.DataView<div class="sub-desc"></div></li><li><code>index</code> : Number<div class="sub-desc">The index of the target node</div></li><li><code>node</code> : HTMLElement<div class="sub-desc">The target node</div></li><li><code>e</code> : Ext.EventObject<div class="sub-desc">The raw event object</div></li>        </ul>\r
2270     </div>\r
2271                 </div>\r
2272                         </div>\r
2273         </td>\r
2274         <td class="msource">DataView</td>\r
2275     </tr>\r
2276         <tr class="event-row alt expandable">\r
2277         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2278         <td class="sig">\r
2279         <a id="Ext.DataView-containerclick"></a>\r
2280             <b>containerclick</b> : (&nbsp;<code>Ext.DataView this</code>, <code>Ext.EventObject e</code>&nbsp;)            <div class="mdesc">\r
2281                         <div class="short">Fires when a click occurs and it is not on a template node.</div>\r
2282             <div class="long">\r
2283                 Fires when a click occurs and it is not on a template node.    <div class="mdetail-params">\r
2284         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
2285         <ul><li><code>this</code> : Ext.DataView<div class="sub-desc"></div></li><li><code>e</code> : Ext.EventObject<div class="sub-desc">The raw event object</div></li>        </ul>\r
2286     </div>\r
2287                 </div>\r
2288                         </div>\r
2289         </td>\r
2290         <td class="msource">DataView</td>\r
2291     </tr>\r
2292         <tr class="event-row expandable">\r
2293         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2294         <td class="sig">\r
2295         <a id="Ext.DataView-contextmenu"></a>\r
2296             <b>contextmenu</b> : (&nbsp;<code>Ext.DataView this</code>, <code>Number index</code>, <code>HTMLElement node</code>, <code>Ext.EventObject e</code>&nbsp;)            <div class="mdesc">\r
2297                         <div class="short">Fires when a template node is right clicked.</div>\r
2298             <div class="long">\r
2299                 Fires when a template node is right clicked.    <div class="mdetail-params">\r
2300         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
2301         <ul><li><code>this</code> : Ext.DataView<div class="sub-desc"></div></li><li><code>index</code> : Number<div class="sub-desc">The index of the target node</div></li><li><code>node</code> : HTMLElement<div class="sub-desc">The target node</div></li><li><code>e</code> : Ext.EventObject<div class="sub-desc">The raw event object</div></li>        </ul>\r
2302     </div>\r
2303                 </div>\r
2304                         </div>\r
2305         </td>\r
2306         <td class="msource">DataView</td>\r
2307     </tr>\r
2308         <tr class="event-row alt expandable">\r
2309         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2310         <td class="sig">\r
2311         <a id="Ext.DataView-dblclick"></a>\r
2312             <b>dblclick</b> : (&nbsp;<code>Ext.DataView this</code>, <code>Number index</code>, <code>HTMLElement node</code>, <code>Ext.EventObject e</code>&nbsp;)            <div class="mdesc">\r
2313                         <div class="short">Fires when a template node is double clicked.</div>\r
2314             <div class="long">\r
2315                 Fires when a template node is double clicked.    <div class="mdetail-params">\r
2316         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
2317         <ul><li><code>this</code> : Ext.DataView<div class="sub-desc"></div></li><li><code>index</code> : Number<div class="sub-desc">The index of the target node</div></li><li><code>node</code> : HTMLElement<div class="sub-desc">The target node</div></li><li><code>e</code> : Ext.EventObject<div class="sub-desc">The raw event object</div></li>        </ul>\r
2318     </div>\r
2319                 </div>\r
2320                         </div>\r
2321         </td>\r
2322         <td class="msource">DataView</td>\r
2323     </tr>\r
2324         <tr class="event-row inherited expandable">\r
2325         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2326         <td class="sig">\r
2327         <a id="Ext.DataView-destroy"></a>\r
2328             <b>destroy</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">\r
2329                         <div class="short">Fires after the component is destroyed.</div>\r
2330             <div class="long">\r
2331                 Fires after the component is destroyed.    <div class="mdetail-params">\r
2332         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
2333         <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>\r
2334     </div>\r
2335                 </div>\r
2336                         </div>\r
2337         </td>\r
2338         <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-destroy" href="output/Ext.Component.html#event-destroy">Component</a></td>\r
2339     </tr>\r
2340         <tr class="event-row inherited alt expandable">\r
2341         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2342         <td class="sig">\r
2343         <a id="Ext.DataView-disable"></a>\r
2344             <b>disable</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">\r
2345                         <div class="short">Fires after the component is disabled.</div>\r
2346             <div class="long">\r
2347                 Fires after the component is disabled.    <div class="mdetail-params">\r
2348         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
2349         <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>\r
2350     </div>\r
2351                 </div>\r
2352                         </div>\r
2353         </td>\r
2354         <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-disable" href="output/Ext.Component.html#event-disable">Component</a></td>\r
2355     </tr>\r
2356         <tr class="event-row inherited expandable">\r
2357         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2358         <td class="sig">\r
2359         <a id="Ext.DataView-enable"></a>\r
2360             <b>enable</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">\r
2361                         <div class="short">Fires after the component is enabled.</div>\r
2362             <div class="long">\r
2363                 Fires after the component is enabled.    <div class="mdetail-params">\r
2364         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
2365         <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>\r
2366     </div>\r
2367                 </div>\r
2368                         </div>\r
2369         </td>\r
2370         <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-enable" href="output/Ext.Component.html#event-enable">Component</a></td>\r
2371     </tr>\r
2372         <tr class="event-row inherited alt expandable">\r
2373         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2374         <td class="sig">\r
2375         <a id="Ext.DataView-hide"></a>\r
2376             <b>hide</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">\r
2377                         <div class="short">Fires after the component is hidden.</div>\r
2378             <div class="long">\r
2379                 Fires after the component is hidden.    <div class="mdetail-params">\r
2380         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
2381         <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>\r
2382     </div>\r
2383                 </div>\r
2384                         </div>\r
2385         </td>\r
2386         <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-hide" href="output/Ext.Component.html#event-hide">Component</a></td>\r
2387     </tr>\r
2388         <tr class="event-row expandable">\r
2389         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2390         <td class="sig">\r
2391         <a id="Ext.DataView-mouseenter"></a>\r
2392             <b>mouseenter</b> : (&nbsp;<code>Ext.DataView this</code>, <code>Number index</code>, <code>HTMLElement node</code>, <code>Ext.EventObject e</code>&nbsp;)            <div class="mdesc">\r
2393                         <div class="short">Fires when the mouse enters a template node. trackOver:true or an overCls must be set to enable this event.</div>\r
2394             <div class="long">\r
2395                 Fires when the mouse enters a template node. trackOver:true or an overCls must be set to enable this event.    <div class="mdetail-params">\r
2396         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
2397         <ul><li><code>this</code> : Ext.DataView<div class="sub-desc"></div></li><li><code>index</code> : Number<div class="sub-desc">The index of the target node</div></li><li><code>node</code> : HTMLElement<div class="sub-desc">The target node</div></li><li><code>e</code> : Ext.EventObject<div class="sub-desc">The raw event object</div></li>        </ul>\r
2398     </div>\r
2399                 </div>\r
2400                         </div>\r
2401         </td>\r
2402         <td class="msource">DataView</td>\r
2403     </tr>\r
2404         <tr class="event-row alt expandable">\r
2405         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2406         <td class="sig">\r
2407         <a id="Ext.DataView-mouseleave"></a>\r
2408             <b>mouseleave</b> : (&nbsp;<code>Ext.DataView this</code>, <code>Number index</code>, <code>HTMLElement node</code>, <code>Ext.EventObject e</code>&nbsp;)            <div class="mdesc">\r
2409                         <div class="short">Fires when the mouse leaves a template node. trackOver:true or an overCls must be set to enable this event.</div>\r
2410             <div class="long">\r
2411                 Fires when the mouse leaves a template node. trackOver:true or an overCls must be set to enable this event.    <div class="mdetail-params">\r
2412         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
2413         <ul><li><code>this</code> : Ext.DataView<div class="sub-desc"></div></li><li><code>index</code> : Number<div class="sub-desc">The index of the target node</div></li><li><code>node</code> : HTMLElement<div class="sub-desc">The target node</div></li><li><code>e</code> : Ext.EventObject<div class="sub-desc">The raw event object</div></li>        </ul>\r
2414     </div>\r
2415                 </div>\r
2416                         </div>\r
2417         </td>\r
2418         <td class="msource">DataView</td>\r
2419     </tr>\r
2420         <tr class="event-row inherited expandable">\r
2421         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2422         <td class="sig">\r
2423         <a id="Ext.DataView-move"></a>\r
2424             <b>move</b> : (&nbsp;<code>Ext.Component this</code>, <code>Number x</code>, <code>Number y</code>&nbsp;)            <div class="mdesc">\r
2425                         <div class="short">Fires after the component is moved.</div>\r
2426             <div class="long">\r
2427                 Fires after the component is moved.    <div class="mdetail-params">\r
2428         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
2429         <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li><li><code>x</code> : Number<div class="sub-desc">The new x position</div></li><li><code>y</code> : Number<div class="sub-desc">The new y position</div></li>        </ul>\r
2430     </div>\r
2431                 </div>\r
2432                         </div>\r
2433         </td>\r
2434         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#event-move" href="output/Ext.BoxComponent.html#event-move">BoxComponent</a></td>\r
2435     </tr>\r
2436         <tr class="event-row inherited alt expandable">\r
2437         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2438         <td class="sig">\r
2439         <a id="Ext.DataView-render"></a>\r
2440             <b>render</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">\r
2441                         <div class="short">Fires after the component is rendered.</div>\r
2442             <div class="long">\r
2443                 Fires after the component is rendered.    <div class="mdetail-params">\r
2444         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
2445         <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>\r
2446     </div>\r
2447                 </div>\r
2448                         </div>\r
2449         </td>\r
2450         <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-render" href="output/Ext.Component.html#event-render">Component</a></td>\r
2451     </tr>\r
2452         <tr class="event-row inherited expandable">\r
2453         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2454         <td class="sig">\r
2455         <a id="Ext.DataView-resize"></a>\r
2456             <b>resize</b> : (&nbsp;<code>Ext.Component this</code>, <code>Number adjWidth</code>, <code>Number adjHeight</code>, <code>Number rawWidth</code>, <code>Number rawHeight</code>&nbsp;)            <div class="mdesc">\r
2457                         <div class="short">Fires after the component is resized.</div>\r
2458             <div class="long">\r
2459                 Fires after the component is resized.    <div class="mdetail-params">\r
2460         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
2461         <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li><li><code>adjWidth</code> : Number<div class="sub-desc">The box-adjusted width that was set</div></li><li><code>adjHeight</code> : Number<div class="sub-desc">The box-adjusted height that was set</div></li><li><code>rawWidth</code> : Number<div class="sub-desc">The width that was originally specified</div></li><li><code>rawHeight</code> : Number<div class="sub-desc">The height that was originally specified</div></li>        </ul>\r
2462     </div>\r
2463                 </div>\r
2464                         </div>\r
2465         </td>\r
2466         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#event-resize" href="output/Ext.BoxComponent.html#event-resize">BoxComponent</a></td>\r
2467     </tr>\r
2468         <tr class="event-row alt expandable">\r
2469         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2470         <td class="sig">\r
2471         <a id="Ext.DataView-selectionchange"></a>\r
2472             <b>selectionchange</b> : (&nbsp;<code>Ext.DataView this</code>, <code>Array selections</code>&nbsp;)            <div class="mdesc">\r
2473                         <div class="short">Fires when the selected nodes change.</div>\r
2474             <div class="long">\r
2475                 Fires when the selected nodes change.    <div class="mdetail-params">\r
2476         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
2477         <ul><li><code>this</code> : Ext.DataView<div class="sub-desc"></div></li><li><code>selections</code> : Array<div class="sub-desc">Array of the selected nodes</div></li>        </ul>\r
2478     </div>\r
2479                 </div>\r
2480                         </div>\r
2481         </td>\r
2482         <td class="msource">DataView</td>\r
2483     </tr>\r
2484         <tr class="event-row inherited expandable">\r
2485         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2486         <td class="sig">\r
2487         <a id="Ext.DataView-show"></a>\r
2488             <b>show</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">\r
2489                         <div class="short">Fires after the component is shown.</div>\r
2490             <div class="long">\r
2491                 Fires after the component is shown.    <div class="mdetail-params">\r
2492         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
2493         <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>\r
2494     </div>\r
2495                 </div>\r
2496                         </div>\r
2497         </td>\r
2498         <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-show" href="output/Ext.Component.html#event-show">Component</a></td>\r
2499     </tr>\r
2500         <tr class="event-row inherited alt expandable">\r
2501         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2502         <td class="sig">\r
2503         <a id="Ext.DataView-staterestore"></a>\r
2504             <b>staterestore</b> : (&nbsp;<code>Ext.Component this</code>, <code>Object state</code>&nbsp;)            <div class="mdesc">\r
2505                         <div class="short">Fires after the state of the component is restored.</div>\r
2506             <div class="long">\r
2507                 Fires after the state of the component is restored.    <div class="mdetail-params">\r
2508         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
2509         <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li><li><code>state</code> : Object<div class="sub-desc">The hash of state values</div></li>        </ul>\r
2510     </div>\r
2511                 </div>\r
2512                         </div>\r
2513         </td>\r
2514         <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-staterestore" href="output/Ext.Component.html#event-staterestore">Component</a></td>\r
2515     </tr>\r
2516         <tr class="event-row inherited expandable">\r
2517         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2518         <td class="sig">\r
2519         <a id="Ext.DataView-statesave"></a>\r
2520             <b>statesave</b> : (&nbsp;<code>Ext.Component this</code>, <code>Object state</code>&nbsp;)            <div class="mdesc">\r
2521                         <div class="short">Fires after the state of the component is saved to the configured state provider.</div>\r
2522             <div class="long">\r
2523                 Fires after the state of the component is saved to the configured state provider.    <div class="mdetail-params">\r
2524         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
2525         <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li><li><code>state</code> : Object<div class="sub-desc">The hash of state values</div></li>        </ul>\r
2526     </div>\r
2527                 </div>\r
2528                         </div>\r
2529         </td>\r
2530         <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-statesave" href="output/Ext.Component.html#event-statesave">Component</a></td>\r
2531     </tr>\r
2532             </table>
2533         
2534         </div>