source: trunk/web/addons/job_monarch/lib/extjs/docs/output/Ext.DataView.html @ 619

Last change on this file since 619 was 619, checked in by ramonb, 15 years ago

lib/:

  • added new AJAX dependancies: ExtJS, pChart, Lightbox2
File size: 158.8 KB
Line 
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            *
23A 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>
24as 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>
25so that as the data in the store changes the view is automatically updated to reflect the changes.  The view also
26provides built-in behavior for many common events that can occur for its contained items including click, doubleclick,
27mouseover, 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>
28config 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});
39store.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});
69panel.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">
80        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
81        <td class="sig">
82        <a id="Ext.DataView-allowDomMove"></a>
83            <b>allowDomMove</b> : Boolean            <div class="mdesc">
84                            Whether the component can move the Dom node when rendering (defaults to true).                        </div>
85        </td>
86        <td class="msource"><a ext:cls="Ext.Component" ext:member="#allowDomMove" href="output/Ext.Component.html#allowDomMove">Component</a></td>
87    </tr>
88        <tr class="config-row inherited alt expandable">
89        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
90        <td class="sig">
91        <a id="Ext.DataView-applyTo"></a>
92            <b>applyTo</b> : Mixed            <div class="mdesc">
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>
94            <div class="long">
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>
96                        </div>
97        </td>
98        <td class="msource"><a ext:cls="Ext.Component" ext:member="#applyTo" href="output/Ext.Component.html#applyTo">Component</a></td>
99    </tr>
100        <tr class="config-row inherited expandable">
101        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
102        <td class="sig">
103        <a id="Ext.DataView-autoEl"></a>
104            <b>autoEl</b> : String/Object            <div class="mdesc">
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>
106            <div class="long">
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>
109                        </div>
110        </td>
111        <td class="msource"><a ext:cls="Ext.Component" ext:member="#autoEl" href="output/Ext.Component.html#autoEl">Component</a></td>
112    </tr>
113        <tr class="config-row inherited alt expandable">
114        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
115        <td class="sig">
116        <a id="Ext.DataView-autoHeight"></a>
117            <b>autoHeight</b> : Boolean            <div class="mdesc">
118                        <div class="short">True to use height:'auto', false to use fixed height (defaults to false). Note: Although many components inherit this...</div>
119            <div class="long">
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>
121                        </div>
122        </td>
123        <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#autoHeight" href="output/Ext.BoxComponent.html#autoHeight">BoxComponent</a></td>
124    </tr>
125        <tr class="config-row inherited expandable">
126        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
127        <td class="sig">
128        <a id="Ext.DataView-autoShow"></a>
129            <b>autoShow</b> : Boolean            <div class="mdesc">
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>
131            <div class="long">
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>
133                        </div>
134        </td>
135        <td class="msource"><a ext:cls="Ext.Component" ext:member="#autoShow" href="output/Ext.Component.html#autoShow">Component</a></td>
136    </tr>
137        <tr class="config-row inherited alt expandable">
138        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
139        <td class="sig">
140        <a id="Ext.DataView-autoWidth"></a>
141            <b>autoWidth</b> : Boolean            <div class="mdesc">
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>
143            <div class="long">
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>
145                        </div>
146        </td>
147        <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#autoWidth" href="output/Ext.BoxComponent.html#autoWidth">BoxComponent</a></td>
148    </tr>
149        <tr class="config-row inherited expandable">
150        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
151        <td class="sig">
152        <a id="Ext.DataView-clearCls"></a>
153            <b>clearCls</b> : String            <div class="mdesc">
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>
155            <div class="long">
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>
157                        </div>
158        </td>
159        <td class="msource"><a ext:cls="Ext.Component" ext:member="#clearCls" href="output/Ext.Component.html#clearCls">Component</a></td>
160    </tr>
161        <tr class="config-row inherited alt expandable">
162        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
163        <td class="sig">
164        <a id="Ext.DataView-cls"></a>
165            <b>cls</b> : String            <div class="mdesc">
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>
167            <div class="long">
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>
169                        </div>
170        </td>
171        <td class="msource"><a ext:cls="Ext.Component" ext:member="#cls" href="output/Ext.Component.html#cls">Component</a></td>
172    </tr>
173        <tr class="config-row inherited expandable">
174        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
175        <td class="sig">
176        <a id="Ext.DataView-ctCls"></a>
177            <b>ctCls</b> : String            <div class="mdesc">
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>
179            <div class="long">
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>
181                        </div>
182        </td>
183        <td class="msource"><a ext:cls="Ext.Component" ext:member="#ctCls" href="output/Ext.Component.html#ctCls">Component</a></td>
184    </tr>
185        <tr class="config-row alt">
186        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
187        <td class="sig">
188        <a id="Ext.DataView-deferEmptyText"></a>
189            <b>deferEmptyText</b> : Boolean            <div class="mdesc">
190                            True to defer emptyText being applied until the store's first load                        </div>
191        </td>
192        <td class="msource">DataView</td>
193    </tr>
194        <tr class="config-row inherited">
195        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
196        <td class="sig">
197        <a id="Ext.DataView-disabled"></a>
198            <b>disabled</b> : Boolean            <div class="mdesc">
199                            Render this component disabled (default is false).                        </div>
200        </td>
201        <td class="msource"><a ext:cls="Ext.Component" ext:member="#disabled" href="output/Ext.Component.html#disabled">Component</a></td>
202    </tr>
203        <tr class="config-row inherited alt">
204        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
205        <td class="sig">
206        <a id="Ext.DataView-disabledClass"></a>
207            <b>disabledClass</b> : String            <div class="mdesc">
208                            CSS class added to the component when it is disabled (defaults to "x-item-disabled").                        </div>
209        </td>
210        <td class="msource"><a ext:cls="Ext.Component" ext:member="#disabledClass" href="output/Ext.Component.html#disabledClass">Component</a></td>
211    </tr>
212        <tr class="config-row">
213        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
214        <td class="sig">
215        <a id="Ext.DataView-emptyText"></a>
216            <b>emptyText</b> : String            <div class="mdesc">
217                            The text to display in the view when there is no data to display (defaults to '').                        </div>
218        </td>
219        <td class="msource">DataView</td>
220    </tr>
221        <tr class="config-row inherited alt expandable">
222        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
223        <td class="sig">
224        <a id="Ext.DataView-fieldLabel"></a>
225            <b>fieldLabel</b> : String            <div class="mdesc">
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>
227            <div class="long">
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>
236                        </div>
237        </td>
238        <td class="msource"><a ext:cls="Ext.Component" ext:member="#fieldLabel" href="output/Ext.Component.html#fieldLabel">Component</a></td>
239    </tr>
240        <tr class="config-row inherited">
241        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
242        <td class="sig">
243        <a id="Ext.DataView-height"></a>
244            <b>height</b> : Number            <div class="mdesc">
245                            The height of this component in pixels (defaults to auto).                        </div>
246        </td>
247        <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#height" href="output/Ext.BoxComponent.html#height">BoxComponent</a></td>
248    </tr>
249        <tr class="config-row inherited alt">
250        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
251        <td class="sig">
252        <a id="Ext.DataView-hidden"></a>
253            <b>hidden</b> : Boolean            <div class="mdesc">
254                            Render this component hidden (default is false).                        </div>
255        </td>
256        <td class="msource"><a ext:cls="Ext.Component" ext:member="#hidden" href="output/Ext.Component.html#hidden">Component</a></td>
257    </tr>
258        <tr class="config-row inherited expandable">
259        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
260        <td class="sig">
261        <a id="Ext.DataView-hideLabel"></a>
262            <b>hideLabel</b> : Boolean            <div class="mdesc">
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>
264            <div class="long">
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>
273                        </div>
274        </td>
275        <td class="msource"><a ext:cls="Ext.Component" ext:member="#hideLabel" href="output/Ext.Component.html#hideLabel">Component</a></td>
276    </tr>
277        <tr class="config-row inherited alt expandable">
278        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
279        <td class="sig">
280        <a id="Ext.DataView-hideMode"></a>
281            <b>hideMode</b> : String            <div class="mdesc">
282                        <div class="short">How this component should be hidden. Supported values are "visibility" (css visibility), "offsets" (negative offset p...</div>
283            <div class="long">
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>
285                        </div>
286        </td>
287        <td class="msource"><a ext:cls="Ext.Component" ext:member="#hideMode" href="output/Ext.Component.html#hideMode">Component</a></td>
288    </tr>
289        <tr class="config-row inherited expandable">
290        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
291        <td class="sig">
292        <a id="Ext.DataView-hideParent"></a>
293            <b>hideParent</b> : Boolean            <div class="mdesc">
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>
295            <div class="long">
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>
297                        </div>
298        </td>
299        <td class="msource"><a ext:cls="Ext.Component" ext:member="#hideParent" href="output/Ext.Component.html#hideParent">Component</a></td>
300    </tr>
301        <tr class="config-row inherited alt expandable">
302        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
303        <td class="sig">
304        <a id="Ext.DataView-id"></a>
305            <b>id</b> : String            <div class="mdesc">
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>
307            <div class="long">
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>
309                        </div>
310        </td>
311        <td class="msource"><a ext:cls="Ext.Component" ext:member="#id" href="output/Ext.Component.html#id">Component</a></td>
312    </tr>
313        <tr class="config-row inherited expandable">
314        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
315        <td class="sig">
316        <a id="Ext.DataView-itemCls"></a>
317            <b>itemCls</b> : String            <div class="mdesc">
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>
319            <div class="long">
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>
337                        </div>
338        </td>
339        <td class="msource"><a ext:cls="Ext.Component" ext:member="#itemCls" href="output/Ext.Component.html#itemCls">Component</a></td>
340    </tr>
341        <tr class="config-row alt expandable">
342        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
343        <td class="sig">
344        <a id="Ext.DataView-itemSelector"></a>
345            <b>itemSelector</b> : String            <div class="mdesc">
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>
347            <div class="long">
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>
349                        </div>
350        </td>
351        <td class="msource">DataView</td>
352    </tr>
353        <tr class="config-row inherited expandable">
354        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
355        <td class="sig">
356        <a id="Ext.DataView-labelSeparator"></a>
357            <b>labelSeparator</b> : String            <div class="mdesc">
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>
359            <div class="long">
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>
369                        </div>
370        </td>
371        <td class="msource"><a ext:cls="Ext.Component" ext:member="#labelSeparator" href="output/Ext.Component.html#labelSeparator">Component</a></td>
372    </tr>
373        <tr class="config-row inherited alt expandable">
374        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
375        <td class="sig">
376        <a id="Ext.DataView-labelStyle"></a>
377            <b>labelStyle</b> : String            <div class="mdesc">
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>
379            <div class="long">
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>
389                        </div>
390        </td>
391        <td class="msource"><a ext:cls="Ext.Component" ext:member="#labelStyle" href="output/Ext.Component.html#labelStyle">Component</a></td>
392    </tr>
393        <tr class="config-row inherited expandable">
394        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
395        <td class="sig">
396        <a id="Ext.DataView-listeners"></a>
397            <b>listeners</b> : Object            <div class="mdesc">
398                        <div class="short">(optional) A config object containing one or more event handlers to be added to this object during initialization. Th...</div>
399            <div class="long">
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>
401                        </div>
402        </td>
403        <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#listeners" href="output/Ext.util.Observable.html#listeners">Observable</a></td>
404    </tr>
405        <tr class="config-row alt expandable">
406        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
407        <td class="sig">
408        <a id="Ext.DataView-loadingText"></a>
409            <b>loadingText</b> : String            <div class="mdesc">
410                        <div class="short">A string to display during data load operations (defaults to undefined). If specified, this text will be displayed in...</div>
411            <div class="long">
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>
413                        </div>
414        </td>
415        <td class="msource">DataView</td>
416    </tr>
417        <tr class="config-row expandable">
418        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
419        <td class="sig">
420        <a id="Ext.DataView-multiSelect"></a>
421            <b>multiSelect</b> : Boolean            <div class="mdesc">
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>
423            <div class="long">
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>
425                        </div>
426        </td>
427        <td class="msource">DataView</td>
428    </tr>
429        <tr class="config-row alt">
430        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
431        <td class="sig">
432        <a id="Ext.DataView-overClass"></a>
433            <b>overClass</b> : String            <div class="mdesc">
434                            A CSS class to apply to each item in the view on mouseover (defaults to undefined).                        </div>
435        </td>
436        <td class="msource">DataView</td>
437    </tr>
438        <tr class="config-row inherited expandable">
439        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
440        <td class="sig">
441        <a id="Ext.DataView-overCls"></a>
442            <b>overCls</b> : String            <div class="mdesc">
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>
444            <div class="long">
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>
446                        </div>
447        </td>
448        <td class="msource"><a ext:cls="Ext.Component" ext:member="#overCls" href="output/Ext.Component.html#overCls">Component</a></td>
449    </tr>
450        <tr class="config-row inherited alt">
451        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
452        <td class="sig">
453        <a id="Ext.DataView-pageX"></a>
454            <b>pageX</b> : Number            <div class="mdesc">
455                            The page level x coordinate for this component if contained within a positioning container.                        </div>
456        </td>
457        <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#pageX" href="output/Ext.BoxComponent.html#pageX">BoxComponent</a></td>
458    </tr>
459        <tr class="config-row inherited">
460        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
461        <td class="sig">
462        <a id="Ext.DataView-pageY"></a>
463            <b>pageY</b> : Number            <div class="mdesc">
464                            The page level y coordinate for this component if contained within a positioning container.                        </div>
465        </td>
466        <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#pageY" href="output/Ext.BoxComponent.html#pageY">BoxComponent</a></td>
467    </tr>
468        <tr class="config-row inherited alt expandable">
469        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
470        <td class="sig">
471        <a id="Ext.DataView-plugins"></a>
472            <b>plugins</b> : Object/Array            <div class="mdesc">
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>
474            <div class="long">
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>
476                        </div>
477        </td>
478        <td class="msource"><a ext:cls="Ext.Component" ext:member="#plugins" href="output/Ext.Component.html#plugins">Component</a></td>
479    </tr>
480        <tr class="config-row inherited expandable">
481        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
482        <td class="sig">
483        <a id="Ext.DataView-renderTo"></a>
484            <b>renderTo</b> : Mixed            <div class="mdesc">
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>
486            <div class="long">
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>
488                        </div>
489        </td>
490        <td class="msource"><a ext:cls="Ext.Component" ext:member="#renderTo" href="output/Ext.Component.html#renderTo">Component</a></td>
491    </tr>
492        <tr class="config-row alt">
493        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
494        <td class="sig">
495        <a id="Ext.DataView-selectedClass"></a>
496            <b>selectedClass</b> : String            <div class="mdesc">
497                            A CSS class to apply to each selected item in the view (defaults to 'x-view-selected').                        </div>
498        </td>
499        <td class="msource">DataView</td>
500    </tr>
501        <tr class="config-row expandable">
502        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
503        <td class="sig">
504        <a id="Ext.DataView-simpleSelect"></a>
505            <b>simpleSelect</b> : Boolean            <div class="mdesc">
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>
507            <div class="long">
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>
509                        </div>
510        </td>
511        <td class="msource">DataView</td>
512    </tr>
513        <tr class="config-row alt expandable">
514        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
515        <td class="sig">
516        <a id="Ext.DataView-singleSelect"></a>
517            <b>singleSelect</b> : Boolean            <div class="mdesc">
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>
519            <div class="long">
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>
521                        </div>
522        </td>
523        <td class="msource">DataView</td>
524    </tr>
525        <tr class="config-row inherited expandable">
526        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
527        <td class="sig">
528        <a id="Ext.DataView-stateEvents"></a>
529            <b>stateEvents</b> : Array            <div class="mdesc">
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>
531            <div class="long">
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>
533                        </div>
534        </td>
535        <td class="msource"><a ext:cls="Ext.Component" ext:member="#stateEvents" href="output/Ext.Component.html#stateEvents">Component</a></td>
536    </tr>
537        <tr class="config-row inherited alt expandable">
538        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
539        <td class="sig">
540        <a id="Ext.DataView-stateId"></a>
541            <b>stateId</b> : String            <div class="mdesc">
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>
543            <div class="long">
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>
545                        </div>
546        </td>
547        <td class="msource"><a ext:cls="Ext.Component" ext:member="#stateId" href="output/Ext.Component.html#stateId">Component</a></td>
548    </tr>
549        <tr class="config-row inherited expandable">
550        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
551        <td class="sig">
552        <a id="Ext.DataView-stateful"></a>
553            <b>stateful</b> : Boolean            <div class="mdesc">
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>
555            <div class="long">
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>
557                        </div>
558        </td>
559        <td class="msource"><a ext:cls="Ext.Component" ext:member="#stateful" href="output/Ext.Component.html#stateful">Component</a></td>
560    </tr>
561        <tr class="config-row alt">
562        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
563        <td class="sig">
564        <a id="Ext.DataView-store"></a>
565            <b>store</b> : Ext.data.Store            <div class="mdesc">
566                            The <a ext:cls="Ext.data.Store" href="output/Ext.data.Store.html">Ext.data.Store</a> to bind this DataView to.                        </div>
567        </td>
568        <td class="msource">DataView</td>
569    </tr>
570        <tr class="config-row inherited expandable">
571        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
572        <td class="sig">
573        <a id="Ext.DataView-style"></a>
574            <b>style</b> : String            <div class="mdesc">
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>
576            <div class="long">
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>
578                        </div>
579        </td>
580        <td class="msource"><a ext:cls="Ext.Component" ext:member="#style" href="output/Ext.Component.html#style">Component</a></td>
581    </tr>
582        <tr class="config-row alt expandable">
583        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
584        <td class="sig">
585        <a id="Ext.DataView-tpl"></a>
586            <b>tpl</b> : String/Array            <div class="mdesc">
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>
588            <div class="long">
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>
590                        </div>
591        </td>
592        <td class="msource">DataView</td>
593    </tr>
594        <tr class="config-row">
595        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
596        <td class="sig">
597        <a id="Ext.DataView-trackOver"></a>
598            <b>trackOver</b> : Boolean            <div class="mdesc">
599                            True to enable mouseenter and mouseleave events                        </div>
600        </td>
601        <td class="msource">DataView</td>
602    </tr>
603        <tr class="config-row inherited alt">
604        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
605        <td class="sig">
606        <a id="Ext.DataView-width"></a>
607            <b>width</b> : Number            <div class="mdesc">
608                            The width of this component in pixels (defaults to auto).                        </div>
609        </td>
610        <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#width" href="output/Ext.BoxComponent.html#width">BoxComponent</a></td>
611    </tr>
612        <tr class="config-row inherited">
613        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
614        <td class="sig">
615        <a id="Ext.DataView-x"></a>
616            <b>x</b> : Number            <div class="mdesc">
617                            The local x (left) coordinate for this component if contained within a positioning container.                        </div>
618        </td>
619        <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#x" href="output/Ext.BoxComponent.html#x">BoxComponent</a></td>
620    </tr>
621        <tr class="config-row inherited alt expandable">
622        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
623        <td class="sig">
624        <a id="Ext.DataView-xtype"></a>
625            <b>xtype</b> : String            <div class="mdesc">
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>
627            <div class="long">
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>
629                        </div>
630        </td>
631        <td class="msource"><a ext:cls="Ext.Component" ext:member="#xtype" href="output/Ext.Component.html#xtype">Component</a></td>
632    </tr>
633        <tr class="config-row inherited">
634        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
635        <td class="sig">
636        <a id="Ext.DataView-y"></a>
637            <b>y</b> : Number            <div class="mdesc">
638                            The local y (top) coordinate for this component if contained within a positioning container.                        </div>
639        </td>
640        <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#y" href="output/Ext.BoxComponent.html#y">BoxComponent</a></td>
641    </tr>
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">
651        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
652        <td class="sig">
653        <a id="Ext.DataView-disabled"></a>
654            <b>disabled</b> : Boolean            <div class="mdesc">
655                            True if this component is disabled. Read-only.                        </div>
656        </td>
657        <td class="msource"><a ext:cls="Ext.Component" ext:member="#disabled" href="output/Ext.Component.html#disabled">Component</a></td>
658    </tr>
659        <tr class="property-row inherited alt">
660        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
661        <td class="sig">
662        <a id="Ext.DataView-hidden"></a>
663            <b>hidden</b> : Boolean            <div class="mdesc">
664                           
665True if this component is hidden. Read-only.                        </div>
666        </td>
667        <td class="msource"><a ext:cls="Ext.Component" ext:member="#hidden" href="output/Ext.Component.html#hidden">Component</a></td>
668    </tr>
669        <tr class="property-row inherited">
670        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
671        <td class="sig">
672        <a id="Ext.DataView-initialConfig"></a>
673            <b>initialConfig</b> : Object            <div class="mdesc">
674                            This Component's initial configuration specification. Read-only.                        </div>
675        </td>
676        <td class="msource"><a ext:cls="Ext.Component" ext:member="#initialConfig" href="output/Ext.Component.html#initialConfig">Component</a></td>
677    </tr>
678        <tr class="property-row inherited alt expandable">
679        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
680        <td class="sig">
681        <a id="Ext.DataView-ownerCt"></a>
682            <b>ownerCt</b> : Ext.Container            <div class="mdesc">
683                        <div class="short">The component's owner Ext.Container (defaults to undefined, and is set automatically when
684the component is added to a...</div>
685            <div class="long">
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
687the component is added to a container).  Read-only.            </div>
688                        </div>
689        </td>
690        <td class="msource"><a ext:cls="Ext.Component" ext:member="#ownerCt" href="output/Ext.Component.html#ownerCt">Component</a></td>
691    </tr>
692        <tr class="property-row inherited">
693        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
694        <td class="sig">
695        <a id="Ext.DataView-rendered"></a>
696            <b>rendered</b> : Boolean            <div class="mdesc">
697                            True if this component has been rendered. Read-only.                        </div>
698        </td>
699        <td class="msource"><a ext:cls="Ext.Component" ext:member="#rendered" href="output/Ext.Component.html#rendered">Component</a></td>
700    </tr>
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">
710        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
711        <td class="sig">
712        <a id="Ext.DataView-DataView"></a>
713            <b>DataView</b>(&nbsp;<code>Object config</code>&nbsp;)            <div class="mdesc">
714                        <div class="short">Create a new DataView</div>
715            <div class="long">
716                Create a new DataView    <div class="mdetail-params">
717        <strong>Parameters:</strong>
718        <ul><li><code>config</code> : Object<div class="sub-desc">The config object</div></li>        </ul>
719        <strong>Returns:</strong>
720        <ul>
721            <li><code></code></li>
722        </ul>
723    </div>
724                </div>
725                        </div>
726        </td>
727        <td class="msource">DataView</td>
728    </tr>
729        <tr class="method-row inherited alt expandable">
730        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
731        <td class="sig">
732        <a id="Ext.DataView-addClass"></a>
733            <b>addClass</b>(&nbsp;<code>string cls</code>&nbsp;) : void            <div class="mdesc">
734                        <div class="short">Adds a CSS class to the component's underlying element.</div>
735            <div class="long">
736                Adds a CSS class to the component's underlying element.    <div class="mdetail-params">
737        <strong>Parameters:</strong>
738        <ul><li><code>cls</code> : string<div class="sub-desc">The CSS class name to add</div></li>        </ul>
739        <strong>Returns:</strong>
740        <ul>
741            <li><code>void</code></li>
742        </ul>
743    </div>
744                </div>
745                        </div>
746        </td>
747        <td class="msource"><a ext:cls="Ext.Component" ext:member="#addClass" href="output/Ext.Component.html#addClass">Component</a></td>
748    </tr>
749        <tr class="method-row inherited expandable">
750        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
751        <td class="sig">
752        <a id="Ext.DataView-addEvents"></a>
753            <b>addEvents</b>(&nbsp;<code>Object object</code>&nbsp;) : void            <div class="mdesc">
754                        <div class="short">Used to define events on this Observable</div>
755            <div class="long">
756                Used to define events on this Observable    <div class="mdetail-params">
757        <strong>Parameters:</strong>
758        <ul><li><code>object</code> : Object<div class="sub-desc">The object with the events defined</div></li>        </ul>
759        <strong>Returns:</strong>
760        <ul>
761            <li><code>void</code></li>
762        </ul>
763    </div>
764                </div>
765                        </div>
766        </td>
767        <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#addEvents" href="output/Ext.util.Observable.html#addEvents">Observable</a></td>
768    </tr>
769        <tr class="method-row inherited alt expandable">
770        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
771        <td class="sig">
772        <a id="Ext.DataView-addListener"></a>
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">
774                        <div class="short">Appends an event handler to this component</div>
775            <div class="long">
776                Appends an event handler to this component    <div class="mdetail-params">
777        <strong>Parameters:</strong>
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
779function. The handler function's "this" context.</div></li><li><code>options</code> : Object<div class="sub-desc">(optional) An object containing handler configuration
780properties. 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
785by the specified number of milliseconds. If the event fires again within that time, the original
786handler 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>
790Using the options argument, it is possible to combine different types of listeners:<br>
791<br>
792A 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>
800The method also allows for a single argument to be passed which is a config object containing properties
801which 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>
819Or 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>
826        <strong>Returns:</strong>
827        <ul>
828            <li><code>void</code></li>
829        </ul>
830    </div>
831                </div>
832                        </div>
833        </td>
834        <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#addListener" href="output/Ext.util.Observable.html#addListener">Observable</a></td>
835    </tr>
836        <tr class="method-row inherited expandable">
837        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
838        <td class="sig">
839        <a id="Ext.DataView-applyToMarkup"></a>
840            <b>applyToMarkup</b>(&nbsp;<code>String/HTMLElement el</code>&nbsp;) : void            <div class="mdesc">
841                        <div class="short">Apply this component to existing markup that is valid. With this function, no call to render() is required.</div>
842            <div class="long">
843                Apply this component to existing markup that is valid. With this function, no call to render() is required.    <div class="mdetail-params">
844        <strong>Parameters:</strong>
845        <ul><li><code>el</code> : String/HTMLElement<div class="sub-desc"></div></li>        </ul>
846        <strong>Returns:</strong>
847        <ul>
848            <li><code>void</code></li>
849        </ul>
850    </div>
851                </div>
852                        </div>
853        </td>
854        <td class="msource"><a ext:cls="Ext.Component" ext:member="#applyToMarkup" href="output/Ext.Component.html#applyToMarkup">Component</a></td>
855    </tr>
856        <tr class="method-row alt expandable">
857        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
858        <td class="sig">
859        <a id="Ext.DataView-clearSelections"></a>
860            <b>clearSelections</b>(&nbsp;<span class="optional" title="Optional">[<code>Boolean suppressEvent</code>]</span>&nbsp;) : void            <div class="mdesc">
861                        <div class="short">Clears all selections.</div>
862            <div class="long">
863                Clears all selections.    <div class="mdetail-params">
864        <strong>Parameters:</strong>
865        <ul><li><code>suppressEvent</code> : Boolean<div class="sub-desc">(optional) True to skip firing of the selectionchange event</div></li>        </ul>
866        <strong>Returns:</strong>
867        <ul>
868            <li><code>void</code></li>
869        </ul>
870    </div>
871                </div>
872                        </div>
873        </td>
874        <td class="msource">DataView</td>
875    </tr>
876        <tr class="method-row inherited expandable">
877        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
878        <td class="sig">
879        <a id="Ext.DataView-cloneConfig"></a>
880            <b>cloneConfig</b>(&nbsp;<code>Object overrides</code>&nbsp;) : Ext.Component            <div class="mdesc">
881                        <div class="short">Clone the current component using the original config values passed into this instance by default.</div>
882            <div class="long">
883                Clone the current component using the original config values passed into this instance by default.    <div class="mdetail-params">
884        <strong>Parameters:</strong>
885        <ul><li><code>overrides</code> : Object<div class="sub-desc">A new config containing any properties to override in the cloned version.
886An id property can be passed on this object, otherwise one will be generated to avoid duplicates.</div></li>        </ul>
887        <strong>Returns:</strong>
888        <ul>
889            <li><code>Ext.Component</code><div class="sub-desc">clone The cloned copy of this component</div></li>
890        </ul>
891    </div>
892                </div>
893                        </div>
894        </td>
895        <td class="msource"><a ext:cls="Ext.Component" ext:member="#cloneConfig" href="output/Ext.Component.html#cloneConfig">Component</a></td>
896    </tr>
897        <tr class="method-row alt expandable">
898        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
899        <td class="sig">
900        <a id="Ext.DataView-collectData"></a>
901            <b>collectData</b>(&nbsp;<code>records {Array}</code>&nbsp;) : Array            <div class="mdesc">
902                        <div class="short">Function which can be overridden which returns the data object passed to this
903DataView's template to render the whole...</div>
904            <div class="long">
905                <p>Function which can be overridden which returns the data object passed to this
906DataView'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
909data object as an Array. However, <i>named</i> properties may be placed into the data object to
910provide non-repeating data such as headings, totals etc.</p>    <div class="mdetail-params">
911        <strong>Parameters:</strong>
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>
913        <strong>Returns:</strong>
914        <ul>
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>
916        </ul>
917    </div>
918                </div>
919                        </div>
920        </td>
921        <td class="msource">DataView</td>
922    </tr>
923        <tr class="method-row expandable">
924        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
925        <td class="sig">
926        <a id="Ext.DataView-deselect"></a>
927            <b>deselect</b>(&nbsp;<code>HTMLElement/Number node</code>&nbsp;) : void            <div class="mdesc">
928                        <div class="short">Deselects a node.</div>
929            <div class="long">
930                Deselects a node.    <div class="mdetail-params">
931        <strong>Parameters:</strong>
932        <ul><li><code>node</code> : HTMLElement/Number<div class="sub-desc">The node to deselect</div></li>        </ul>
933        <strong>Returns:</strong>
934        <ul>
935            <li><code>void</code></li>
936        </ul>
937    </div>
938                </div>
939                        </div>
940        </td>
941        <td class="msource">DataView</td>
942    </tr>
943        <tr class="method-row inherited alt expandable">
944        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
945        <td class="sig">
946        <a id="Ext.DataView-destroy"></a>
947            <b>destroy</b>() : void            <div class="mdesc">
948                        <div class="short">Destroys this component by purging any event listeners, removing the component's element from the DOM,
949removing the c...</div>
950            <div class="long">
951                Destroys this component by purging any event listeners, removing the component's element from the DOM,
952removing 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
954should usually not need to be called directly.    <div class="mdetail-params">
955        <strong>Parameters:</strong>
956        <ul><li>None.</li>        </ul>
957        <strong>Returns:</strong>
958        <ul>
959            <li><code>void</code></li>
960        </ul>
961    </div>
962                </div>
963                        </div>
964        </td>
965        <td class="msource"><a ext:cls="Ext.Component" ext:member="#destroy" href="output/Ext.Component.html#destroy">Component</a></td>
966    </tr>
967        <tr class="method-row inherited expandable">
968        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
969        <td class="sig">
970        <a id="Ext.DataView-disable"></a>
971            <b>disable</b>() : Ext.Component            <div class="mdesc">
972                        <div class="short">Disable this component.</div>
973            <div class="long">
974                Disable this component.    <div class="mdetail-params">
975        <strong>Parameters:</strong>
976        <ul><li>None.</li>        </ul>
977        <strong>Returns:</strong>
978        <ul>
979            <li><code>Ext.Component</code><div class="sub-desc">this</div></li>
980        </ul>
981    </div>
982                </div>
983                        </div>
984        </td>
985        <td class="msource"><a ext:cls="Ext.Component" ext:member="#disable" href="output/Ext.Component.html#disable">Component</a></td>
986    </tr>
987        <tr class="method-row inherited alt expandable">
988        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
989        <td class="sig">
990        <a id="Ext.DataView-enable"></a>
991            <b>enable</b>() : Ext.Component            <div class="mdesc">
992                        <div class="short">Enable this component.</div>
993            <div class="long">
994                Enable this component.    <div class="mdetail-params">
995        <strong>Parameters:</strong>
996        <ul><li>None.</li>        </ul>
997        <strong>Returns:</strong>
998        <ul>
999            <li><code>Ext.Component</code><div class="sub-desc">this</div></li>
1000        </ul>
1001    </div>
1002                </div>
1003                        </div>
1004        </td>
1005        <td class="msource"><a ext:cls="Ext.Component" ext:member="#enable" href="output/Ext.Component.html#enable">Component</a></td>
1006    </tr>
1007        <tr class="method-row expandable">
1008        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1009        <td class="sig">
1010        <a id="Ext.DataView-findItemFromChild"></a>
1011            <b>findItemFromChild</b>(&nbsp;<code>HTMLElement node</code>&nbsp;) : HTMLElement            <div class="mdesc">
1012                        <div class="short">Returns the template node the passed child belongs to, or null if it doesn't belong to one.</div>
1013            <div class="long">
1014                Returns the template node the passed child belongs to, or null if it doesn't belong to one.    <div class="mdetail-params">
1015        <strong>Parameters:</strong>
1016        <ul><li><code>node</code> : HTMLElement<div class="sub-desc"></div></li>        </ul>
1017        <strong>Returns:</strong>
1018        <ul>
1019            <li><code>HTMLElement</code><div class="sub-desc">The template node</div></li>
1020        </ul>
1021    </div>
1022                </div>
1023                        </div>
1024        </td>
1025        <td class="msource">DataView</td>
1026    </tr>
1027        <tr class="method-row inherited alt expandable">
1028        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1029        <td class="sig">
1030        <a id="Ext.DataView-findParentBy"></a>
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">
1032                        <div class="short">Find a container above this component at any level by a custom function. If the passed function returns
1033true, the con...</div>
1034            <div class="long">
1035                Find a container above this component at any level by a custom function. If the passed function returns
1036true, the container will be returned. The passed function is called with the arguments (container, this component).    <div class="mdetail-params">
1037        <strong>Parameters:</strong>
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>
1039        <strong>Returns:</strong>
1040        <ul>
1041            <li><code>Ext.Container</code><div class="sub-desc">The first Container for which the custom function returns true</div></li>
1042        </ul>
1043    </div>
1044                </div>
1045                        </div>
1046        </td>
1047        <td class="msource"><a ext:cls="Ext.Component" ext:member="#findParentBy" href="output/Ext.Component.html#findParentBy">Component</a></td>
1048    </tr>
1049        <tr class="method-row inherited expandable">
1050        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1051        <td class="sig">
1052        <a id="Ext.DataView-findParentByType"></a>
1053            <b>findParentByType</b>(&nbsp;<code>String/Class xtype</code>&nbsp;) : Ext.Container            <div class="mdesc">
1054                        <div class="short">Find a container above this component at any level by xtype or class</div>
1055            <div class="long">
1056                Find a container above this component at any level by xtype or class    <div class="mdetail-params">
1057        <strong>Parameters:</strong>
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>
1059        <strong>Returns:</strong>
1060        <ul>
1061            <li><code>Ext.Container</code><div class="sub-desc">The first Container which matches the given xtype or class</div></li>
1062        </ul>
1063    </div>
1064                </div>
1065                        </div>
1066        </td>
1067        <td class="msource"><a ext:cls="Ext.Component" ext:member="#findParentByType" href="output/Ext.Component.html#findParentByType">Component</a></td>
1068    </tr>
1069        <tr class="method-row inherited alt expandable">
1070        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1071        <td class="sig">
1072        <a id="Ext.DataView-fireEvent"></a>
1073            <b>fireEvent</b>(&nbsp;<code>String eventName</code>, <code>Object... args</code>&nbsp;) : Boolean            <div class="mdesc">
1074                        <div class="short">Fires the specified event with the passed parameters (minus the event name).</div>
1075            <div class="long">
1076                Fires the specified event with the passed parameters (minus the event name).    <div class="mdetail-params">
1077        <strong>Parameters:</strong>
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>
1079        <strong>Returns:</strong>
1080        <ul>
1081            <li><code>Boolean</code><div class="sub-desc">returns false if any of the handlers return false otherwise it returns true</div></li>
1082        </ul>
1083    </div>
1084                </div>
1085                        </div>
1086        </td>
1087        <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#fireEvent" href="output/Ext.util.Observable.html#fireEvent">Observable</a></td>
1088    </tr>
1089        <tr class="method-row inherited expandable">
1090        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1091        <td class="sig">
1092        <a id="Ext.DataView-focus"></a>
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">
1094                        <div class="short">Try to focus this component.</div>
1095            <div class="long">
1096                Try to focus this component.    <div class="mdetail-params">
1097        <strong>Parameters:</strong>
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>
1099        <strong>Returns:</strong>
1100        <ul>
1101            <li><code>Ext.Component</code><div class="sub-desc">this</div></li>
1102        </ul>
1103    </div>
1104                </div>
1105                        </div>
1106        </td>
1107        <td class="msource"><a ext:cls="Ext.Component" ext:member="#focus" href="output/Ext.Component.html#focus">Component</a></td>
1108    </tr>
1109        <tr class="method-row inherited alt expandable">
1110        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1111        <td class="sig">
1112        <a id="Ext.DataView-getBox"></a>
1113            <b>getBox</b>(&nbsp;<span class="optional" title="Optional">[<code>Boolean local</code>]</span>&nbsp;) : Object            <div class="mdesc">
1114                        <div class="short">Gets the current box measurements of the component's underlying element.</div>
1115            <div class="long">
1116                Gets the current box measurements of the component's underlying element.    <div class="mdetail-params">
1117        <strong>Parameters:</strong>
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>
1119        <strong>Returns:</strong>
1120        <ul>
1121            <li><code>Object</code><div class="sub-desc">box An object in the format {x, y, width, height}</div></li>
1122        </ul>
1123    </div>
1124                </div>
1125                        </div>
1126        </td>
1127        <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#getBox" href="output/Ext.BoxComponent.html#getBox">BoxComponent</a></td>
1128    </tr>
1129        <tr class="method-row inherited expandable">
1130        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1131        <td class="sig">
1132        <a id="Ext.DataView-getEl"></a>
1133            <b>getEl</b>() : Ext.Element            <div class="mdesc">
1134                        <div class="short">Returns the underlying <a ext:cls="Ext.Element" href="output/Ext.Element.html">Ext.Element</a>.</div>
1135            <div class="long">
1136                Returns the underlying <a ext:cls="Ext.Element" href="output/Ext.Element.html">Ext.Element</a>.    <div class="mdetail-params">
1137        <strong>Parameters:</strong>
1138        <ul><li>None.</li>        </ul>
1139        <strong>Returns:</strong>
1140        <ul>
1141            <li><code>Ext.Element</code><div class="sub-desc">The element</div></li>
1142        </ul>
1143    </div>
1144                </div>
1145                        </div>
1146        </td>
1147        <td class="msource"><a ext:cls="Ext.Component" ext:member="#getEl" href="output/Ext.Component.html#getEl">Component</a></td>
1148    </tr>
1149        <tr class="method-row inherited alt expandable">
1150        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1151        <td class="sig">
1152        <a id="Ext.DataView-getId"></a>
1153            <b>getId</b>() : String            <div class="mdesc">
1154                        <div class="short">Returns the id of this component.</div>
1155            <div class="long">
1156                Returns the id of this component.    <div class="mdetail-params">
1157        <strong>Parameters:</strong>
1158        <ul><li>None.</li>        </ul>
1159        <strong>Returns:</strong>
1160        <ul>
1161            <li><code>String</code></li>
1162        </ul>
1163    </div>
1164                </div>
1165                        </div>
1166        </td>
1167        <td class="msource"><a ext:cls="Ext.Component" ext:member="#getId" href="output/Ext.Component.html#getId">Component</a></td>
1168    </tr>
1169        <tr class="method-row inherited expandable">
1170        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1171        <td class="sig">
1172        <a id="Ext.DataView-getItemId"></a>
1173            <b>getItemId</b>() : String            <div class="mdesc">
1174                        <div class="short">Returns the item id of this component.</div>
1175            <div class="long">
1176                Returns the item id of this component.    <div class="mdetail-params">
1177        <strong>Parameters:</strong>
1178        <ul><li>None.</li>        </ul>
1179        <strong>Returns:</strong>
1180        <ul>
1181            <li><code>String</code></li>
1182        </ul>
1183    </div>
1184                </div>
1185                        </div>
1186        </td>
1187        <td class="msource"><a ext:cls="Ext.Component" ext:member="#getItemId" href="output/Ext.Component.html#getItemId">Component</a></td>
1188    </tr>
1189        <tr class="method-row alt expandable">
1190        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1191        <td class="sig">
1192        <a id="Ext.DataView-getNode"></a>
1193            <b>getNode</b>(&nbsp;<code>HTMLElement/String/Number nodeInfo</code>&nbsp;) : HTMLElement            <div class="mdesc">
1194                        <div class="short">Gets a template node.</div>
1195            <div class="long">
1196                Gets a template node.    <div class="mdetail-params">
1197        <strong>Parameters:</strong>
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>
1199        <strong>Returns:</strong>
1200        <ul>
1201            <li><code>HTMLElement</code><div class="sub-desc">The node or null if it wasn't found</div></li>
1202        </ul>
1203    </div>
1204                </div>
1205                        </div>
1206        </td>
1207        <td class="msource">DataView</td>
1208    </tr>
1209        <tr class="method-row expandable">
1210        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1211        <td class="sig">
1212        <a id="Ext.DataView-getNodes"></a>
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">
1214                        <div class="short">Gets a range nodes.</div>
1215            <div class="long">
1216                Gets a range nodes.    <div class="mdetail-params">
1217        <strong>Parameters:</strong>
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>
1219        <strong>Returns:</strong>
1220        <ul>
1221            <li><code>Array</code><div class="sub-desc">An array of nodes</div></li>
1222        </ul>
1223    </div>
1224                </div>
1225                        </div>
1226        </td>
1227        <td class="msource">DataView</td>
1228    </tr>
1229        <tr class="method-row inherited alt expandable">
1230        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1231        <td class="sig">
1232        <a id="Ext.DataView-getPosition"></a>
1233            <b>getPosition</b>(&nbsp;<span class="optional" title="Optional">[<code>Boolean local</code>]</span>&nbsp;) : Array            <div class="mdesc">
1234                        <div class="short">Gets the current XY position of the component's underlying element.</div>
1235            <div class="long">
1236                Gets the current XY position of the component's underlying element.    <div class="mdetail-params">
1237        <strong>Parameters:</strong>
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>
1239        <strong>Returns:</strong>
1240        <ul>
1241            <li><code>Array</code><div class="sub-desc">The XY position of the element (e.g., [100, 200])</div></li>
1242        </ul>
1243    </div>
1244                </div>
1245                        </div>
1246        </td>
1247        <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#getPosition" href="output/Ext.BoxComponent.html#getPosition">BoxComponent</a></td>
1248    </tr>
1249        <tr class="method-row expandable">
1250        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1251        <td class="sig">
1252        <a id="Ext.DataView-getRecord"></a>
1253            <b>getRecord</b>(&nbsp;<code>HTMLElement node</code>&nbsp;) : Record            <div class="mdesc">
1254                        <div class="short">Gets a record from a node</div>
1255            <div class="long">
1256                Gets a record from a node    <div class="mdetail-params">
1257        <strong>Parameters:</strong>
1258        <ul><li><code>node</code> : HTMLElement<div class="sub-desc">The node to evaluate</div></li>        </ul>
1259        <strong>Returns:</strong>
1260        <ul>
1261            <li><code>Record</code><div class="sub-desc">record The {@link Ext.data.Record} object</div></li>
1262        </ul>
1263    </div>
1264                </div>
1265                        </div>
1266        </td>
1267        <td class="msource">DataView</td>
1268    </tr>
1269        <tr class="method-row alt expandable">
1270        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1271        <td class="sig">
1272        <a id="Ext.DataView-getRecords"></a>
1273            <b>getRecords</b>(&nbsp;<code>Array nodes</code>&nbsp;) : Array            <div class="mdesc">
1274                        <div class="short">Gets an array of the records from an array of nodes</div>
1275            <div class="long">
1276                Gets an array of the records from an array of nodes    <div class="mdetail-params">
1277        <strong>Parameters:</strong>
1278        <ul><li><code>nodes</code> : Array<div class="sub-desc">The nodes to evaluate</div></li>        </ul>
1279        <strong>Returns:</strong>
1280        <ul>
1281            <li><code>Array</code><div class="sub-desc">records The {@link Ext.data.Record} objects</div></li>
1282        </ul>
1283    </div>
1284                </div>
1285                        </div>
1286        </td>
1287        <td class="msource">DataView</td>
1288    </tr>
1289        <tr class="method-row expandable">
1290        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1291        <td class="sig">
1292        <a id="Ext.DataView-getSelectedIndexes"></a>
1293            <b>getSelectedIndexes</b>() : Array            <div class="mdesc">
1294                        <div class="short">Gets the indexes of the selected nodes.</div>
1295            <div class="long">
1296                Gets the indexes of the selected nodes.    <div class="mdetail-params">
1297        <strong>Parameters:</strong>
1298        <ul><li>None.</li>        </ul>
1299        <strong>Returns:</strong>
1300        <ul>
1301            <li><code>Array</code><div class="sub-desc">An array of numeric indexes</div></li>
1302        </ul>
1303    </div>
1304                </div>
1305                        </div>
1306        </td>
1307        <td class="msource">DataView</td>
1308    </tr>
1309        <tr class="method-row alt expandable">
1310        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1311        <td class="sig">
1312        <a id="Ext.DataView-getSelectedNodes"></a>
1313            <b>getSelectedNodes</b>() : Array            <div class="mdesc">
1314                        <div class="short">Gets the currently selected nodes.</div>
1315            <div class="long">
1316                Gets the currently selected nodes.    <div class="mdetail-params">
1317        <strong>Parameters:</strong>
1318        <ul><li>None.</li>        </ul>
1319        <strong>Returns:</strong>
1320        <ul>
1321            <li><code>Array</code><div class="sub-desc">An array of HTMLElements</div></li>
1322        </ul>
1323    </div>
1324                </div>
1325                        </div>
1326        </td>
1327        <td class="msource">DataView</td>
1328    </tr>
1329        <tr class="method-row expandable">
1330        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1331        <td class="sig">
1332        <a id="Ext.DataView-getSelectedRecords"></a>
1333            <b>getSelectedRecords</b>() : Array            <div class="mdesc">
1334                        <div class="short">Gets an array of the selected records</div>
1335            <div class="long">
1336                Gets an array of the selected records    <div class="mdetail-params">
1337        <strong>Parameters:</strong>
1338        <ul><li>None.</li>        </ul>
1339        <strong>Returns:</strong>
1340        <ul>
1341            <li><code>Array</code><div class="sub-desc">An array of {@link Ext.data.Record} objects</div></li>
1342        </ul>
1343    </div>
1344                </div>
1345                        </div>
1346        </td>
1347        <td class="msource">DataView</td>
1348    </tr>
1349        <tr class="method-row alt expandable">
1350        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1351        <td class="sig">
1352        <a id="Ext.DataView-getSelectionCount"></a>
1353            <b>getSelectionCount</b>() : Number            <div class="mdesc">
1354                        <div class="short">Gets the number of selected nodes.</div>
1355            <div class="long">
1356                Gets the number of selected nodes.    <div class="mdetail-params">
1357        <strong>Parameters:</strong>
1358        <ul><li>None.</li>        </ul>
1359        <strong>Returns:</strong>
1360        <ul>
1361            <li><code>Number</code><div class="sub-desc">The node count</div></li>
1362        </ul>
1363    </div>
1364                </div>
1365                        </div>
1366        </td>
1367        <td class="msource">DataView</td>
1368    </tr>
1369        <tr class="method-row inherited expandable">
1370        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1371        <td class="sig">
1372        <a id="Ext.DataView-getSize"></a>
1373            <b>getSize</b>() : Object            <div class="mdesc">
1374                        <div class="short">Gets the current size of the component's underlying element.</div>
1375            <div class="long">
1376                Gets the current size of the component's underlying element.    <div class="mdetail-params">
1377        <strong>Parameters:</strong>
1378        <ul><li>None.</li>        </ul>
1379        <strong>Returns:</strong>
1380        <ul>
1381            <li><code>Object</code><div class="sub-desc">An object containing the element's size {width: (element width), height: (element height)}</div></li>
1382        </ul>
1383    </div>
1384                </div>
1385                        </div>
1386        </td>
1387        <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#getSize" href="output/Ext.BoxComponent.html#getSize">BoxComponent</a></td>
1388    </tr>
1389        <tr class="method-row alt expandable">
1390        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1391        <td class="sig">
1392        <a id="Ext.DataView-getStore"></a>
1393            <b>getStore</b>() : Ext.data.Store            <div class="mdesc">
1394                        <div class="short">Returns the store associated with this DataView.</div>
1395            <div class="long">
1396                Returns the store associated with this DataView.    <div class="mdetail-params">
1397        <strong>Parameters:</strong>
1398        <ul><li>None.</li>        </ul>
1399        <strong>Returns:</strong>
1400        <ul>
1401            <li><code>Ext.data.Store</code><div class="sub-desc">The store</div></li>
1402        </ul>
1403    </div>
1404                </div>
1405                        </div>
1406        </td>
1407        <td class="msource">DataView</td>
1408    </tr>
1409        <tr class="method-row inherited expandable">
1410        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1411        <td class="sig">
1412        <a id="Ext.DataView-getXType"></a>
1413            <b>getXType</b>() : String            <div class="mdesc">
1414                        <div class="short">Gets the xtype for this component as registered with Ext.ComponentMgr. For a list of all
1415available xtypes, see the Ex...</div>
1416            <div class="long">
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
1418available 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();
1420alert(t.getXType());  // alerts <em>'textfield'</em></code></pre>    <div class="mdetail-params">
1421        <strong>Parameters:</strong>
1422        <ul><li>None.</li>        </ul>
1423        <strong>Returns:</strong>
1424        <ul>
1425            <li><code>String</code><div class="sub-desc">The xtype</div></li>
1426        </ul>
1427    </div>
1428                </div>
1429                        </div>
1430        </td>
1431        <td class="msource"><a ext:cls="Ext.Component" ext:member="#getXType" href="output/Ext.Component.html#getXType">Component</a></td>
1432    </tr>
1433        <tr class="method-row inherited alt expandable">
1434        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1435        <td class="sig">
1436        <a id="Ext.DataView-getXTypes"></a>
1437            <b>getXTypes</b>() : String            <div class="mdesc">
1438                        <div class="short">Returns this Component's xtype hierarchy as a slash-delimited string. For a list of all
1439available xtypes, see the Ext...</div>
1440            <div class="long">
1441                <p>Returns this Component's xtype hierarchy as a slash-delimited string. For a list of all
1442available 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
1444to participate in determination of inherited xtypes.</b></p>
1445<p>Example usage:</p>
1446<pre><code>
1447var t = new Ext.form.TextField();
1448alert(t.getXTypes());  // alerts 'component/box/field/textfield'</pre></code>    <div class="mdetail-params">
1449        <strong>Parameters:</strong>
1450        <ul><li>None.</li>        </ul>
1451        <strong>Returns:</strong>
1452        <ul>
1453            <li><code>String</code><div class="sub-desc">The xtype hierarchy string</div></li>
1454        </ul>
1455    </div>
1456                </div>
1457                        </div>
1458        </td>
1459        <td class="msource"><a ext:cls="Ext.Component" ext:member="#getXTypes" href="output/Ext.Component.html#getXTypes">Component</a></td>
1460    </tr>
1461        <tr class="method-row inherited expandable">
1462        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1463        <td class="sig">
1464        <a id="Ext.DataView-hasListener"></a>
1465            <b>hasListener</b>(&nbsp;<code>String eventName</code>&nbsp;) : Boolean            <div class="mdesc">
1466                        <div class="short">Checks to see if this object has any listeners for a specified event</div>
1467            <div class="long">
1468                Checks to see if this object has any listeners for a specified event    <div class="mdetail-params">
1469        <strong>Parameters:</strong>
1470        <ul><li><code>eventName</code> : String<div class="sub-desc">The name of the event to check for</div></li>        </ul>
1471        <strong>Returns:</strong>
1472        <ul>
1473            <li><code>Boolean</code><div class="sub-desc">True if the event is being listened for, else false</div></li>
1474        </ul>
1475    </div>
1476                </div>
1477                        </div>
1478        </td>
1479        <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#hasListener" href="output/Ext.util.Observable.html#hasListener">Observable</a></td>
1480    </tr>
1481        <tr class="method-row inherited alt expandable">
1482        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1483        <td class="sig">
1484        <a id="Ext.DataView-hide"></a>
1485            <b>hide</b>() : Ext.Component            <div class="mdesc">
1486                        <div class="short">Hide this component.</div>
1487            <div class="long">
1488                Hide this component.    <div class="mdetail-params">
1489        <strong>Parameters:</strong>
1490        <ul><li>None.</li>        </ul>
1491        <strong>Returns:</strong>
1492        <ul>
1493            <li><code>Ext.Component</code><div class="sub-desc">this</div></li>
1494        </ul>
1495    </div>
1496                </div>
1497                        </div>
1498        </td>
1499        <td class="msource"><a ext:cls="Ext.Component" ext:member="#hide" href="output/Ext.Component.html#hide">Component</a></td>
1500    </tr>
1501        <tr class="method-row expandable">
1502        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1503        <td class="sig">
1504        <a id="Ext.DataView-indexOf"></a>
1505            <b>indexOf</b>(&nbsp;<code>HTMLElement/String/Number nodeInfo</code>&nbsp;) : Number            <div class="mdesc">
1506                        <div class="short">Finds the index of the passed node.</div>
1507            <div class="long">
1508                Finds the index of the passed node.    <div class="mdetail-params">
1509        <strong>Parameters:</strong>
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>
1511        <strong>Returns:</strong>
1512        <ul>
1513            <li><code>Number</code><div class="sub-desc">The index of the node or -1</div></li>
1514        </ul>
1515    </div>
1516                </div>
1517                        </div>
1518        </td>
1519        <td class="msource">DataView</td>
1520    </tr>
1521        <tr class="method-row alt expandable">
1522        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1523        <td class="sig">
1524        <a id="Ext.DataView-isSelected"></a>
1525            <b>isSelected</b>(&nbsp;<code>HTMLElement/Number node</code>&nbsp;) : Boolean            <div class="mdesc">
1526                        <div class="short">Returns true if the passed node is selected, else false.</div>
1527            <div class="long">
1528                Returns true if the passed node is selected, else false.    <div class="mdetail-params">
1529        <strong>Parameters:</strong>
1530        <ul><li><code>node</code> : HTMLElement/Number<div class="sub-desc">The node or node index to check</div></li>        </ul>
1531        <strong>Returns:</strong>
1532        <ul>
1533            <li><code>Boolean</code><div class="sub-desc">True if selected, else false</div></li>
1534        </ul>
1535    </div>
1536                </div>
1537                        </div>
1538        </td>
1539        <td class="msource">DataView</td>
1540    </tr>
1541        <tr class="method-row inherited expandable">
1542        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1543        <td class="sig">
1544        <a id="Ext.DataView-isVisible"></a>
1545            <b>isVisible</b>() : void            <div class="mdesc">
1546                        <div class="short">Returns true if this component is visible.</div>
1547            <div class="long">
1548                Returns true if this component is visible.    <div class="mdetail-params">
1549        <strong>Parameters:</strong>
1550        <ul><li>None.</li>        </ul>
1551        <strong>Returns:</strong>
1552        <ul>
1553            <li><code>void</code></li>
1554        </ul>
1555    </div>
1556                </div>
1557                        </div>
1558        </td>
1559        <td class="msource"><a ext:cls="Ext.Component" ext:member="#isVisible" href="output/Ext.Component.html#isVisible">Component</a></td>
1560    </tr>
1561        <tr class="method-row inherited alt expandable">
1562        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1563        <td class="sig">
1564        <a id="Ext.DataView-isXType"></a>
1565            <b>isXType</b>(&nbsp;<code>String xtype</code>, <span class="optional" title="Optional">[<code>Boolean shallow</code>]</span>&nbsp;) : void            <div class="mdesc">
1566                        <div class="short">Tests whether or not this Component is of a specific xtype. This can test whether this Component is descended
1567from th...</div>
1568            <div class="long">
1569                <p>Tests whether or not this Component is of a specific xtype. This can test whether this Component is descended
1570from 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
1572to 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">
1579        <strong>Parameters:</strong>
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
1581the default), or true to check whether this Component is directly of the specified xtype.</div></li>        </ul>
1582        <strong>Returns:</strong>
1583        <ul>
1584            <li><code>void</code></li>
1585        </ul>
1586    </div>
1587                </div>
1588                        </div>
1589        </td>
1590        <td class="msource"><a ext:cls="Ext.Component" ext:member="#isXType" href="output/Ext.Component.html#isXType">Component</a></td>
1591    </tr>
1592        <tr class="method-row inherited expandable">
1593        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1594        <td class="sig">
1595        <a id="Ext.DataView-on"></a>
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">
1597                        <div class="short">Appends an event handler to this element (shorthand for addListener)</div>
1598            <div class="long">
1599                Appends an event handler to this element (shorthand for addListener)    <div class="mdetail-params">
1600        <strong>Parameters:</strong>
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
1602function. The handler function's "this" context.</div></li><li><code>options</code> : Object<div class="sub-desc">(optional)</div></li>        </ul>
1603        <strong>Returns:</strong>
1604        <ul>
1605            <li><code>void</code></li>
1606        </ul>
1607    </div>
1608                </div>
1609                        </div>
1610        </td>
1611        <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#on" href="output/Ext.util.Observable.html#on">Observable</a></td>
1612    </tr>
1613        <tr class="method-row alt expandable">
1614        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1615        <td class="sig">
1616        <a id="Ext.DataView-prepareData"></a>
1617            <b>prepareData</b>(&nbsp;<code>Array/Object data</code>, <code>Number recordIndex</code>, <code>Record record</code>&nbsp;) : Array/Object            <div class="mdesc">
1618                        <div class="short">Function which can be overridden to provide custom formatting for each Record that is used by this
1619DataView's templat...</div>
1620            <div class="long">
1621                Function which can be overridden to provide custom formatting for each Record that is used by this
1622DataView'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">
1623        <strong>Parameters:</strong>
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>
1625        <strong>Returns:</strong>
1626        <ul>
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>
1628        </ul>
1629    </div>
1630                </div>
1631                        </div>
1632        </td>
1633        <td class="msource">DataView</td>
1634    </tr>
1635        <tr class="method-row inherited expandable">
1636        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1637        <td class="sig">
1638        <a id="Ext.DataView-purgeListeners"></a>
1639            <b>purgeListeners</b>() : void            <div class="mdesc">
1640                        <div class="short">Removes all listeners for this object</div>
1641            <div class="long">
1642                Removes all listeners for this object    <div class="mdetail-params">
1643        <strong>Parameters:</strong>
1644        <ul><li>None.</li>        </ul>
1645        <strong>Returns:</strong>
1646        <ul>
1647            <li><code>void</code></li>
1648        </ul>
1649    </div>
1650                </div>
1651                        </div>
1652        </td>
1653        <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#purgeListeners" href="output/Ext.util.Observable.html#purgeListeners">Observable</a></td>
1654    </tr>
1655        <tr class="method-row alt expandable">
1656        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1657        <td class="sig">
1658        <a id="Ext.DataView-refresh"></a>
1659            <b>refresh</b>() : void            <div class="mdesc">
1660                        <div class="short">Refreshes the view by reloading the data from the store and re-rendering the template.</div>
1661            <div class="long">
1662                Refreshes the view by reloading the data from the store and re-rendering the template.    <div class="mdetail-params">
1663        <strong>Parameters:</strong>
1664        <ul><li>None.</li>        </ul>
1665        <strong>Returns:</strong>
1666        <ul>
1667            <li><code>void</code></li>
1668        </ul>
1669    </div>
1670                </div>
1671                        </div>
1672        </td>
1673        <td class="msource">DataView</td>
1674    </tr>
1675        <tr class="method-row expandable">
1676        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1677        <td class="sig">
1678        <a id="Ext.DataView-refreshNode"></a>
1679            <b>refreshNode</b>(&nbsp;<code>Number index</code>&nbsp;) : void            <div class="mdesc">
1680                        <div class="short">Refreshes an individual node's data from the store.</div>
1681            <div class="long">
1682                Refreshes an individual node's data from the store.    <div class="mdetail-params">
1683        <strong>Parameters:</strong>
1684        <ul><li><code>index</code> : Number<div class="sub-desc">The item's data index in the store</div></li>        </ul>
1685        <strong>Returns:</strong>
1686        <ul>
1687            <li><code>void</code></li>
1688        </ul>
1689    </div>
1690                </div>
1691                        </div>
1692        </td>
1693        <td class="msource">DataView</td>
1694    </tr>
1695        <tr class="method-row inherited alt expandable">
1696        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1697        <td class="sig">
1698        <a id="Ext.DataView-relayEvents"></a>
1699            <b>relayEvents</b>(&nbsp;<code>Object o</code>, <code>Array events</code>&nbsp;) : void            <div class="mdesc">
1700                        <div class="short">Relays selected events from the specified Observable as if the events were fired by <tt><b>this</b></tt>.</div>
1701            <div class="long">
1702                Relays selected events from the specified Observable as if the events were fired by <tt><b>this</b></tt>.    <div class="mdetail-params">
1703        <strong>Parameters:</strong>
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>
1705        <strong>Returns:</strong>
1706        <ul>
1707            <li><code>void</code></li>
1708        </ul>
1709    </div>
1710                </div>
1711                        </div>
1712        </td>
1713        <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#relayEvents" href="output/Ext.util.Observable.html#relayEvents">Observable</a></td>
1714    </tr>
1715        <tr class="method-row inherited expandable">
1716        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1717        <td class="sig">
1718        <a id="Ext.DataView-removeClass"></a>
1719            <b>removeClass</b>(&nbsp;<code>string cls</code>&nbsp;) : void            <div class="mdesc">
1720                        <div class="short">Removes a CSS class from the component's underlying element.</div>
1721            <div class="long">
1722                Removes a CSS class from the component's underlying element.    <div class="mdetail-params">
1723        <strong>Parameters:</strong>
1724        <ul><li><code>cls</code> : string<div class="sub-desc">The CSS class name to remove</div></li>        </ul>
1725        <strong>Returns:</strong>
1726        <ul>
1727            <li><code>void</code></li>
1728        </ul>
1729    </div>
1730                </div>
1731                        </div>
1732        </td>
1733        <td class="msource"><a ext:cls="Ext.Component" ext:member="#removeClass" href="output/Ext.Component.html#removeClass">Component</a></td>
1734    </tr>
1735        <tr class="method-row inherited alt expandable">
1736        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1737        <td class="sig">
1738        <a id="Ext.DataView-removeListener"></a>
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">
1740                        <div class="short">Removes a listener</div>
1741            <div class="long">
1742                Removes a listener    <div class="mdetail-params">
1743        <strong>Parameters:</strong>
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>
1745        <strong>Returns:</strong>
1746        <ul>
1747            <li><code>void</code></li>
1748        </ul>
1749    </div>
1750                </div>
1751                        </div>
1752        </td>
1753        <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#removeListener" href="output/Ext.util.Observable.html#removeListener">Observable</a></td>
1754    </tr>
1755        <tr class="method-row inherited expandable">
1756        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1757        <td class="sig">
1758        <a id="Ext.DataView-render"></a>
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">
1760                        <div class="short">Render this Component into the passed HTML element.
1761If you are using a Container object to house this Component, then...</div>
1762            <div class="long">
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
1765do 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
1769include <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
1772the 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
1773unrendered child Components to be rendered. This is required so that you can add multiple
1774child 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
1776of 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.
1777If you expect child items to be sized in response to user interactions, you must
1778configure the Container with a layout manager which creates and manages the type of layout you
1779have 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
1781layout manager is used which does nothing but render child components sequentially into the
1782Container. No sizing or positioning will be performed in this situation.</b></p>    <div class="mdetail-params">
1783        <strong>Parameters:</strong>
1784        <ul><li><code>container</code> : Element/HTMLElement/String<div class="sub-desc">(optional) The element this Component should be
1785rendered 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>
1786which this component will be inserted (defaults to appending to the end of the container)</div></li>        </ul>
1787        <strong>Returns:</strong>
1788        <ul>
1789            <li><code>void</code></li>
1790        </ul>
1791    </div>
1792                </div>
1793                        </div>
1794        </td>
1795        <td class="msource"><a ext:cls="Ext.Component" ext:member="#render" href="output/Ext.Component.html#render">Component</a></td>
1796    </tr>
1797        <tr class="method-row inherited alt expandable">
1798        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1799        <td class="sig">
1800        <a id="Ext.DataView-resumeEvents"></a>
1801            <b>resumeEvents</b>() : void            <div class="mdesc">
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>
1803            <div class="long">
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">
1805        <strong>Parameters:</strong>
1806        <ul><li>None.</li>        </ul>
1807        <strong>Returns:</strong>
1808        <ul>
1809            <li><code>void</code></li>
1810        </ul>
1811    </div>
1812                </div>
1813                        </div>
1814        </td>
1815        <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#resumeEvents" href="output/Ext.util.Observable.html#resumeEvents">Observable</a></td>
1816    </tr>
1817        <tr class="method-row expandable">
1818        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1819        <td class="sig">
1820        <a id="Ext.DataView-select"></a>
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">
1822                        <div class="short">Selects a set of nodes.</div>
1823            <div class="long">
1824                Selects a set of nodes.    <div class="mdetail-params">
1825        <strong>Parameters:</strong>
1826        <ul><li><code>nodeInfo</code> : Array/HTMLElement/String/Number<div class="sub-desc">An HTMLElement template node, index of a template node,
1827id 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>
1828        <strong>Returns:</strong>
1829        <ul>
1830            <li><code>void</code></li>
1831        </ul>
1832    </div>
1833                </div>
1834                        </div>
1835        </td>
1836        <td class="msource">DataView</td>
1837    </tr>
1838        <tr class="method-row alt expandable">
1839        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1840        <td class="sig">
1841        <a id="Ext.DataView-selectRange"></a>
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">
1843                        <div class="short">Selects a range of nodes. All nodes between start and end are selected.</div>
1844            <div class="long">
1845                Selects a range of nodes. All nodes between start and end are selected.    <div class="mdetail-params">
1846        <strong>Parameters:</strong>
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>
1848        <strong>Returns:</strong>
1849        <ul>
1850            <li><code>void</code></li>
1851        </ul>
1852    </div>
1853                </div>
1854                        </div>
1855        </td>
1856        <td class="msource">DataView</td>
1857    </tr>
1858        <tr class="method-row inherited expandable">
1859        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1860        <td class="sig">
1861        <a id="Ext.DataView-setDisabled"></a>
1862            <b>setDisabled</b>(&nbsp;<code>Boolean disabled</code>&nbsp;) : void            <div class="mdesc">
1863                        <div class="short">Convenience function for setting disabled/enabled by boolean.</div>
1864            <div class="long">
1865                Convenience function for setting disabled/enabled by boolean.    <div class="mdetail-params">
1866        <strong>Parameters:</strong>
1867        <ul><li><code>disabled</code> : Boolean<div class="sub-desc"></div></li>        </ul>
1868        <strong>Returns:</strong>
1869        <ul>
1870            <li><code>void</code></li>
1871        </ul>
1872    </div>
1873                </div>
1874                        </div>
1875        </td>
1876        <td class="msource"><a ext:cls="Ext.Component" ext:member="#setDisabled" href="output/Ext.Component.html#setDisabled">Component</a></td>
1877    </tr>
1878        <tr class="method-row inherited alt expandable">
1879        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1880        <td class="sig">
1881        <a id="Ext.DataView-setHeight"></a>
1882            <b>setHeight</b>(&nbsp;<code>Number height</code>&nbsp;) : Ext.BoxComponent            <div class="mdesc">
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>
1884            <div class="long">
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">
1886        <strong>Parameters:</strong>
1887        <ul><li><code>height</code> : Number<div class="sub-desc">The new height to set</div></li>        </ul>
1888        <strong>Returns:</strong>
1889        <ul>
1890            <li><code>Ext.BoxComponent</code><div class="sub-desc">this</div></li>
1891        </ul>
1892    </div>
1893                </div>
1894                        </div>
1895        </td>
1896        <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#setHeight" href="output/Ext.BoxComponent.html#setHeight">BoxComponent</a></td>
1897    </tr>
1898        <tr class="method-row inherited expandable">
1899        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1900        <td class="sig">
1901        <a id="Ext.DataView-setPagePosition"></a>
1902            <b>setPagePosition</b>(&nbsp;<code>Number x</code>, <code>Number y</code>&nbsp;) : Ext.BoxComponent            <div class="mdesc">
1903                        <div class="short">Sets the page XY position of the component.  To set the left and top instead, use setPosition.
1904This method fires the ...</div>
1905            <div class="long">
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>.
1907This method fires the <a ext:cls="Ext.BoxComponent" ext:member="move" href="output/Ext.BoxComponent.html#move">move</a> event.    <div class="mdetail-params">
1908        <strong>Parameters:</strong>
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>
1910        <strong>Returns:</strong>
1911        <ul>
1912            <li><code>Ext.BoxComponent</code><div class="sub-desc">this</div></li>
1913        </ul>
1914    </div>
1915                </div>
1916                        </div>
1917        </td>
1918        <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#setPagePosition" href="output/Ext.BoxComponent.html#setPagePosition">BoxComponent</a></td>
1919    </tr>
1920        <tr class="method-row inherited alt expandable">
1921        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1922        <td class="sig">
1923        <a id="Ext.DataView-setPosition"></a>
1924            <b>setPosition</b>(&nbsp;<code>Number left</code>, <code>Number top</code>&nbsp;) : Ext.BoxComponent            <div class="mdesc">
1925                        <div class="short">Sets the left and top of the component.  To set the page XY position instead, use setPagePosition.
1926This method fires ...</div>
1927            <div class="long">
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>.
1929This method fires the <a ext:cls="Ext.BoxComponent" ext:member="move" href="output/Ext.BoxComponent.html#move">move</a> event.    <div class="mdetail-params">
1930        <strong>Parameters:</strong>
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>
1932        <strong>Returns:</strong>
1933        <ul>
1934            <li><code>Ext.BoxComponent</code><div class="sub-desc">this</div></li>
1935        </ul>
1936    </div>
1937                </div>
1938                        </div>
1939        </td>
1940        <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#setPosition" href="output/Ext.BoxComponent.html#setPosition">BoxComponent</a></td>
1941    </tr>
1942        <tr class="method-row inherited expandable">
1943        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1944        <td class="sig">
1945        <a id="Ext.DataView-setSize"></a>
1946            <b>setSize</b>(&nbsp;<code>Number/Object width</code>, <code>Number height</code>&nbsp;) : Ext.BoxComponent            <div class="mdesc">
1947                        <div class="short">Sets the width and height of the component.  This method fires the resize event.  This method can accept
1948either width...</div>
1949            <div class="long">
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
1951either width and height as separate numeric arguments, or you can pass a size object like {width:10, height:20}.    <div class="mdetail-params">
1952        <strong>Parameters:</strong>
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>
1954        <strong>Returns:</strong>
1955        <ul>
1956            <li><code>Ext.BoxComponent</code><div class="sub-desc">this</div></li>
1957        </ul>
1958    </div>
1959                </div>
1960                        </div>
1961        </td>
1962        <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#setSize" href="output/Ext.BoxComponent.html#setSize">BoxComponent</a></td>
1963    </tr>
1964        <tr class="method-row alt expandable">
1965        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1966        <td class="sig">
1967        <a id="Ext.DataView-setStore"></a>
1968            <b>setStore</b>(&nbsp;<code>Store store</code>&nbsp;) : void            <div class="mdesc">
1969                        <div class="short">Changes the data store bound to this view and refreshes it.</div>
1970            <div class="long">
1971                Changes the data store bound to this view and refreshes it.    <div class="mdetail-params">
1972        <strong>Parameters:</strong>
1973        <ul><li><code>store</code> : Store<div class="sub-desc">The store to bind to this view</div></li>        </ul>
1974        <strong>Returns:</strong>
1975        <ul>
1976            <li><code>void</code></li>
1977        </ul>
1978    </div>
1979                </div>
1980                        </div>
1981        </td>
1982        <td class="msource">DataView</td>
1983    </tr>
1984        <tr class="method-row inherited expandable">
1985        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1986        <td class="sig">
1987        <a id="Ext.DataView-setVisible"></a>
1988            <b>setVisible</b>(&nbsp;<code>Boolean visible</code>&nbsp;) : Ext.Component            <div class="mdesc">
1989                        <div class="short">Convenience function to hide or show this component by boolean.</div>
1990            <div class="long">
1991                Convenience function to hide or show this component by boolean.    <div class="mdetail-params">
1992        <strong>Parameters:</strong>
1993        <ul><li><code>visible</code> : Boolean<div class="sub-desc">True to show, false to hide</div></li>        </ul>
1994        <strong>Returns:</strong>
1995        <ul>
1996            <li><code>Ext.Component</code><div class="sub-desc">this</div></li>
1997        </ul>
1998    </div>
1999                </div>
2000                        </div>
2001        </td>
2002        <td class="msource"><a ext:cls="Ext.Component" ext:member="#setVisible" href="output/Ext.Component.html#setVisible">Component</a></td>
2003    </tr>
2004        <tr class="method-row inherited alt expandable">
2005        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
2006        <td class="sig">
2007        <a id="Ext.DataView-setWidth"></a>
2008            <b>setWidth</b>(&nbsp;<code>Number width</code>&nbsp;) : Ext.BoxComponent            <div class="mdesc">
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>
2010            <div class="long">
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">
2012        <strong>Parameters:</strong>
2013        <ul><li><code>width</code> : Number<div class="sub-desc">The new width to set</div></li>        </ul>
2014        <strong>Returns:</strong>
2015        <ul>
2016            <li><code>Ext.BoxComponent</code><div class="sub-desc">this</div></li>
2017        </ul>
2018    </div>
2019                </div>
2020                        </div>
2021        </td>
2022        <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#setWidth" href="output/Ext.BoxComponent.html#setWidth">BoxComponent</a></td>
2023    </tr>
2024        <tr class="method-row inherited expandable">
2025        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
2026        <td class="sig">
2027        <a id="Ext.DataView-show"></a>
2028            <b>show</b>() : Ext.Component            <div class="mdesc">
2029                        <div class="short">Show this component.</div>
2030            <div class="long">
2031                Show this component.    <div class="mdetail-params">
2032        <strong>Parameters:</strong>
2033        <ul><li>None.</li>        </ul>
2034        <strong>Returns:</strong>
2035        <ul>
2036            <li><code>Ext.Component</code><div class="sub-desc">this</div></li>
2037        </ul>
2038    </div>
2039                </div>
2040                        </div>
2041        </td>
2042        <td class="msource"><a ext:cls="Ext.Component" ext:member="#show" href="output/Ext.Component.html#show">Component</a></td>
2043    </tr>
2044        <tr class="method-row inherited alt expandable">
2045        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
2046        <td class="sig">
2047        <a id="Ext.DataView-suspendEvents"></a>
2048            <b>suspendEvents</b>() : void            <div class="mdesc">
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>
2050            <div class="long">
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">
2052        <strong>Parameters:</strong>
2053        <ul><li>None.</li>        </ul>
2054        <strong>Returns:</strong>
2055        <ul>
2056            <li><code>void</code></li>
2057        </ul>
2058    </div>
2059                </div>
2060                        </div>
2061        </td>
2062        <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#suspendEvents" href="output/Ext.util.Observable.html#suspendEvents">Observable</a></td>
2063    </tr>
2064        <tr class="method-row inherited expandable">
2065        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
2066        <td class="sig">
2067        <a id="Ext.DataView-syncSize"></a>
2068            <b>syncSize</b>() : Ext.BoxComponent            <div class="mdesc">
2069                        <div class="short">Force the component's size to recalculate based on the underlying element's current height and width.</div>
2070            <div class="long">
2071                Force the component's size to recalculate based on the underlying element's current height and width.    <div class="mdetail-params">
2072        <strong>Parameters:</strong>
2073        <ul><li>None.</li>        </ul>
2074        <strong>Returns:</strong>
2075        <ul>
2076            <li><code>Ext.BoxComponent</code><div class="sub-desc">this</div></li>
2077        </ul>
2078    </div>
2079                </div>
2080                        </div>
2081        </td>
2082        <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#syncSize" href="output/Ext.BoxComponent.html#syncSize">BoxComponent</a></td>
2083    </tr>
2084        <tr class="method-row inherited alt expandable">
2085        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
2086        <td class="sig">
2087        <a id="Ext.DataView-un"></a>
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">
2089                        <div class="short">Removes a listener (shorthand for removeListener)</div>
2090            <div class="long">
2091                Removes a listener (shorthand for removeListener)    <div class="mdetail-params">
2092        <strong>Parameters:</strong>
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>
2094        <strong>Returns:</strong>
2095        <ul>
2096            <li><code>void</code></li>
2097        </ul>
2098    </div>
2099                </div>
2100                        </div>
2101        </td>
2102        <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#un" href="output/Ext.util.Observable.html#un">Observable</a></td>
2103    </tr>
2104        <tr class="method-row inherited expandable">
2105        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
2106        <td class="sig">
2107        <a id="Ext.DataView-updateBox"></a>
2108            <b>updateBox</b>(&nbsp;<code>Object box</code>&nbsp;) : Ext.BoxComponent            <div class="mdesc">
2109                        <div class="short">Sets the current box measurements of the component's underlying element.</div>
2110            <div class="long">
2111                Sets the current box measurements of the component's underlying element.    <div class="mdetail-params">
2112        <strong>Parameters:</strong>
2113        <ul><li><code>box</code> : Object<div class="sub-desc">An object in the format {x, y, width, height}</div></li>        </ul>
2114        <strong>Returns:</strong>
2115        <ul>
2116            <li><code>Ext.BoxComponent</code><div class="sub-desc">this</div></li>
2117        </ul>
2118    </div>
2119                </div>
2120                        </div>
2121        </td>
2122        <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#updateBox" href="output/Ext.BoxComponent.html#updateBox">BoxComponent</a></td>
2123    </tr>
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">
2133        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
2134        <td class="sig">
2135        <a id="Ext.DataView-beforeclick"></a>
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">
2137                        <div class="short">Fires before a click is processed. Returns false to cancel the default action.</div>
2138            <div class="long">
2139                Fires before a click is processed. Returns false to cancel the default action.    <div class="mdetail-params">
2140        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
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>
2142    </div>
2143                </div>
2144                        </div>
2145        </td>
2146        <td class="msource">DataView</td>
2147    </tr>
2148        <tr class="event-row inherited alt expandable">
2149        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
2150        <td class="sig">
2151        <a id="Ext.DataView-beforedestroy"></a>
2152            <b>beforedestroy</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">
2153                        <div class="short">Fires before the component is destroyed. Return false to stop the destroy.</div>
2154            <div class="long">
2155                Fires before the component is destroyed. Return false to stop the destroy.    <div class="mdetail-params">
2156        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
2157        <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>
2158    </div>
2159                </div>
2160                        </div>
2161        </td>
2162        <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-beforedestroy" href="output/Ext.Component.html#event-beforedestroy">Component</a></td>
2163    </tr>
2164        <tr class="event-row inherited expandable">
2165        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
2166        <td class="sig">
2167        <a id="Ext.DataView-beforehide"></a>
2168            <b>beforehide</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">
2169                        <div class="short">Fires before the component is hidden. Return false to stop the hide.</div>
2170            <div class="long">
2171                Fires before the component is hidden. Return false to stop the hide.    <div class="mdetail-params">
2172        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
2173        <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>
2174    </div>
2175                </div>
2176                        </div>
2177        </td>
2178        <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-beforehide" href="output/Ext.Component.html#event-beforehide">Component</a></td>
2179    </tr>
2180        <tr class="event-row inherited alt expandable">
2181        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
2182        <td class="sig">
2183        <a id="Ext.DataView-beforerender"></a>
2184            <b>beforerender</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">
2185                        <div class="short">Fires before the component is rendered. Return false to stop the render.</div>
2186            <div class="long">
2187                Fires before the component is rendered. Return false to stop the render.    <div class="mdetail-params">
2188        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
2189        <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>
2190    </div>
2191                </div>
2192                        </div>
2193        </td>
2194        <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-beforerender" href="output/Ext.Component.html#event-beforerender">Component</a></td>
2195    </tr>
2196        <tr class="event-row expandable">
2197        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
2198        <td class="sig">
2199        <a id="Ext.DataView-beforeselect"></a>
2200            <b>beforeselect</b> : (&nbsp;<code>Ext.DataView this</code>, <code>HTMLElement node</code>, <code>Array selections</code>&nbsp;)            <div class="mdesc">
2201                        <div class="short">Fires before a selection is made. If any handlers return false, the selection is cancelled.</div>
2202            <div class="long">
2203                Fires before a selection is made. If any handlers return false, the selection is cancelled.    <div class="mdetail-params">
2204        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
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>
2206    </div>
2207                </div>
2208                        </div>
2209        </td>
2210        <td class="msource">DataView</td>
2211    </tr>
2212        <tr class="event-row inherited alt expandable">
2213        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
2214        <td class="sig">
2215        <a id="Ext.DataView-beforeshow"></a>
2216            <b>beforeshow</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">
2217                        <div class="short">Fires before the component is shown. Return false to stop the show.</div>
2218            <div class="long">
2219                Fires before the component is shown. Return false to stop the show.    <div class="mdetail-params">
2220        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
2221        <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>
2222    </div>
2223                </div>
2224                        </div>
2225        </td>
2226        <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-beforeshow" href="output/Ext.Component.html#event-beforeshow">Component</a></td>
2227    </tr>
2228        <tr class="event-row inherited expandable">
2229        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
2230        <td class="sig">
2231        <a id="Ext.DataView-beforestaterestore"></a>
2232            <b>beforestaterestore</b> : (&nbsp;<code>Ext.Component this</code>, <code>Object state</code>&nbsp;)            <div class="mdesc">
2233                        <div class="short">Fires before the state of the component is restored. Return false to stop the restore.</div>
2234            <div class="long">
2235                Fires before the state of the component is restored. Return false to stop the restore.    <div class="mdetail-params">
2236        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
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>
2238    </div>
2239                </div>
2240                        </div>
2241        </td>
2242        <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-beforestaterestore" href="output/Ext.Component.html#event-beforestaterestore">Component</a></td>
2243    </tr>
2244        <tr class="event-row inherited alt expandable">
2245        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
2246        <td class="sig">
2247        <a id="Ext.DataView-beforestatesave"></a>
2248            <b>beforestatesave</b> : (&nbsp;<code>Ext.Component this</code>, <code>Object state</code>&nbsp;)            <div class="mdesc">
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>
2250            <div class="long">
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">
2252        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
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>
2254    </div>
2255                </div>
2256                        </div>
2257        </td>
2258        <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-beforestatesave" href="output/Ext.Component.html#event-beforestatesave">Component</a></td>
2259    </tr>
2260        <tr class="event-row expandable">
2261        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
2262        <td class="sig">
2263        <a id="Ext.DataView-click"></a>
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">
2265                        <div class="short">Fires when a template node is clicked.</div>
2266            <div class="long">
2267                Fires when a template node is clicked.    <div class="mdetail-params">
2268        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
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>
2270    </div>
2271                </div>
2272                        </div>
2273        </td>
2274        <td class="msource">DataView</td>
2275    </tr>
2276        <tr class="event-row alt expandable">
2277        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
2278        <td class="sig">
2279        <a id="Ext.DataView-containerclick"></a>
2280            <b>containerclick</b> : (&nbsp;<code>Ext.DataView this</code>, <code>Ext.EventObject e</code>&nbsp;)            <div class="mdesc">
2281                        <div class="short">Fires when a click occurs and it is not on a template node.</div>
2282            <div class="long">
2283                Fires when a click occurs and it is not on a template node.    <div class="mdetail-params">
2284        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
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>
2286    </div>
2287                </div>
2288                        </div>
2289        </td>
2290        <td class="msource">DataView</td>
2291    </tr>
2292        <tr class="event-row expandable">
2293        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
2294        <td class="sig">
2295        <a id="Ext.DataView-contextmenu"></a>
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">
2297                        <div class="short">Fires when a template node is right clicked.</div>
2298            <div class="long">
2299                Fires when a template node is right clicked.    <div class="mdetail-params">
2300        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
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>
2302    </div>
2303                </div>
2304                        </div>
2305        </td>
2306        <td class="msource">DataView</td>
2307    </tr>
2308        <tr class="event-row alt expandable">
2309        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
2310        <td class="sig">
2311        <a id="Ext.DataView-dblclick"></a>
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">
2313                        <div class="short">Fires when a template node is double clicked.</div>
2314            <div class="long">
2315                Fires when a template node is double clicked.    <div class="mdetail-params">
2316        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
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>
2318    </div>
2319                </div>
2320                        </div>
2321        </td>
2322        <td class="msource">DataView</td>
2323    </tr>
2324        <tr class="event-row inherited expandable">
2325        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
2326        <td class="sig">
2327        <a id="Ext.DataView-destroy"></a>
2328            <b>destroy</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">
2329                        <div class="short">Fires after the component is destroyed.</div>
2330            <div class="long">
2331                Fires after the component is destroyed.    <div class="mdetail-params">
2332        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
2333        <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>
2334    </div>
2335                </div>
2336                        </div>
2337        </td>
2338        <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-destroy" href="output/Ext.Component.html#event-destroy">Component</a></td>
2339    </tr>
2340        <tr class="event-row inherited alt expandable">
2341        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
2342        <td class="sig">
2343        <a id="Ext.DataView-disable"></a>
2344            <b>disable</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">
2345                        <div class="short">Fires after the component is disabled.</div>
2346            <div class="long">
2347                Fires after the component is disabled.    <div class="mdetail-params">
2348        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
2349        <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>
2350    </div>
2351                </div>
2352                        </div>
2353        </td>
2354        <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-disable" href="output/Ext.Component.html#event-disable">Component</a></td>
2355    </tr>
2356        <tr class="event-row inherited expandable">
2357        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
2358        <td class="sig">
2359        <a id="Ext.DataView-enable"></a>
2360            <b>enable</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">
2361                        <div class="short">Fires after the component is enabled.</div>
2362            <div class="long">
2363                Fires after the component is enabled.    <div class="mdetail-params">
2364        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
2365        <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>
2366    </div>
2367                </div>
2368                        </div>
2369        </td>
2370        <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-enable" href="output/Ext.Component.html#event-enable">Component</a></td>
2371    </tr>
2372        <tr class="event-row inherited alt expandable">
2373        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
2374        <td class="sig">
2375        <a id="Ext.DataView-hide"></a>
2376            <b>hide</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">
2377                        <div class="short">Fires after the component is hidden.</div>
2378            <div class="long">
2379                Fires after the component is hidden.    <div class="mdetail-params">
2380        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
2381        <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>
2382    </div>
2383                </div>
2384                        </div>
2385        </td>
2386        <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-hide" href="output/Ext.Component.html#event-hide">Component</a></td>
2387    </tr>
2388        <tr class="event-row expandable">
2389        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
2390        <td class="sig">
2391        <a id="Ext.DataView-mouseenter"></a>
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">
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>
2394            <div class="long">
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">
2396        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
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>
2398    </div>
2399                </div>
2400                        </div>
2401        </td>
2402        <td class="msource">DataView</td>
2403    </tr>
2404        <tr class="event-row alt expandable">
2405        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
2406        <td class="sig">
2407        <a id="Ext.DataView-mouseleave"></a>
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">
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>
2410            <div class="long">
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">
2412        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
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>
2414    </div>
2415                </div>
2416                        </div>
2417        </td>
2418        <td class="msource">DataView</td>
2419    </tr>
2420        <tr class="event-row inherited expandable">
2421        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
2422        <td class="sig">
2423        <a id="Ext.DataView-move"></a>
2424            <b>move</b> : (&nbsp;<code>Ext.Component this</code>, <code>Number x</code>, <code>Number y</code>&nbsp;)            <div class="mdesc">
2425                        <div class="short">Fires after the component is moved.</div>
2426            <div class="long">
2427                Fires after the component is moved.    <div class="mdetail-params">
2428        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
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>
2430    </div>
2431                </div>
2432                        </div>
2433        </td>
2434        <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#event-move" href="output/Ext.BoxComponent.html#event-move">BoxComponent</a></td>
2435    </tr>
2436        <tr class="event-row inherited alt expandable">
2437        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
2438        <td class="sig">
2439        <a id="Ext.DataView-render"></a>
2440            <b>render</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">
2441                        <div class="short">Fires after the component is rendered.</div>
2442            <div class="long">
2443                Fires after the component is rendered.    <div class="mdetail-params">
2444        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
2445        <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>
2446    </div>
2447                </div>
2448                        </div>
2449        </td>
2450        <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-render" href="output/Ext.Component.html#event-render">Component</a></td>
2451    </tr>
2452        <tr class="event-row inherited expandable">
2453        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
2454        <td class="sig">
2455        <a id="Ext.DataView-resize"></a>
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">
2457                        <div class="short">Fires after the component is resized.</div>
2458            <div class="long">
2459                Fires after the component is resized.    <div class="mdetail-params">
2460        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
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>
2462    </div>
2463                </div>
2464                        </div>
2465        </td>
2466        <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#event-resize" href="output/Ext.BoxComponent.html#event-resize">BoxComponent</a></td>
2467    </tr>
2468        <tr class="event-row alt expandable">
2469        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
2470        <td class="sig">
2471        <a id="Ext.DataView-selectionchange"></a>
2472            <b>selectionchange</b> : (&nbsp;<code>Ext.DataView this</code>, <code>Array selections</code>&nbsp;)            <div class="mdesc">
2473                        <div class="short">Fires when the selected nodes change.</div>
2474            <div class="long">
2475                Fires when the selected nodes change.    <div class="mdetail-params">
2476        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
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>
2478    </div>
2479                </div>
2480                        </div>
2481        </td>
2482        <td class="msource">DataView</td>
2483    </tr>
2484        <tr class="event-row inherited expandable">
2485        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
2486        <td class="sig">
2487        <a id="Ext.DataView-show"></a>
2488            <b>show</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">
2489                        <div class="short">Fires after the component is shown.</div>
2490            <div class="long">
2491                Fires after the component is shown.    <div class="mdetail-params">
2492        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
2493        <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>
2494    </div>
2495                </div>
2496                        </div>
2497        </td>
2498        <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-show" href="output/Ext.Component.html#event-show">Component</a></td>
2499    </tr>
2500        <tr class="event-row inherited alt expandable">
2501        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
2502        <td class="sig">
2503        <a id="Ext.DataView-staterestore"></a>
2504            <b>staterestore</b> : (&nbsp;<code>Ext.Component this</code>, <code>Object state</code>&nbsp;)            <div class="mdesc">
2505                        <div class="short">Fires after the state of the component is restored.</div>
2506            <div class="long">
2507                Fires after the state of the component is restored.    <div class="mdetail-params">
2508        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
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>
2510    </div>
2511                </div>
2512                        </div>
2513        </td>
2514        <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-staterestore" href="output/Ext.Component.html#event-staterestore">Component</a></td>
2515    </tr>
2516        <tr class="event-row inherited expandable">
2517        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
2518        <td class="sig">
2519        <a id="Ext.DataView-statesave"></a>
2520            <b>statesave</b> : (&nbsp;<code>Ext.Component this</code>, <code>Object state</code>&nbsp;)            <div class="mdesc">
2521                        <div class="short">Fires after the state of the component is saved to the configured state provider.</div>
2522            <div class="long">
2523                Fires after the state of the component is saved to the configured state provider.    <div class="mdetail-params">
2524        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
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>
2526    </div>
2527                </div>
2528                        </div>
2529        </td>
2530        <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-statesave" href="output/Ext.Component.html#event-statesave">Component</a></td>
2531    </tr>
2532            </table>
2533       
2534        </div>
Note: See TracBrowser for help on using the repository browser.