commit extjs-2.2.1
[extjs.git] / docs / output / Ext.grid.GridPanel.html
1         <div class="body-wrap">
2         <div class="top-tools">
3             <a class="inner-link" href="#Ext.grid.GridPanel-props"><img src="../resources/images/default/s.gif" class="item-icon icon-prop">Properties</a>
4             <a class="inner-link" href="#Ext.grid.GridPanel-methods"><img src="../resources/images/default/s.gif" class="item-icon icon-method">Methods</a>
5             <a class="inner-link" href="#Ext.grid.GridPanel-events"><img src="../resources/images/default/s.gif" class="item-icon icon-event">Events</a>
6                             <a class="inner-link" href="#Ext.grid.GridPanel-configs"><img src="../resources/images/default/s.gif" class="item-icon icon-config">Config Options</a>
7                         <a class="bookmark" href="../docs/?class=Ext.grid.GridPanel"><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"/><a ext:cls="Ext.Container" ext:member="" href="output/Ext.Container.html">Container</a>
14         <img src="resources/elbow-end.gif"/><a ext:cls="Ext.Panel" ext:member="" href="output/Ext.Panel.html">Panel</a>
15           <img src="resources/elbow-end.gif"/>GridPanel</pre></div>
16                 <h1>Class Ext.grid.GridPanel</h1>
17         <table cellspacing="0">
18             <tr><td class="label">Package:</td><td class="hd-info">Ext.grid</td></tr>
19             <tr><td class="label">Defined In:</td><td class="hd-info"><a href="../src/GridPanel.js" target="_blank">GridPanel.js</a></td></tr>
20             <tr><td class="label">Class:</td><td class="hd-info">GridPanel</td></tr>
21                         <tr><td class="label">Subclasses:</td><td class="hd-info"><a ext:cls="Ext.grid.EditorGridPanel" href="output/Ext.grid.EditorGridPanel.html">EditorGridPanel</a></td></tr>
22                                     <tr><td class="label">Extends:</td><td class="hd-info"><a ext:cls="Ext.Panel" ext:member="" href="output/Ext.Panel.html">Panel</a></td></tr>
23                     </table>
24         <div class="description">
25             *
26 This class represents the primary interface of a component based grid control.
27 <br><br>Usage:
28 <pre><code>var grid = <b>new</b> Ext.grid.GridPanel({
29     store: <b>new</b> Ext.data.Store({
30         reader: reader,
31         data: xg.dummyData
32     }),
33     columns: [
34         {id:<em>'company'</em>, header: <em>"Company"</em>, width: 200, sortable: true, dataIndex: <em>'company'</em>},
35         {header: <em>"Price"</em>, width: 120, sortable: true, renderer: Ext.util.Format.usMoney, dataIndex: <em>'price'</em>},
36         {header: <em>"Change"</em>, width: 120, sortable: true, dataIndex: <em>'change'</em>},
37         {header: <em>"% Change"</em>, width: 120, sortable: true, dataIndex: <em>'pctChange'</em>},
38         {header: <em>"Last Updated"</em>, width: 135, sortable: true, renderer: Ext.util.Format.dateRenderer(<em>'m/d/Y'</em>), dataIndex: <em>'lastChange'</em>}
39     ],
40     viewConfig: {
41         forceFit: true,
42
43 <i>//      Return CSS class to apply to rows depending upon data values</i>
44         getRowClass: <b>function</b>(record, index) {
45             <b>var</b> c = record.get(<em>'change'</em>);
46             <b>if</b> (c < 0) {
47                 <b>return</b> <em>'price-fall'</em>;
48             } <b>else</b> if (c > 0) {
49                 <b>return</b> <em>'price-rise'</em>;
50             }
51         }
52     },
53     sm: <b>new</b> Ext.grid.RowSelectionModel({singleSelect:true}),
54     width:600,
55     height:300,
56     frame:true,
57     title:<em>'Framed <b>with</b> Checkbox Selection and Horizontal Scrolling'</em>,
58     iconCls:<em>'icon-grid'</em>
59 });</code></pre>
60 <b>Notes:</b><ul>
61 <li>Although this class inherits many configuration options from base classes, some of them
62 (such as autoScroll, layout, items, etc) are not used by this class, and will have no effect.</li>
63 <li>A grid <b>requires</b> a width in which to scroll its columns, and a height in which to scroll its rows. The dimensions can either
64 be set through the <a ext:cls="Ext.grid.GridPanel" ext:member="height" href="output/Ext.grid.GridPanel.html#height">height</a> and <a ext:cls="Ext.grid.GridPanel" ext:member="width" href="output/Ext.grid.GridPanel.html#width">width</a> configuration options or automatically set by using the grid in a <a ext:cls="Ext.Container" href="output/Ext.Container.html">Container</a>
65 who's <a ext:cls="Ext.Container" ext:member="layout" href="output/Ext.Container.html#layout">layout</a> provides sizing of its child items.</li>
66 <li>To access the data in a Grid, it is necessary to use the data model encapsulated
67 by the <a ext:cls="Ext.grid.GridPanel" ext:member="store" href="output/Ext.grid.GridPanel.html#store">Store</a>. See the <a ext:cls="Ext.grid.GridPanel" ext:member="cellclick" href="output/Ext.grid.GridPanel.html#cellclick">cellclick</a> event.</li>
68 </ul>        </div>
69         
70         <div class="hr"></div>
71                 <a id="Ext.grid.GridPanel-configs"></a>
72         <h2>Config Options</h2>
73         <table cellspacing="0" class="member-table">
74             <tr>
75                 <th class="sig-header" colspan="2">Config Options</th>
76                 <th class="msource-header">Defined By</th>
77             </tr>
78                 <tr class="config-row expandable">\r
79         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
80         <td class="sig">\r
81         <a id="Ext.grid.GridPanel-<p>enableDragDrop"></a>\r
82             <b><p>enableDragDrop</b> : Boolean            <div class="mdesc">\r
83                         <div class="short">True to enable dragging of the selected rows of the GridPanel. Setting this to true causes this GridPanel's GridView ...</div>\r
84             <div class="long">\r
85                 True to enable dragging of the selected rows of the GridPanel.</p> <p>Setting this to <b><tt>true</tt></b> causes this GridPanel's <a ext:cls="Ext.grid.GridPanel" ext:member="getView" href="output/Ext.grid.GridPanel.html#getView">GridView</a> to create an instance of <a ext:cls="Ext.grid.GridDragZone" href="output/Ext.grid.GridDragZone.html">Ext.grid.GridDragZone</a>. This is available <b>(only after the Grid has been rendered)</b> as the GridView's <a ext:cls="Ext.grid.GridView" ext:member="dragZone" href="output/Ext.grid.GridView.html#dragZone">dragZone</a> property.</p> <p>A cooperating <a ext:cls="Ext.dd.DropZone" href="output/Ext.dd.DropZone.html">DropZone</a> must be created who's implementations of <a ext:cls="Ext.dd.DropZone" ext:member="onNodeEnter" href="output/Ext.dd.DropZone.html#onNodeEnter">onNodeEnter</a>, <a ext:cls="Ext.dd.DropZone" ext:member="onNodeOver" href="output/Ext.dd.DropZone.html#onNodeOver">onNodeOver</a>, <a ext:cls="Ext.dd.DropZone" ext:member="onNodeOut" href="output/Ext.dd.DropZone.html#onNodeOut">onNodeOut</a> and <a ext:cls="Ext.dd.DropZone" ext:member="onNodeDrop" href="output/Ext.dd.DropZone.html#onNodeDrop">onNodeDrop</a></p> are able to process the <a ext:cls="Ext.grid.GridDragZone" ext:member="getDragData" href="output/Ext.grid.GridDragZone.html#getDragData">data</a> which is provided.            </div>\r
86                         </div>\r
87         </td>\r
88         <td class="msource">GridPanel</td>\r
89     </tr>\r
90         <tr class="config-row inherited alt expandable">\r
91         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
92         <td class="sig">\r
93         <a id="Ext.grid.GridPanel-animCollapse"></a>\r
94             <b>animCollapse</b> : Boolean            <div class="mdesc">\r
95                         <div class="short">True to animate the transition when the panel is collapsed, false to skip the animation (defaults to true if the Ext....</div>\r
96             <div class="long">\r
97                 True to animate the transition when the panel is collapsed, false to skip the animation (defaults to true if the <a ext:cls="Ext.Fx" href="output/Ext.Fx.html">Ext.Fx</a> class is available, otherwise false).            </div>\r
98                         </div>\r
99         </td>\r
100         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#animCollapse" href="output/Ext.Panel.html#animCollapse">Panel</a></td>\r
101     </tr>\r
102         <tr class="config-row">\r
103         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
104         <td class="sig">\r
105         <a id="Ext.grid.GridPanel-autoExpandColumn"></a>\r
106             <b>autoExpandColumn</b> : String            <div class="mdesc">\r
107                             The id of a column in this grid that should expand to fill unused space. This id can not be 0.                        </div>\r
108         </td>\r
109         <td class="msource">GridPanel</td>\r
110     </tr>\r
111         <tr class="config-row alt">\r
112         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
113         <td class="sig">\r
114         <a id="Ext.grid.GridPanel-autoExpandMax"></a>\r
115             <b>autoExpandMax</b> : Number            <div class="mdesc">\r
116                             The maximum width the autoExpandColumn can have (if enabled). Defaults to 1000.                        </div>\r
117         </td>\r
118         <td class="msource">GridPanel</td>\r
119     </tr>\r
120         <tr class="config-row">\r
121         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
122         <td class="sig">\r
123         <a id="Ext.grid.GridPanel-autoExpandMin"></a>\r
124             <b>autoExpandMin</b> : Number            <div class="mdesc">\r
125                             The minimum width the autoExpandColumn can have (if enabled). defaults to 50.                        </div>\r
126         </td>\r
127         <td class="msource">GridPanel</td>\r
128     </tr>\r
129         <tr class="config-row inherited alt expandable">\r
130         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
131         <td class="sig">\r
132         <a id="Ext.grid.GridPanel-autoHeight"></a>\r
133             <b>autoHeight</b> : Boolean            <div class="mdesc">\r
134                         <div class="short">True to use height:'auto', false to use fixed height (defaults to false). Note: Although many components inherit this...</div>\r
135             <div class="long">\r
136                 True to use height:'auto', false to use fixed height (defaults to false). <b>Note</b>: Although many components inherit this config option, not all will function as expected with a height of 'auto'. Setting autoHeight:true means that the browser will manage height based on the element's contents, and that Ext will not manage it at all.            </div>\r
137                         </div>\r
138         </td>\r
139         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#autoHeight" href="output/Ext.BoxComponent.html#autoHeight">BoxComponent</a></td>\r
140     </tr>\r
141         <tr class="config-row inherited expandable">\r
142         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
143         <td class="sig">\r
144         <a id="Ext.grid.GridPanel-autoShow"></a>\r
145             <b>autoShow</b> : Boolean            <div class="mdesc">\r
146                         <div class="short">True if the component should check for hidden classes (e.g. 'x-hidden' or 'x-hide-display') and remove them on render...</div>\r
147             <div class="long">\r
148                 True if the component should check for hidden classes (e.g. 'x-hidden' or 'x-hide-display') and remove them on render (defaults to false).            </div>\r
149                         </div>\r
150         </td>\r
151         <td class="msource"><a ext:cls="Ext.Component" ext:member="#autoShow" href="output/Ext.Component.html#autoShow">Component</a></td>\r
152     </tr>\r
153         <tr class="config-row inherited alt">\r
154         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
155         <td class="sig">\r
156         <a id="Ext.grid.GridPanel-baseCls"></a>\r
157             <b>baseCls</b> : String            <div class="mdesc">\r
158                             The base CSS class to apply to this panel's element (defaults to 'x-panel').                        </div>\r
159         </td>\r
160         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#baseCls" href="output/Ext.Panel.html#baseCls">Panel</a></td>\r
161     </tr>\r
162         <tr class="config-row inherited expandable">\r
163         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
164         <td class="sig">\r
165         <a id="Ext.grid.GridPanel-bbar"></a>\r
166             <b>bbar</b> : Object/Array            <div class="mdesc">\r
167                         <div class="short">The bottom toolbar of the panel. This can be either an Ext.Toolbar object or an array of buttons/button configs to be...</div>\r
168             <div class="long">\r
169                 The bottom toolbar of the panel. This can be either an <a ext:cls="Ext.Toolbar" href="output/Ext.Toolbar.html">Ext.Toolbar</a> object or an array of buttons/button configs to be added to the toolbar. Note that this is not available as a property after render. To access the bottom toolbar after render, use <a ext:cls="Ext.Panel" ext:member="getBottomToolbar" href="output/Ext.Panel.html#getBottomToolbar">getBottomToolbar</a>.            </div>\r
170                         </div>\r
171         </td>\r
172         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#bbar" href="output/Ext.Panel.html#bbar">Panel</a></td>\r
173     </tr>\r
174         <tr class="config-row inherited alt expandable">\r
175         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
176         <td class="sig">\r
177         <a id="Ext.grid.GridPanel-bodyCfg"></a>\r
178             <b>bodyCfg</b> : Object            <div class="mdesc">\r
179                         <div class="short">A DomHelper configuration object specifying the element structure of this Panel's body Element. This may be used to f...</div>\r
180             <div class="long">\r
181                 <p>A <a ext:cls="Ext.DomHelper" href="output/Ext.DomHelper.html">DomHelper</a> configuration object specifying the element structure of this Panel's <a ext:cls="Ext.Panel" ext:member="body" href="output/Ext.Panel.html#body">body</a> Element.</p> <p>This may be used to force the body Element to use a different form of markup than is created automatically. An example of this might be to create a child Panel containing custom content, such as a header, or forcing centering of all Panel content by having the body be a &lt;center&gt; element:</p><code><pre>new Ext.Panel({\r
182     title: 'New Message',\r
183     collapsible: true,\r
184     renderTo: Ext.getBody(),\r
185     width: 400,\r
186     bodyCfg: {\r
187         tag: 'center',\r
188         cls: 'x-panel-body'\r
189     },\r
190     items: [{\r
191         border: false,\r
192         header: false,\r
193         bodyCfg: {tag: 'h2', html: 'Message'}\r
194     }, {\r
195         xtype: 'textarea',\r
196         style: {\r
197             width: '95%',\r
198             marginBottom: '10px'\r
199         }\r
200     },\r
201         new Ext.Button({\r
202             text: 'Send',\r
203             minWidth: '100',\r
204             style: {\r
205                 marginBottom: '10px'\r
206             }\r
207         })\r
208     ]\r
209 });</pre></code>            </div>\r
210                         </div>\r
211         </td>\r
212         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#bodyCfg" href="output/Ext.Panel.html#bodyCfg">Panel</a></td>\r
213     </tr>\r
214         <tr class="config-row inherited expandable">\r
215         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
216         <td class="sig">\r
217         <a id="Ext.grid.GridPanel-border"></a>\r
218             <b>border</b> : Boolean            <div class="mdesc">\r
219                         <div class="short">True to display the borders of the panel's body element, false to hide them (defaults to true). By default, the borde...</div>\r
220             <div class="long">\r
221                 True to display the borders of the panel's body element, false to hide them (defaults to true). By default, the border is a 2px wide inset border, but this can be further altered by setting <a ext:cls="Ext.Panel" ext:member="bodyBorder" href="output/Ext.Panel.html#bodyBorder">bodyBorder</a> to false.            </div>\r
222                         </div>\r
223         </td>\r
224         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#border" href="output/Ext.Panel.html#border">Panel</a></td>\r
225     </tr>\r
226         <tr class="config-row inherited alt">\r
227         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
228         <td class="sig">\r
229         <a id="Ext.grid.GridPanel-buttonAlign"></a>\r
230             <b>buttonAlign</b> : String            <div class="mdesc">\r
231                             The alignment of any buttons added to this panel. Valid values are 'right,' 'left' and 'center' (defaults to 'right').                        </div>\r
232         </td>\r
233         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#buttonAlign" href="output/Ext.Panel.html#buttonAlign">Panel</a></td>\r
234     </tr>\r
235         <tr class="config-row inherited">\r
236         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
237         <td class="sig">\r
238         <a id="Ext.grid.GridPanel-buttons"></a>\r
239             <b>buttons</b> : Array            <div class="mdesc">\r
240                             An array of <a ext:cls="Ext.Button" href="output/Ext.Button.html">Ext.Button</a>s or <a ext:cls="Ext.Button" href="output/Ext.Button.html">Ext.Button</a> configs used to add buttons to the footer of this panel.                        </div>\r
241         </td>\r
242         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#buttons" href="output/Ext.Panel.html#buttons">Panel</a></td>\r
243     </tr>\r
244         <tr class="config-row inherited alt expandable">\r
245         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
246         <td class="sig">\r
247         <a id="Ext.grid.GridPanel-clearCls"></a>\r
248             <b>clearCls</b> : String            <div class="mdesc">\r
249                         <div class="short">The CSS class used to provide field clearing (defaults to 'x-form-clear-left'). This config is only used when this Co...</div>\r
250             <div class="long">\r
251                 The CSS class used to provide field clearing (defaults to 'x-form-clear-left'). <p><b>This config is only used when this Component is rendered by a Container which has been configured to use the <a ext:cls="Ext.form.FormLayout" href="output/Ext.form.FormLayout.html">FormLayout</a> layout manager.</b></p>            </div>\r
252                         </div>\r
253         </td>\r
254         <td class="msource"><a ext:cls="Ext.Component" ext:member="#clearCls" href="output/Ext.Component.html#clearCls">Component</a></td>\r
255     </tr>\r
256         <tr class="config-row inherited expandable">\r
257         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
258         <td class="sig">\r
259         <a id="Ext.grid.GridPanel-cls"></a>\r
260             <b>cls</b> : String            <div class="mdesc">\r
261                         <div class="short">An optional extra CSS class that will be added to this component's Element (defaults to ''). This can be useful for a...</div>\r
262             <div class="long">\r
263                 An optional extra CSS class that will be added to this component's Element (defaults to ''). This can be useful for adding customized styles to the component or any of its children using standard CSS rules.            </div>\r
264                         </div>\r
265         </td>\r
266         <td class="msource"><a ext:cls="Ext.Component" ext:member="#cls" href="output/Ext.Component.html#cls">Component</a></td>\r
267     </tr>\r
268         <tr class="config-row alt">\r
269         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
270         <td class="sig">\r
271         <a id="Ext.grid.GridPanel-cm"></a>\r
272             <b>cm</b> : Object            <div class="mdesc">\r
273                             Shorthand for <a ext:cls="Ext.grid.GridPanel" ext:member="colModel" href="output/Ext.grid.GridPanel.html#colModel">colModel</a>.                        </div>\r
274         </td>\r
275         <td class="msource">GridPanel</td>\r
276     </tr>\r
277         <tr class="config-row">\r
278         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
279         <td class="sig">\r
280         <a id="Ext.grid.GridPanel-colModel"></a>\r
281             <b>colModel</b> : Object            <div class="mdesc">\r
282                             The <a ext:cls="Ext.grid.ColumnModel" href="output/Ext.grid.ColumnModel.html">Ext.grid.ColumnModel</a> to use when rendering the grid (required).                        </div>\r
283         </td>\r
284         <td class="msource">GridPanel</td>\r
285     </tr>\r
286         <tr class="config-row inherited alt expandable">\r
287         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
288         <td class="sig">\r
289         <a id="Ext.grid.GridPanel-collapseFirst"></a>\r
290             <b>collapseFirst</b> : Boolean            <div class="mdesc">\r
291                         <div class="short">True to make sure the collapse/expand toggle button always renders first (to the left of) any other tools in the pane...</div>\r
292             <div class="long">\r
293                 True to make sure the collapse/expand toggle button always renders first (to the left of) any other tools in the panel's title bar, false to render it last (defaults to true).            </div>\r
294                         </div>\r
295         </td>\r
296         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#collapseFirst" href="output/Ext.Panel.html#collapseFirst">Panel</a></td>\r
297     </tr>\r
298         <tr class="config-row inherited">\r
299         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
300         <td class="sig">\r
301         <a id="Ext.grid.GridPanel-collapsed"></a>\r
302             <b>collapsed</b> : Boolean            <div class="mdesc">\r
303                             True to render the panel collapsed, false to render it expanded (defaults to false).                        </div>\r
304         </td>\r
305         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#collapsed" href="output/Ext.Panel.html#collapsed">Panel</a></td>\r
306     </tr>\r
307         <tr class="config-row inherited alt">\r
308         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
309         <td class="sig">\r
310         <a id="Ext.grid.GridPanel-collapsedCls"></a>\r
311             <b>collapsedCls</b> : String            <div class="mdesc">\r
312                             A CSS class to add to the panel's element after it has been collapsed (defaults to 'x-panel-collapsed').                        </div>\r
313         </td>\r
314         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#collapsedCls" href="output/Ext.Panel.html#collapsedCls">Panel</a></td>\r
315     </tr>\r
316         <tr class="config-row inherited expandable">\r
317         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
318         <td class="sig">\r
319         <a id="Ext.grid.GridPanel-collapsible"></a>\r
320             <b>collapsible</b> : Boolean            <div class="mdesc">\r
321                         <div class="short">True to make the panel collapsible and have the expand/collapse toggle button automatically rendered into the header ...</div>\r
322             <div class="long">\r
323                 True to make the panel collapsible and have the expand/collapse toggle button automatically rendered into the header tool button area, false to keep the panel statically sized with no button (defaults to false).            </div>\r
324                         </div>\r
325         </td>\r
326         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#collapsible" href="output/Ext.Panel.html#collapsible">Panel</a></td>\r
327     </tr>\r
328         <tr class="config-row alt">\r
329         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
330         <td class="sig">\r
331         <a id="Ext.grid.GridPanel-columns"></a>\r
332             <b>columns</b> : Array            <div class="mdesc">\r
333                             An array of columns to auto create a ColumnModel                        </div>\r
334         </td>\r
335         <td class="msource">GridPanel</td>\r
336     </tr>\r
337         <tr class="config-row inherited expandable">\r
338         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
339         <td class="sig">\r
340         <a id="Ext.grid.GridPanel-ctCls"></a>\r
341             <b>ctCls</b> : String            <div class="mdesc">\r
342                         <div class="short">An optional extra CSS class that will be added to this component's container (defaults to ''). This can be useful for...</div>\r
343             <div class="long">\r
344                 An optional extra CSS class that will be added to this component's container (defaults to ''). This can be useful for adding customized styles to the container or any of its children using standard CSS rules.            </div>\r
345                         </div>\r
346         </td>\r
347         <td class="msource"><a ext:cls="Ext.Component" ext:member="#ctCls" href="output/Ext.Component.html#ctCls">Component</a></td>\r
348     </tr>\r
349         <tr class="config-row alt">\r
350         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
351         <td class="sig">\r
352         <a id="Ext.grid.GridPanel-deferRowRender"></a>\r
353             <b>deferRowRender</b> : Boolean            <div class="mdesc">\r
354                             True to enable deferred row rendering. Default is true.                        </div>\r
355         </td>\r
356         <td class="msource">GridPanel</td>\r
357     </tr>\r
358         <tr class="config-row">\r
359         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
360         <td class="sig">\r
361         <a id="Ext.grid.GridPanel-disableSelection"></a>\r
362             <b>disableSelection</b> : Boolean            <div class="mdesc">\r
363                             True to disable selections in the grid (defaults to false). - ignored if a SelectionModel is specified                        </div>\r
364         </td>\r
365         <td class="msource">GridPanel</td>\r
366     </tr>\r
367         <tr class="config-row inherited alt">\r
368         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
369         <td class="sig">\r
370         <a id="Ext.grid.GridPanel-disabled"></a>\r
371             <b>disabled</b> : Boolean            <div class="mdesc">\r
372                             Render this component disabled (default is false).                        </div>\r
373         </td>\r
374         <td class="msource"><a ext:cls="Ext.Component" ext:member="#disabled" href="output/Ext.Component.html#disabled">Component</a></td>\r
375     </tr>\r
376         <tr class="config-row inherited expandable">\r
377         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
378         <td class="sig">\r
379         <a id="Ext.grid.GridPanel-draggable"></a>\r
380             <b>draggable</b> : Boolean            <div class="mdesc">\r
381                         <div class="short">True to enable dragging of this Panel (defaults to false). For custom drag/drop implementations, an Ext.Panel.DD conf...</div>\r
382             <div class="long">\r
383                 <p>True to enable dragging of this Panel (defaults to false).</p> <p>For custom drag/drop implementations, an Ext.Panel.DD config could also be passed in this config instead of true. Ext.Panel.DD is an internal, undocumented class which moves a proxy Element around in place of the Panel's element, but provides no other behaviour during dragging or on drop. It is a subclass of <a ext:cls="Ext.dd.DragSource" href="output/Ext.dd.DragSource.html">Ext.dd.DragSource</a>, so behaviour may be added by implementing the interface methods of <a ext:cls="Ext.dd.DragDrop" href="output/Ext.dd.DragDrop.html">Ext.dd.DragDrop</a> eg: <pre><code>new Ext.Panel({
384     title: <em>'Drag me'</em>,
385     x: 100,
386     y: 100,
387     renderTo: Ext.getBody(),
388     floating: true,
389     frame: true,
390     width: 400,
391     height: 200,
392     draggable: {
393 <i>//      Config option of Ext.Panel.DD class.</i>
394 <i>//      It's a floating Panel, so <b>do</b> not show a placeholder proxy <b>in</b> the original position.</i>
395         insertProxy: false,
396
397 <i>//      Called <b>for</b> each mousemove event <b>while</b> dragging the DD object.</i>
398         onDrag : <b>function</b>(e){
399 <i>//          Record the x,y position of the drag proxy so that we can</i>
400 <i>//          position the Panel at end of drag.</i>
401             <b>var</b> pel = <b>this</b>.proxy.getEl();
402             <b>this</b>.x = pel.getLeft(true);
403             <b>this</b>.y = pel.getTop(true);
404
405 <i>//          Keep the Shadow aligned <b>if</b> there is one.</i>
406             <b>var</b> s = <b>this</b>.panel.getEl().shadow;
407             <b>if</b> (s) {
408                 s.realign(<b>this</b>.x, <b>this</b>.y, pel.getWidth(), pel.getHeight());
409             }
410         },
411
412 <i>//      Called on the mouseup event.</i>
413         endDrag : <b>function</b>(e){
414             <b>this</b>.panel.setPosition(<b>this</b>.x, <b>this</b>.y);
415         }
416     }
417 }).show();</code></pre>            </div>\r
418                         </div>\r
419         </td>\r
420         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#draggable" href="output/Ext.Panel.html#draggable">Panel</a></td>\r
421     </tr>\r
422         <tr class="config-row alt">\r
423         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
424         <td class="sig">\r
425         <a id="Ext.grid.GridPanel-enableColumnHide"></a>\r
426             <b>enableColumnHide</b> : Boolean            <div class="mdesc">\r
427                             True to enable hiding of columns with the header context menu.                        </div>\r
428         </td>\r
429         <td class="msource">GridPanel</td>\r
430     </tr>\r
431         <tr class="config-row">\r
432         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
433         <td class="sig">\r
434         <a id="Ext.grid.GridPanel-enableColumnMove"></a>\r
435             <b>enableColumnMove</b> : Boolean            <div class="mdesc">\r
436                             True to enable drag and drop reorder of columns.                        </div>\r
437         </td>\r
438         <td class="msource">GridPanel</td>\r
439     </tr>\r
440         <tr class="config-row alt">\r
441         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
442         <td class="sig">\r
443         <a id="Ext.grid.GridPanel-enableColumnResize"></a>\r
444             <b>enableColumnResize</b> : Boolean            <div class="mdesc">\r
445                             False to turn off column resizing for the whole grid (defaults to true).                        </div>\r
446         </td>\r
447         <td class="msource">GridPanel</td>\r
448     </tr>\r
449         <tr class="config-row">\r
450         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
451         <td class="sig">\r
452         <a id="Ext.grid.GridPanel-enableHdMenu"></a>\r
453             <b>enableHdMenu</b> : Boolean            <div class="mdesc">\r
454                             True to enable the drop down button for menu in the headers.                        </div>\r
455         </td>\r
456         <td class="msource">GridPanel</td>\r
457     </tr>\r
458         <tr class="config-row inherited alt expandable">\r
459         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
460         <td class="sig">\r
461         <a id="Ext.grid.GridPanel-fieldLabel"></a>\r
462             <b>fieldLabel</b> : String            <div class="mdesc">\r
463                         <div class="short">The label text to display next to this Component (defaults to '') This config is only used when this Component is ren...</div>\r
464             <div class="long">\r
465                 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({
466     height: 100,
467     renderTo: Ext.getBody(),
468     items: [{
469         xtype: <em>'textfield'</em>,
470         fieldLabel: <em>'Name'</em>
471     }]
472 });</code></pre>            </div>\r
473                         </div>\r
474         </td>\r
475         <td class="msource"><a ext:cls="Ext.Component" ext:member="#fieldLabel" href="output/Ext.Component.html#fieldLabel">Component</a></td>\r
476     </tr>\r
477         <tr class="config-row inherited expandable">\r
478         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
479         <td class="sig">\r
480         <a id="Ext.grid.GridPanel-floating"></a>\r
481             <b>floating</b> : Boolean            <div class="mdesc">\r
482                         <div class="short">True to float the panel (absolute position it with automatic shimming and shadow), false to display it inline where i...</div>\r
483             <div class="long">\r
484                 True to float the panel (absolute position it with automatic shimming and shadow), false to display it inline where it is rendered (defaults to false). Note that by default, setting floating to true will cause the panel to display at negative offsets so that it is hidden -- because the panel is absolute positioned, the position must be set explicitly after render (e.g., myPanel.setPosition(100,100);). Also, when floating a panel you should always assign a fixed width, otherwise it will be auto width and will expand to fill to the right edge of the viewport.            </div>\r
485                         </div>\r
486         </td>\r
487         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#floating" href="output/Ext.Panel.html#floating">Panel</a></td>\r
488     </tr>\r
489         <tr class="config-row inherited alt expandable">\r
490         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
491         <td class="sig">\r
492         <a id="Ext.grid.GridPanel-footer"></a>\r
493             <b>footer</b> : Boolean            <div class="mdesc">\r
494                         <div class="short">True to create the footer element explicitly, false to skip creating it. By default, when footer is not specified, if...</div>\r
495             <div class="long">\r
496                 True to create the footer element explicitly, false to skip creating it. By default, when footer is not specified, if one or more buttons have been added to the panel the footer will be created automatically, otherwise it will not.            </div>\r
497                         </div>\r
498         </td>\r
499         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#footer" href="output/Ext.Panel.html#footer">Panel</a></td>\r
500     </tr>\r
501         <tr class="config-row inherited">\r
502         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
503         <td class="sig">\r
504         <a id="Ext.grid.GridPanel-frame"></a>\r
505             <b>frame</b> : Boolean            <div class="mdesc">\r
506                             True to render the panel with custom rounded borders, false to render with plain 1px square borders (defaults to false).                        </div>\r
507         </td>\r
508         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#frame" href="output/Ext.Panel.html#frame">Panel</a></td>\r
509     </tr>\r
510         <tr class="config-row inherited alt expandable">\r
511         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
512         <td class="sig">\r
513         <a id="Ext.grid.GridPanel-header"></a>\r
514             <b>header</b> : Boolean            <div class="mdesc">\r
515                         <div class="short">True to create the header element explicitly, false to skip creating it. By default, when header is not specified, if...</div>\r
516             <div class="long">\r
517                 True to create the header element explicitly, false to skip creating it. By default, when header is not specified, if a <a ext:cls="Ext.Panel" ext:member="title" href="output/Ext.Panel.html#title">title</a> is set the header will be created automatically, otherwise it will not. If a title is set but header is explicitly set to false, the header will not be rendered.            </div>\r
518                         </div>\r
519         </td>\r
520         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#header" href="output/Ext.Panel.html#header">Panel</a></td>\r
521     </tr>\r
522         <tr class="config-row inherited">\r
523         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
524         <td class="sig">\r
525         <a id="Ext.grid.GridPanel-headerAsText"></a>\r
526             <b>headerAsText</b> : Boolean            <div class="mdesc">\r
527                             True to display the panel title in the header, false to hide it (defaults to true).                        </div>\r
528         </td>\r
529         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#headerAsText" href="output/Ext.Panel.html#headerAsText">Panel</a></td>\r
530     </tr>\r
531         <tr class="config-row inherited alt">\r
532         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
533         <td class="sig">\r
534         <a id="Ext.grid.GridPanel-height"></a>\r
535             <b>height</b> : Number            <div class="mdesc">\r
536                             The height of this component in pixels (defaults to auto).                        </div>\r
537         </td>\r
538         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#height" href="output/Ext.BoxComponent.html#height">BoxComponent</a></td>\r
539     </tr>\r
540         <tr class="config-row inherited">\r
541         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
542         <td class="sig">\r
543         <a id="Ext.grid.GridPanel-hidden"></a>\r
544             <b>hidden</b> : Boolean            <div class="mdesc">\r
545                             Render this component hidden (default is false).                        </div>\r
546         </td>\r
547         <td class="msource"><a ext:cls="Ext.Component" ext:member="#hidden" href="output/Ext.Component.html#hidden">Component</a></td>\r
548     </tr>\r
549         <tr class="config-row inherited alt">\r
550         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
551         <td class="sig">\r
552         <a id="Ext.grid.GridPanel-hideCollapseTool"></a>\r
553             <b>hideCollapseTool</b> : Boolean            <div class="mdesc">\r
554                             True to hide the expand/collapse toggle button when <a ext:cls="Ext.Panel" ext:member="collapsible" href="output/Ext.Panel.html#collapsible">collapsible</a> = true, false to display it (defaults to false).                        </div>\r
555         </td>\r
556         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#hideCollapseTool" href="output/Ext.Panel.html#hideCollapseTool">Panel</a></td>\r
557     </tr>\r
558         <tr class="config-row">\r
559         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
560         <td class="sig">\r
561         <a id="Ext.grid.GridPanel-hideHeaders"></a>\r
562             <b>hideHeaders</b> : Boolean            <div class="mdesc">\r
563                             True to hide the grid's header (defaults to false).                        </div>\r
564         </td>\r
565         <td class="msource">GridPanel</td>\r
566     </tr>\r
567         <tr class="config-row inherited alt expandable">\r
568         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
569         <td class="sig">\r
570         <a id="Ext.grid.GridPanel-hideLabel"></a>\r
571             <b>hideLabel</b> : Boolean            <div class="mdesc">\r
572                         <div class="short">True to completely hide the label element (defaults to false). By default, even if you do not specify a fieldLabel th...</div>\r
573             <div class="long">\r
574                 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({
575     height: 100,
576     renderTo: Ext.getBody(),
577     items: [{
578         xtype: <em>'textfield'</em>
579         hideLabel: true
580     }]
581 });</code></pre>            </div>\r
582                         </div>\r
583         </td>\r
584         <td class="msource"><a ext:cls="Ext.Component" ext:member="#hideLabel" href="output/Ext.Component.html#hideLabel">Component</a></td>\r
585     </tr>\r
586         <tr class="config-row inherited expandable">\r
587         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
588         <td class="sig">\r
589         <a id="Ext.grid.GridPanel-hideMode"></a>\r
590             <b>hideMode</b> : String            <div class="mdesc">\r
591                         <div class="short">How this component should be hidden. Supported values are "visibility" (css visibility), "offsets" (negative offset p...</div>\r
592             <div class="long">\r
593                 <p>How this component should be hidden. Supported values are "visibility" (css visibility), "offsets" (negative offset position) and "display" (css display) - defaults to "display".</p> <p>For Containers which may be hidden and shown as part of a <a ext:cls="Ext.layout.CardLayout" href="output/Ext.layout.CardLayout.html">card layout</a> Container such as a <a ext:cls="Ext.TabPanel" href="output/Ext.TabPanel.html">TabPanel</a>, it is recommended that hideMode is configured as "offsets". This ensures that hidden Components still have height and width so that layout managers can perform measurements when calculating layouts.</p>            </div>\r
594                         </div>\r
595         </td>\r
596         <td class="msource"><a ext:cls="Ext.Component" ext:member="#hideMode" href="output/Ext.Component.html#hideMode">Component</a></td>\r
597     </tr>\r
598         <tr class="config-row inherited alt expandable">\r
599         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
600         <td class="sig">\r
601         <a id="Ext.grid.GridPanel-hideParent"></a>\r
602             <b>hideParent</b> : Boolean            <div class="mdesc">\r
603                         <div class="short">True to hide and show the component's container when hide/show is called on the component, false to hide and show the...</div>\r
604             <div class="long">\r
605                 True to hide and show the component's container when hide/show is called on the component, false to hide and show the component itself (defaults to false). For example, this can be used as a shortcut for a hide button on a window by setting hide:true on the button when adding it to its parent container.            </div>\r
606                         </div>\r
607         </td>\r
608         <td class="msource"><a ext:cls="Ext.Component" ext:member="#hideParent" href="output/Ext.Component.html#hideParent">Component</a></td>\r
609     </tr>\r
610         <tr class="config-row inherited expandable">\r
611         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
612         <td class="sig">\r
613         <a id="Ext.grid.GridPanel-iconCls"></a>\r
614             <b>iconCls</b> : String            <div class="mdesc">\r
615                         <div class="short">A CSS class that will provide a background image to be used as the header icon (defaults to ''). An example custom ic...</div>\r
616             <div class="long">\r
617                 A CSS class that will provide a background image to be used as the header icon (defaults to ''). An example custom icon class would be something like: .my-icon { background: url(../images/my-icon.gif) 0 6px no-repeat !important;}            </div>\r
618                         </div>\r
619         </td>\r
620         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#iconCls" href="output/Ext.Panel.html#iconCls">Panel</a></td>\r
621     </tr>\r
622         <tr class="config-row inherited alt expandable">\r
623         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
624         <td class="sig">\r
625         <a id="Ext.grid.GridPanel-id"></a>\r
626             <b>id</b> : String            <div class="mdesc">\r
627                         <div class="short">The unique id of this component (defaults to an auto-assigned id). You should assign an id if you need to be able to ...</div>\r
628             <div class="long">\r
629                 The unique id of this component (defaults to an auto-assigned id). You should assign an id if you need to be able to access the component later and you do not have an object reference available (e.g., using <a ext:cls="Ext.ComponentMgr" ext:member="getCmp" href="output/Ext.ComponentMgr.html#getCmp">Ext.ComponentMgr.getCmp</a>). Note that this id will also be used as the element id for the containing HTML element that is rendered to the page for this component. This allows you to write id-based CSS rules to style the specific instance of this component uniquely, and also to select sub-elements using this component's id as the parent.            </div>\r
630                         </div>\r
631         </td>\r
632         <td class="msource"><a ext:cls="Ext.Component" ext:member="#id" href="output/Ext.Component.html#id">Component</a></td>\r
633     </tr>\r
634         <tr class="config-row inherited expandable">\r
635         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
636         <td class="sig">\r
637         <a id="Ext.grid.GridPanel-itemCls"></a>\r
638             <b>itemCls</b> : String            <div class="mdesc">\r
639                         <div class="short">An additional CSS class to apply to the wrapper's form item element of this field (defaults to the container's itemCl...</div>\r
640             <div class="long">\r
641                 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>
642 &lt;style>
643     .required .x-form-item-label {font-weight:bold;color:red;}
644 &lt;/style>
645
646 <b>new</b> Ext.FormPanel({
647     height: 100,
648     renderTo: Ext.getBody(),
649     items: [{
650         xtype: <em>'textfield'</em>,
651         fieldLabel: <em>'Name'</em>,
652         itemCls: <em>'required'</em> <i>//<b>this</b> label will be styled</i>
653     },{
654         xtype: <em>'textfield'</em>,
655         fieldLabel: <em>'Favorite Color'</em>
656     }]
657 });</code></pre>            </div>\r
658                         </div>\r
659         </td>\r
660         <td class="msource"><a ext:cls="Ext.Component" ext:member="#itemCls" href="output/Ext.Component.html#itemCls">Component</a></td>\r
661     </tr>\r
662         <tr class="config-row inherited alt expandable">\r
663         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
664         <td class="sig">\r
665         <a id="Ext.grid.GridPanel-keys"></a>\r
666             <b>keys</b> : Object/Array            <div class="mdesc">\r
667                         <div class="short">A KeyMap config object (in the format expected by Ext.KeyMap.addBinding used to assign custom key handling to this pa...</div>\r
668             <div class="long">\r
669                 A KeyMap config object (in the format expected by <a ext:cls="Ext.KeyMap" ext:member="addBinding" href="output/Ext.KeyMap.html#addBinding">Ext.KeyMap.addBinding</a> used to assign custom key handling to this panel (defaults to null).            </div>\r
670                         </div>\r
671         </td>\r
672         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#keys" href="output/Ext.Panel.html#keys">Panel</a></td>\r
673     </tr>\r
674         <tr class="config-row inherited expandable">\r
675         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
676         <td class="sig">\r
677         <a id="Ext.grid.GridPanel-labelSeparator"></a>\r
678             <b>labelSeparator</b> : String            <div class="mdesc">\r
679                         <div class="short">The standard separator to display after the text of each form label (defaults to the value of Ext.layout.FormLayout.l...</div>\r
680             <div class="long">\r
681                 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({
682     height: 100,
683     renderTo: Ext.getBody(),
684     items: [{
685         xtype: <em>'textfield'</em>,
686         fieldLabel: <em>'Name'</em>,
687         labelSeparator: <em>'...'</em>
688     }]
689 });</code></pre>            </div>\r
690                         </div>\r
691         </td>\r
692         <td class="msource"><a ext:cls="Ext.Component" ext:member="#labelSeparator" href="output/Ext.Component.html#labelSeparator">Component</a></td>\r
693     </tr>\r
694         <tr class="config-row inherited alt expandable">\r
695         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
696         <td class="sig">\r
697         <a id="Ext.grid.GridPanel-labelStyle"></a>\r
698             <b>labelStyle</b> : String            <div class="mdesc">\r
699                         <div class="short">A CSS style specification to apply directly to this field's label (defaults to the container's labelStyle value if se...</div>\r
700             <div class="long">\r
701                 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({
702     height: 100,
703     renderTo: Ext.getBody(),
704     items: [{
705         xtype: <em>'textfield'</em>,
706         fieldLabel: <em>'Name'</em>,
707         labelStyle: <em>'font-weight:bold;'</em>
708     }]
709 });</code></pre>            </div>\r
710                         </div>\r
711         </td>\r
712         <td class="msource"><a ext:cls="Ext.Component" ext:member="#labelStyle" href="output/Ext.Component.html#labelStyle">Component</a></td>\r
713     </tr>\r
714         <tr class="config-row inherited expandable">\r
715         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
716         <td class="sig">\r
717         <a id="Ext.grid.GridPanel-listeners"></a>\r
718             <b>listeners</b> : Object            <div class="mdesc">\r
719                         <div class="short">(optional) A config object containing one or more event handlers to be added to this object during initialization. Th...</div>\r
720             <div class="long">\r
721                 (optional) A config object containing one or more event handlers to be added to this object during initialization. This should be a valid listeners config object as specified in the <a ext:cls="Ext.util.Observable" ext:member="addListener" href="output/Ext.util.Observable.html#addListener">addListener</a> example for attaching multiple handlers at once.            </div>\r
722                         </div>\r
723         </td>\r
724         <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#listeners" href="output/Ext.util.Observable.html#listeners">Observable</a></td>\r
725     </tr>\r
726         <tr class="config-row alt">\r
727         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
728         <td class="sig">\r
729         <a id="Ext.grid.GridPanel-loadMask"></a>\r
730             <b>loadMask</b> : Object            <div class="mdesc">\r
731                             An <a ext:cls="Ext.LoadMask" href="output/Ext.LoadMask.html">Ext.LoadMask</a> config or true to mask the grid while loading (defaults to false).                        </div>\r
732         </td>\r
733         <td class="msource">GridPanel</td>\r
734     </tr>\r
735         <tr class="config-row inherited expandable">\r
736         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
737         <td class="sig">\r
738         <a id="Ext.grid.GridPanel-maskDisabled"></a>\r
739             <b>maskDisabled</b> : Boolean            <div class="mdesc">\r
740                         <div class="short">True to mask the panel when it is disabled, false to not mask it (defaults to true). Either way, the panel will alway...</div>\r
741             <div class="long">\r
742                 True to mask the panel when it is disabled, false to not mask it (defaults to true). Either way, the panel will always tell its contained elements to disable themselves when it is disabled, but masking the panel can provide an additional visual cue that the panel is disabled.            </div>\r
743                         </div>\r
744         </td>\r
745         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#maskDisabled" href="output/Ext.Panel.html#maskDisabled">Panel</a></td>\r
746     </tr>\r
747         <tr class="config-row alt">\r
748         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
749         <td class="sig">\r
750         <a id="Ext.grid.GridPanel-maxHeight"></a>\r
751             <b>maxHeight</b> : Number            <div class="mdesc">\r
752                             Sets the maximum height of the grid - ignored if autoHeight is not on.                        </div>\r
753         </td>\r
754         <td class="msource">GridPanel</td>\r
755     </tr>\r
756         <tr class="config-row inherited">\r
757         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
758         <td class="sig">\r
759         <a id="Ext.grid.GridPanel-minButtonWidth"></a>\r
760             <b>minButtonWidth</b> : Number            <div class="mdesc">\r
761                             Minimum width in pixels of all buttons in this panel (defaults to 75)                        </div>\r
762         </td>\r
763         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#minButtonWidth" href="output/Ext.Panel.html#minButtonWidth">Panel</a></td>\r
764     </tr>\r
765         <tr class="config-row alt">\r
766         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
767         <td class="sig">\r
768         <a id="Ext.grid.GridPanel-minColumnWidth"></a>\r
769             <b>minColumnWidth</b> : Number            <div class="mdesc">\r
770                             The minimum width a column can be resized to. Defaults to 25.                        </div>\r
771         </td>\r
772         <td class="msource">GridPanel</td>\r
773     </tr>\r
774         <tr class="config-row inherited expandable">\r
775         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
776         <td class="sig">\r
777         <a id="Ext.grid.GridPanel-overCls"></a>\r
778             <b>overCls</b> : String            <div class="mdesc">\r
779                         <div class="short">An optional extra CSS class that will be added to this component's Element when the mouse moves over the Element, and...</div>\r
780             <div class="long">\r
781                 An optional extra CSS class that will be added to this component's Element when the mouse moves over the Element, and removed when the mouse moves out. (defaults to ''). This can be useful for adding customized "active" or "hover" styles to the component or any of its children using standard CSS rules.            </div>\r
782                         </div>\r
783         </td>\r
784         <td class="msource"><a ext:cls="Ext.Component" ext:member="#overCls" href="output/Ext.Component.html#overCls">Component</a></td>\r
785     </tr>\r
786         <tr class="config-row inherited alt">\r
787         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
788         <td class="sig">\r
789         <a id="Ext.grid.GridPanel-pageX"></a>\r
790             <b>pageX</b> : Number            <div class="mdesc">\r
791                             The page level x coordinate for this component if contained within a positioning container.                        </div>\r
792         </td>\r
793         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#pageX" href="output/Ext.BoxComponent.html#pageX">BoxComponent</a></td>\r
794     </tr>\r
795         <tr class="config-row inherited">\r
796         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
797         <td class="sig">\r
798         <a id="Ext.grid.GridPanel-pageY"></a>\r
799             <b>pageY</b> : Number            <div class="mdesc">\r
800                             The page level y coordinate for this component if contained within a positioning container.                        </div>\r
801         </td>\r
802         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#pageY" href="output/Ext.BoxComponent.html#pageY">BoxComponent</a></td>\r
803     </tr>\r
804         <tr class="config-row inherited alt expandable">\r
805         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
806         <td class="sig">\r
807         <a id="Ext.grid.GridPanel-plugins"></a>\r
808             <b>plugins</b> : Object/Array            <div class="mdesc">\r
809                         <div class="short">An object or array of objects that will provide custom functionality for this component. The only requirement for a v...</div>\r
810             <div class="long">\r
811                 An object or array of objects that will provide custom functionality for this component. The only requirement for a valid plugin is that it contain an init method that accepts a reference of type Ext.Component. When a component is created, if any plugins are available, the component will call the init method on each plugin, passing a reference to itself. Each plugin can then call methods or respond to events on the component as needed to provide its functionality.            </div>\r
812                         </div>\r
813         </td>\r
814         <td class="msource"><a ext:cls="Ext.Component" ext:member="#plugins" href="output/Ext.Component.html#plugins">Component</a></td>\r
815     </tr>\r
816         <tr class="config-row inherited expandable">\r
817         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
818         <td class="sig">\r
819         <a id="Ext.grid.GridPanel-renderTo"></a>\r
820             <b>renderTo</b> : Mixed            <div class="mdesc">\r
821                         <div class="short">The id of the node, a DOM node or an existing Element that will be the container to render this component into. Using...</div>\r
822             <div class="long">\r
823                 The id of the node, a DOM node or an existing Element that will be the container to render this component into. Using this config, a call to render() is not required.            </div>\r
824                         </div>\r
825         </td>\r
826         <td class="msource"><a ext:cls="Ext.Component" ext:member="#renderTo" href="output/Ext.Component.html#renderTo">Component</a></td>\r
827     </tr>\r
828         <tr class="config-row alt expandable">\r
829         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
830         <td class="sig">\r
831         <a id="Ext.grid.GridPanel-selModel"></a>\r
832             <b>selModel</b> : Object            <div class="mdesc">\r
833                         <div class="short">Any subclass of Ext.grid.AbstractSelectionModel that will provide the selection model for the grid (defaults to Ext.g...</div>\r
834             <div class="long">\r
835                 Any subclass of <a ext:cls="Ext.grid.AbstractSelectionModel" href="output/Ext.grid.AbstractSelectionModel.html">Ext.grid.AbstractSelectionModel</a> that will provide the selection model for the grid (defaults to <a ext:cls="Ext.grid.RowSelectionModel" href="output/Ext.grid.RowSelectionModel.html">Ext.grid.RowSelectionModel</a> if not specified).            </div>\r
836                         </div>\r
837         </td>\r
838         <td class="msource">GridPanel</td>\r
839     </tr>\r
840         <tr class="config-row inherited expandable">\r
841         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
842         <td class="sig">\r
843         <a id="Ext.grid.GridPanel-shadow"></a>\r
844             <b>shadow</b> : Boolean/String            <div class="mdesc">\r
845                         <div class="short">True (or a valid Ext.Shadow Ext.Shadow.mode value) to display a shadow behind the panel, false to display no shadow (...</div>\r
846             <div class="long">\r
847                 True (or a valid Ext.Shadow <a ext:cls="Ext.Shadow" ext:member="mode" href="output/Ext.Shadow.html#mode">Ext.Shadow.mode</a> value) to display a shadow behind the panel, false to display no shadow (defaults to 'sides'). Note that this option only applies when floating = true.            </div>\r
848                         </div>\r
849         </td>\r
850         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#shadow" href="output/Ext.Panel.html#shadow">Panel</a></td>\r
851     </tr>\r
852         <tr class="config-row inherited alt expandable">\r
853         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
854         <td class="sig">\r
855         <a id="Ext.grid.GridPanel-shadowOffset"></a>\r
856             <b>shadowOffset</b> : Number            <div class="mdesc">\r
857                         <div class="short">The number of pixels to offset the shadow if displayed (defaults to 4). Note that this option only applies when float...</div>\r
858             <div class="long">\r
859                 The number of pixels to offset the shadow if displayed (defaults to 4). Note that this option only applies when floating = true.            </div>\r
860                         </div>\r
861         </td>\r
862         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#shadowOffset" href="output/Ext.Panel.html#shadowOffset">Panel</a></td>\r
863     </tr>\r
864         <tr class="config-row inherited expandable">\r
865         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
866         <td class="sig">\r
867         <a id="Ext.grid.GridPanel-shim"></a>\r
868             <b>shim</b> : Boolean            <div class="mdesc">\r
869                         <div class="short">False to disable the iframe shim in browsers which need one (defaults to true). Note that this option only applies wh...</div>\r
870             <div class="long">\r
871                 False to disable the iframe shim in browsers which need one (defaults to true). Note that this option only applies when floating = true.            </div>\r
872                         </div>\r
873         </td>\r
874         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#shim" href="output/Ext.Panel.html#shim">Panel</a></td>\r
875     </tr>\r
876         <tr class="config-row alt">\r
877         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
878         <td class="sig">\r
879         <a id="Ext.grid.GridPanel-sm"></a>\r
880             <b>sm</b> : Object            <div class="mdesc">\r
881                             Shorthand for <a ext:cls="Ext.grid.GridPanel" ext:member="selModel" href="output/Ext.grid.GridPanel.html#selModel">selModel</a>.                        </div>\r
882         </td>\r
883         <td class="msource">GridPanel</td>\r
884     </tr>\r
885         <tr class="config-row expandable">\r
886         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
887         <td class="sig">\r
888         <a id="Ext.grid.GridPanel-stateEvents"></a>\r
889             <b>stateEvents</b> : Array            <div class="mdesc">\r
890                         <div class="short">An array of events that, when fired, should trigger this component to save its state (defaults to ["columnmove", "col...</div>\r
891             <div class="long">\r
892                 An array of events that, when fired, should trigger this component to save its state (defaults to ["columnmove", "columnresize", "sortchange"]). 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.grid.GridPanel" ext:member="stateful" href="output/Ext.grid.GridPanel.html#stateful">stateful</a> for an explanation of saving and restoring Component state.</p>            </div>\r
893                         </div>\r
894         </td>\r
895         <td class="msource">GridPanel</td>\r
896     </tr>\r
897         <tr class="config-row inherited alt expandable">\r
898         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
899         <td class="sig">\r
900         <a id="Ext.grid.GridPanel-stateId"></a>\r
901             <b>stateId</b> : String            <div class="mdesc">\r
902                         <div class="short">The unique id for this component to use for state management purposes (defaults to the component id if one was set, o...</div>\r
903             <div class="long">\r
904                 The unique id for this component to use for state management purposes (defaults to the component id if one was set, otherwise null if the component is using a generated id). <p>See <a ext:cls="Ext.Component" ext:member="stateful" href="output/Ext.Component.html#stateful">stateful</a> for an explanation of saving and restoring Component state.</p>            </div>\r
905                         </div>\r
906         </td>\r
907         <td class="msource"><a ext:cls="Ext.Component" ext:member="#stateId" href="output/Ext.Component.html#stateId">Component</a></td>\r
908     </tr>\r
909         <tr class="config-row inherited expandable">\r
910         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
911         <td class="sig">\r
912         <a id="Ext.grid.GridPanel-stateful"></a>\r
913             <b>stateful</b> : Boolean            <div class="mdesc">\r
914                         <div class="short">A flag which causes the Component to attempt to restore the state of internal properties from a saved state on startu...</div>\r
915             <div class="long">\r
916                 <p>A flag which causes the Component to attempt to restore the state of internal properties from a saved state on startup. The component must have either a <a ext:cls="Ext.Component" ext:member="stateId" href="output/Ext.Component.html#stateId">stateId</a> or <a ext:cls="Ext.Component" ext:member="id" href="output/Ext.Component.html#id">id</a> assigned for state to be managed. Auto-generated ids are not guaranteed to be stable across page loads and cannot be relied upon to save and restore the same state for a component.<p> For state saving to work, the state manager's provider must have been set to an implementation of <a ext:cls="Ext.state.Provider" href="output/Ext.state.Provider.html">Ext.state.Provider</a> which overrides the <a ext:cls="Ext.state.Provider" ext:member="set" href="output/Ext.state.Provider.html#set">set</a> and <a ext:cls="Ext.state.Provider" ext:member="get" href="output/Ext.state.Provider.html#get">get</a> methods to save and recall name/value pairs. A built-in implementation, <a ext:cls="Ext.state.CookieProvider" href="output/Ext.state.CookieProvider.html">Ext.state.CookieProvider</a> is available.</p> <p>To set the state provider for the current page:</p> <pre><code>Ext.state.Manager.setProvider(<b>new</b> Ext.state.CookieProvider());</code></pre> <p>Components attempt to save state when one of the events listed in the <a ext:cls="Ext.Component" ext:member="stateEvents" href="output/Ext.Component.html#stateEvents">stateEvents</a> configuration fires.</p> <p>You can perform extra processing on state save and restore by attaching handlers to the <a ext:cls="Ext.Component" ext:member="beforestaterestore" href="output/Ext.Component.html#beforestaterestore">beforestaterestore</a>, <a ext:cls="Ext.Component" ext:member="staterestore" href="output/Ext.Component.html#staterestore">staterestore</a>, <a ext:cls="Ext.Component" ext:member="beforestatesave" href="output/Ext.Component.html#beforestatesave">beforestatesave</a> and <a ext:cls="Ext.Component" ext:member="statesave" href="output/Ext.Component.html#statesave">statesave</a> events</p>            </div>\r
917                         </div>\r
918         </td>\r
919         <td class="msource"><a ext:cls="Ext.Component" ext:member="#stateful" href="output/Ext.Component.html#stateful">Component</a></td>\r
920     </tr>\r
921         <tr class="config-row alt">\r
922         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
923         <td class="sig">\r
924         <a id="Ext.grid.GridPanel-store"></a>\r
925             <b>store</b> : Ext.data.Store            <div class="mdesc">\r
926                             The <a ext:cls="Ext.data.Store" href="output/Ext.data.Store.html">Ext.data.Store</a> the grid should use as its data source (required).                        </div>\r
927         </td>\r
928         <td class="msource">GridPanel</td>\r
929     </tr>\r
930         <tr class="config-row expandable">\r
931         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
932         <td class="sig">\r
933         <a id="Ext.grid.GridPanel-stripeRows"></a>\r
934             <b>stripeRows</b> : Boolean            <div class="mdesc">\r
935                         <div class="short">True to stripe the rows. Default is false. This causes the CSS class x-grid3-row-alt to be added to alternate rows of...</div>\r
936             <div class="long">\r
937                 True to stripe the rows. Default is false. <p>This causes the CSS class <tt><b>x-grid3-row-alt</b></tt> to be added to alternate rows of the grid. A default CSS rule is provided which sets a background colour, but you can override this with a rule which either overrides the <b>background-color</b> style using the "!important" modifier, or which uses a CSS selector of higher specificity.            </div>\r
938                         </div>\r
939         </td>\r
940         <td class="msource">GridPanel</td>\r
941     </tr>\r
942         <tr class="config-row inherited alt expandable">\r
943         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
944         <td class="sig">\r
945         <a id="Ext.grid.GridPanel-style"></a>\r
946             <b>style</b> : String            <div class="mdesc">\r
947                         <div class="short">A custom style specification to be applied to this component's Element. Should be a valid argument to Ext.Element.app...</div>\r
948             <div class="long">\r
949                 A custom style specification to be applied to this component's Element. Should be a valid argument to <a ext:cls="Ext.Element" ext:member="applyStyles" href="output/Ext.Element.html#applyStyles">Ext.Element.applyStyles</a>.            </div>\r
950                         </div>\r
951         </td>\r
952         <td class="msource"><a ext:cls="Ext.Component" ext:member="#style" href="output/Ext.Component.html#style">Component</a></td>\r
953     </tr>\r
954         <tr class="config-row inherited expandable">\r
955         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
956         <td class="sig">\r
957         <a id="Ext.grid.GridPanel-tabTip"></a>\r
958             <b>tabTip</b> : String            <div class="mdesc">\r
959                         <div class="short">Adds a tooltip when mousing over the tab of a Ext.Panel which is an item of a Ext.TabPanel. Ext.QuickTips.init() must...</div>\r
960             <div class="long">\r
961                 Adds a tooltip when mousing over the tab of a Ext.Panel which is an item of a Ext.TabPanel. Ext.QuickTips.init() must be called in order for the tips to render.            </div>\r
962                         </div>\r
963         </td>\r
964         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#tabTip" href="output/Ext.Panel.html#tabTip">Panel</a></td>\r
965     </tr>\r
966         <tr class="config-row inherited alt expandable">\r
967         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
968         <td class="sig">\r
969         <a id="Ext.grid.GridPanel-tbar"></a>\r
970             <b>tbar</b> : Object/Array            <div class="mdesc">\r
971                         <div class="short">The top toolbar of the panel. This can be either an Ext.Toolbar object or an array of buttons/button configs to be ad...</div>\r
972             <div class="long">\r
973                 The top toolbar of the panel. This can be either an <a ext:cls="Ext.Toolbar" href="output/Ext.Toolbar.html">Ext.Toolbar</a> object or an array of buttons/button configs to be added to the toolbar. Note that this is not available as a property after render. To access the top toolbar after render, use <a ext:cls="Ext.Panel" ext:member="getTopToolbar" href="output/Ext.Panel.html#getTopToolbar">getTopToolbar</a>.            </div>\r
974                         </div>\r
975         </td>\r
976         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#tbar" href="output/Ext.Panel.html#tbar">Panel</a></td>\r
977     </tr>\r
978         <tr class="config-row inherited expandable">\r
979         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
980         <td class="sig">\r
981         <a id="Ext.grid.GridPanel-title"></a>\r
982             <b>title</b> : String            <div class="mdesc">\r
983                         <div class="short">The title text to display in the panel header (defaults to ''). When a title is specified the header element will aut...</div>\r
984             <div class="long">\r
985                 The title text to display in the panel header (defaults to ''). When a title is specified the header element will automatically be created and displayed unless <a ext:cls="Ext.Panel" ext:member="header" href="output/Ext.Panel.html#header">header</a> is explicitly set to false. If you don't want to specify a title at config time, but you may want one later, you must either specify a non-empty title (a blank space ' ' will do) or header:true so that the container element will get created.            </div>\r
986                         </div>\r
987         </td>\r
988         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#title" href="output/Ext.Panel.html#title">Panel</a></td>\r
989     </tr>\r
990         <tr class="config-row inherited alt expandable">\r
991         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
992         <td class="sig">\r
993         <a id="Ext.grid.GridPanel-titleCollapse"></a>\r
994             <b>titleCollapse</b> : Boolean            <div class="mdesc">\r
995                         <div class="short">True to allow expanding and collapsing the panel (when collapsible = true) by clicking anywhere in the header bar, fa...</div>\r
996             <div class="long">\r
997                 True to allow expanding and collapsing the panel (when <a ext:cls="Ext.Panel" ext:member="collapsible" href="output/Ext.Panel.html#collapsible">collapsible</a> = true) by clicking anywhere in the header bar, false to allow it only by clicking to tool button (defaults to false).            </div>\r
998                         </div>\r
999         </td>\r
1000         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#titleCollapse" href="output/Ext.Panel.html#titleCollapse">Panel</a></td>\r
1001     </tr>\r
1002         <tr class="config-row inherited expandable">\r
1003         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1004         <td class="sig">\r
1005         <a id="Ext.grid.GridPanel-tools"></a>\r
1006             <b>tools</b> : Array            <div class="mdesc">\r
1007                         <div class="short">An array of tool button configs to be added to the header tool area. When rendered, each tool is stored as an Element...</div>\r
1008             <div class="long">\r
1009                 An array of tool button configs to be added to the header tool area. When rendered, each tool is stored as an <a ext:cls="Ext.Element" href="output/Ext.Element.html">Element</a> referenced by a public property called <tt><b></b>tools.<i>&lt;tool-type&gt;</i></tt> <p>Each tool config may contain the following properties: <div class="mdetail-params"><ul> <li><b>id</b> : String<div class="sub-desc"><b>Required.</b> The type of tool to create. Values may be<ul> <li><tt>toggle</tt> (Created by default when <a ext:cls="Ext.Panel" ext:member="collapsible" href="output/Ext.Panel.html#collapsible">collapsible</a> is <tt>true</tt>)</li> <li><tt>close</tt></li> <li><tt>minimize</tt></li> <li><tt>maximize</tt></li> <li><tt>restore</tt></li> <li><tt>gear</tt></li> <li><tt>pin</tt></li> <li><tt>unpin</tt></li> <li><tt>right</tt></li> <li><tt>left</tt></li> <li><tt>up</tt></li> <li><tt>down</tt></li> <li><tt>refresh</tt></li> <li><tt>minus</tt></li> <li><tt>plus</tt></li> <li><tt>help</tt></li> <li><tt>search</tt></li> <li><tt>save</tt></li> <li><tt>print</tt></li> </ul></div></li> <li><b>handler</b> : Function<div class="sub-desc"><b>Required.</b> The function to call when clicked. Arguments passed are:<ul> <li><b>event</b> : Ext.EventObject<div class="sub-desc">The click event.</div></li> <li><b>toolEl</b> : Ext.Element<div class="sub-desc">The tool Element.</div></li> <li><b>Panel</b> : Ext.Panel<div class="sub-desc">The host Panel</div></li> </ul></div></li> <li><b>scope</b> : Object<div class="sub-desc">The scope in which to call the handler.</div></li> <li><b>qtip</b> : String/Object<div class="sub-desc">A tip string, or a config argument to <a ext:cls="Ext.QuickTip" ext:member="register" href="output/Ext.QuickTip.html#register">Ext.QuickTip.register</a></div></li> <li><b>hidden</b> : Boolean<div class="sub-desc">True to initially render hidden.</div></li> <li><b>on</b> : Object<div class="sub-desc">A listener config object specifiying event listeners in the format of an argument to <a ext:cls="Ext.Panel" ext:member="addListener" href="output/Ext.Panel.html#addListener">addListener</a></div></li> </ul></div> Example usage: <pre><code>tools:[{
1010     id:<em>'refresh'</em>,
1011     qtip: <em>'Refresh form Data'</em>,
1012     <i>// hidden:true,</i>
1013     handler: <b>function</b>(event, toolEl, panel){
1014         <i>// refresh logic</i>
1015     }
1016 }]</code></pre> Note that apart from the toggle tool which is provided when a panel is collapsible, these tools only provide the visual button. Any required functionality must be provided by adding handlers that implement the necessary behavior.            </div>\r
1017                         </div>\r
1018         </td>\r
1019         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#tools" href="output/Ext.Panel.html#tools">Panel</a></td>\r
1020     </tr>\r
1021         <tr class="config-row alt">\r
1022         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1023         <td class="sig">\r
1024         <a id="Ext.grid.GridPanel-trackMouseOver"></a>\r
1025             <b>trackMouseOver</b> : Boolean            <div class="mdesc">\r
1026                             True to highlight rows when the mouse is over. Default is true.                        </div>\r
1027         </td>\r
1028         <td class="msource">GridPanel</td>\r
1029     </tr>\r
1030         <tr class="config-row">\r
1031         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1032         <td class="sig">\r
1033         <a id="Ext.grid.GridPanel-view"></a>\r
1034             <b>view</b> : Object            <div class="mdesc">\r
1035                             The <a ext:cls="Ext.grid.GridView" href="output/Ext.grid.GridView.html">Ext.grid.GridView</a> used by the grid. This can be set before a call to render().                        </div>\r
1036         </td>\r
1037         <td class="msource">GridPanel</td>\r
1038     </tr>\r
1039         <tr class="config-row alt expandable">\r
1040         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1041         <td class="sig">\r
1042         <a id="Ext.grid.GridPanel-viewConfig"></a>\r
1043             <b>viewConfig</b> : Object            <div class="mdesc">\r
1044                         <div class="short">A config object that will be used to create the grid's UI view. Any of the config options available for Ext.grid.Grid...</div>\r
1045             <div class="long">\r
1046                 A config object that will be used to create the grid's UI view. Any of the config options available for <a ext:cls="Ext.grid.GridView" href="output/Ext.grid.GridView.html">Ext.grid.GridView</a> can be specified here. This option is ignored if <a ext:cls="Ext.grid.GridPanel" ext:member="view" href="output/Ext.grid.GridPanel.html#view">view</a> is xpecified.            </div>\r
1047                         </div>\r
1048         </td>\r
1049         <td class="msource">GridPanel</td>\r
1050     </tr>\r
1051         <tr class="config-row inherited">\r
1052         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1053         <td class="sig">\r
1054         <a id="Ext.grid.GridPanel-width"></a>\r
1055             <b>width</b> : Number            <div class="mdesc">\r
1056                             The width of this component in pixels (defaults to auto).                        </div>\r
1057         </td>\r
1058         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#width" href="output/Ext.BoxComponent.html#width">BoxComponent</a></td>\r
1059     </tr>\r
1060         <tr class="config-row inherited alt">\r
1061         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1062         <td class="sig">\r
1063         <a id="Ext.grid.GridPanel-x"></a>\r
1064             <b>x</b> : Number            <div class="mdesc">\r
1065                             The local x (left) coordinate for this component if contained within a positioning container.                        </div>\r
1066         </td>\r
1067         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#x" href="output/Ext.BoxComponent.html#x">BoxComponent</a></td>\r
1068     </tr>\r
1069         <tr class="config-row inherited expandable">\r
1070         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1071         <td class="sig">\r
1072         <a id="Ext.grid.GridPanel-xtype"></a>\r
1073             <b>xtype</b> : String            <div class="mdesc">\r
1074                         <div class="short">The registered xtype to create. This config option is not used when passing a config object into a constructor. This ...</div>\r
1075             <div class="long">\r
1076                 The registered xtype to create. This config option is not used when passing a config object into a constructor. This config option is used only when lazy instantiation is being used, and a child item of a Container is being specified not as a fully instantiated Component, but as a <i>Component config object</i>. The xtype will be looked up at render time up to determine what type of child Component to create.<br><br> The predefined xtypes are listed <a ext:cls="Ext.Component" href="output/Ext.Component.html">here</a>. <br><br> If you subclass Components to create your own Components, you may register them using <a ext:cls="Ext.ComponentMgr" ext:member="registerType" href="output/Ext.ComponentMgr.html#registerType">Ext.ComponentMgr.registerType</a> in order to be able to take advantage of lazy instantiation and rendering.            </div>\r
1077                         </div>\r
1078         </td>\r
1079         <td class="msource"><a ext:cls="Ext.Component" ext:member="#xtype" href="output/Ext.Component.html#xtype">Component</a></td>\r
1080     </tr>\r
1081         <tr class="config-row inherited alt">\r
1082         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1083         <td class="sig">\r
1084         <a id="Ext.grid.GridPanel-y"></a>\r
1085             <b>y</b> : Number            <div class="mdesc">\r
1086                             The local y (top) coordinate for this component if contained within a positioning container.                        </div>\r
1087         </td>\r
1088         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#y" href="output/Ext.BoxComponent.html#y">BoxComponent</a></td>\r
1089     </tr>\r
1090             </table>
1091                 <a id="Ext.grid.GridPanel-props"></a>
1092         <h2>Public Properties</h2>
1093                 <table cellspacing="0" class="member-table">
1094             <tr>
1095                 <th class="sig-header" colspan="2">Property</th>
1096                 <th class="msource-header">Defined By</th>
1097             </tr>
1098                 <tr class="property-row inherited expandable">\r
1099         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1100         <td class="sig">\r
1101         <a id="Ext.grid.GridPanel-body"></a>\r
1102             <b>body</b> : Ext.Element            <div class="mdesc">\r
1103                         <div class="short">
1104 The Panel's body Element which may be used to contain HTML content.
1105 The content may be specified in the html config,...</div>\r
1106             <div class="long">\r
1107                 
1108 The Panel's body <a ext:cls="Ext.Element" href="output/Ext.Element.html">Element</a> which may be used to contain HTML content.
1109 The content may be specified in the <a ext:cls="Ext.Panel" ext:member="html" href="output/Ext.Panel.html#html">html</a> config, or it may be loaded using the
1110 <a ext:cls="autoLoad" href="output/autoLoad.html">autoLoad</a> config, or through the Panel's <a ext:cls="Ext.Panel" ext:member="getUpdater" href="output/Ext.Panel.html#getUpdater">Updater</a>. Read-only.
1111 <p>If this is used to load visible HTML elements in either way, then
1112 the Panel may not be used as a Layout for hosting nested Panels.</p>
1113 <p>If this Panel is intended to be used as the host of a Layout (See <a ext:cls="Ext.Panel" ext:member="layout" href="output/Ext.Panel.html#layout">layout</a>
1114 then the body Element must not be loaded or changed - it is under the control
1115 of the Panel's Layout.            </div>\r
1116                         </div>\r
1117         </td>\r
1118         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#body" href="output/Ext.Panel.html#body">Panel</a></td>\r
1119     </tr>\r
1120         <tr class="property-row inherited alt">\r
1121         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1122         <td class="sig">\r
1123         <a id="Ext.grid.GridPanel-buttons"></a>\r
1124             <b>buttons</b> : Array            <div class="mdesc">\r
1125                             This Panel's Array of buttons as created from the <tt>buttons</tt>
1126 config property. Read only.                        </div>\r
1127         </td>\r
1128         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#buttons" href="output/Ext.Panel.html#buttons">Panel</a></td>\r
1129     </tr>\r
1130         <tr class="property-row inherited expandable">\r
1131         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1132         <td class="sig">\r
1133         <a id="Ext.grid.GridPanel-dd"></a>\r
1134             <b>dd</b> : Ext.dd.DragSource.            <div class="mdesc">\r
1135                         <div class="short">If this Panel is configured draggable, this property will contain
1136 an instance of Ext.dd.DragSource which handles drag...</div>\r
1137             <div class="long">\r
1138                 <p>If this Panel is configured <a ext:cls="Ext.Panel" ext:member="draggable" href="output/Ext.Panel.html#draggable">draggable</a>, this property will contain
1139 an instance of <a ext:cls="Ext.dd.DragSource" href="output/Ext.dd.DragSource.html">Ext.dd.DragSource</a> which handles dragging the Panel.</p>
1140 The developer must provide implementations of the abstract methods of <a ext:cls="Ext.dd.DragSource" href="output/Ext.dd.DragSource.html">Ext.dd.DragSource</a>
1141 in order to supply behaviour for each stage of the drag/drop process. See <a ext:cls="Ext.Panel" ext:member="draggable" href="output/Ext.Panel.html#draggable">draggable</a>.            </div>\r
1142                         </div>\r
1143         </td>\r
1144         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#dd" href="output/Ext.Panel.html#dd">Panel</a></td>\r
1145     </tr>\r
1146         <tr class="property-row alt expandable">\r
1147         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1148         <td class="sig">\r
1149         <a id="Ext.grid.GridPanel-ddText"></a>\r
1150             <b>ddText</b> : String            <div class="mdesc">\r
1151                         <div class="short">
1152 Configures the text in the drag proxy (defaults to "{0} selected row(s)").
1153 {0} is replaced with the number of select...</div>\r
1154             <div class="long">\r
1155                 
1156 Configures the text in the drag proxy (defaults to "{0} selected row(s)").
1157 {0} is replaced with the number of selected rows.            </div>\r
1158                         </div>\r
1159         </td>\r
1160         <td class="msource">GridPanel</td>\r
1161     </tr>\r
1162         <tr class="property-row inherited">\r
1163         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1164         <td class="sig">\r
1165         <a id="Ext.grid.GridPanel-footer"></a>\r
1166             <b>footer</b> : Ext.Element            <div class="mdesc">\r
1167                             
1168 The Panel's footer <a ext:cls="Ext.Element" href="output/Ext.Element.html">Element</a>. Read-only.
1169 <p>This Element is used to house the Panel's <a ext:cls="Ext.Panel" ext:member="buttons" href="output/Ext.Panel.html#buttons">buttons</a>.</p>                        </div>\r
1170         </td>\r
1171         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#footer" href="output/Ext.Panel.html#footer">Panel</a></td>\r
1172     </tr>\r
1173         <tr class="property-row inherited alt">\r
1174         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1175         <td class="sig">\r
1176         <a id="Ext.grid.GridPanel-header"></a>\r
1177             <b>header</b> : Ext.Element            <div class="mdesc">\r
1178                             The Panel's header <a ext:cls="Ext.Element" href="output/Ext.Element.html">Element</a>. Read-only.
1179 <p>This Element is used to house the <a ext:cls="Ext.Panel" ext:member="title" href="output/Ext.Panel.html#title">title</a> and <a ext:cls="Ext.Panel" ext:member="tools" href="output/Ext.Panel.html#tools">tools</a></p>                        </div>\r
1180         </td>\r
1181         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#header" href="output/Ext.Panel.html#header">Panel</a></td>\r
1182     </tr>\r
1183         <tr class="property-row inherited">\r
1184         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1185         <td class="sig">\r
1186         <a id="Ext.grid.GridPanel-hidden"></a>\r
1187             <b>hidden</b> : Boolean            <div class="mdesc">\r
1188                             
1189 True if this component is hidden. Read-only.                        </div>\r
1190         </td>\r
1191         <td class="msource"><a ext:cls="Ext.Component" ext:member="#hidden" href="output/Ext.Component.html#hidden">Component</a></td>\r
1192     </tr>\r
1193         <tr class="property-row inherited alt">\r
1194         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1195         <td class="sig">\r
1196         <a id="Ext.grid.GridPanel-initialConfig"></a>\r
1197             <b>initialConfig</b> : Object            <div class="mdesc">\r
1198                             This Component's initial configuration specification. Read-only.                        </div>\r
1199         </td>\r
1200         <td class="msource"><a ext:cls="Ext.Component" ext:member="#initialConfig" href="output/Ext.Component.html#initialConfig">Component</a></td>\r
1201     </tr>\r
1202         <tr class="property-row inherited expandable">\r
1203         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1204         <td class="sig">\r
1205         <a id="Ext.grid.GridPanel-ownerCt"></a>\r
1206             <b>ownerCt</b> : Ext.Container            <div class="mdesc">\r
1207                         <div class="short">The component's owner Ext.Container (defaults to undefined, and is set automatically when
1208 the component is added to a...</div>\r
1209             <div class="long">\r
1210                 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
1211 the component is added to a container).  Read-only.            </div>\r
1212                         </div>\r
1213         </td>\r
1214         <td class="msource"><a ext:cls="Ext.Component" ext:member="#ownerCt" href="output/Ext.Component.html#ownerCt">Component</a></td>\r
1215     </tr>\r
1216         <tr class="property-row inherited alt">\r
1217         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1218         <td class="sig">\r
1219         <a id="Ext.grid.GridPanel-rendered"></a>\r
1220             <b>rendered</b> : Boolean            <div class="mdesc">\r
1221                             True if this component has been rendered. Read-only.                        </div>\r
1222         </td>\r
1223         <td class="msource"><a ext:cls="Ext.Component" ext:member="#rendered" href="output/Ext.Component.html#rendered">Component</a></td>\r
1224     </tr>\r
1225             </table>
1226                 <a id="Ext.grid.GridPanel-methods"></a>
1227         <h2>Public Methods</h2>
1228                 <table cellspacing="0" class="member-table">
1229             <tr>
1230                 <th class="sig-header" colspan="2">Method</th>
1231                 <th class="msource-header">Defined By</th>
1232             </tr>
1233                 <tr class="method-row expandable">\r
1234         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1235         <td class="sig">\r
1236         <a id="Ext.grid.GridPanel-GridPanel"></a>\r
1237             <b>GridPanel</b>(&nbsp;<code>Object config</code>&nbsp;)            <div class="mdesc">\r
1238                         <div class="short"></div>\r
1239             <div class="long">\r
1240                     <div class="mdetail-params">\r
1241         <strong>Parameters:</strong>\r
1242         <ul><li><code>config</code> : Object<div class="sub-desc">The config object</div></li>        </ul>\r
1243         <strong>Returns:</strong>\r
1244         <ul>\r
1245             <li><code></code></li>\r
1246         </ul>\r
1247     </div>\r
1248                 </div>\r
1249                         </div>\r
1250         </td>\r
1251         <td class="msource">GridPanel</td>\r
1252     </tr>\r
1253         <tr class="method-row inherited alt expandable">\r
1254         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1255         <td class="sig">\r
1256         <a id="Ext.grid.GridPanel-addButton"></a>\r
1257             <b>addButton</b>(&nbsp;<code>String/Object config</code>, <code>Function handler</code>, <code>Object scope</code>&nbsp;) : Ext.Button            <div class="mdesc">\r
1258                         <div class="short">Adds a button to this panel.  Note that this method must be called prior to rendering.  The preferred
1259 approach is to ...</div>\r
1260             <div class="long">\r
1261                 Adds a button to this panel.  Note that this method must be called prior to rendering.  The preferred
1262 approach is to add buttons via the <a ext:cls="Ext.Panel" ext:member="buttons" href="output/Ext.Panel.html#buttons">buttons</a> config.    <div class="mdetail-params">\r
1263         <strong>Parameters:</strong>\r
1264         <ul><li><code>config</code> : String/Object<div class="sub-desc">A valid <a ext:cls="Ext.Button" href="output/Ext.Button.html">Ext.Button</a> config. A string will become the text for a default
1265 button config, an object will be treated as a button config object.</div></li><li><code>handler</code> : Function<div class="sub-desc">The function to be called on button <a ext:cls="Ext.Button" ext:member="click" href="output/Ext.Button.html#click">Ext.Button.click</a></div></li><li><code>scope</code> : Object<div class="sub-desc">The scope to use for the button handler function</div></li>        </ul>\r
1266         <strong>Returns:</strong>\r
1267         <ul>\r
1268             <li><code>Ext.Button</code><div class="sub-desc">The button that was added</div></li>\r
1269         </ul>\r
1270     </div>\r
1271                 </div>\r
1272                         </div>\r
1273         </td>\r
1274         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#addButton" href="output/Ext.Panel.html#addButton">Panel</a></td>\r
1275     </tr>\r
1276         <tr class="method-row inherited expandable">\r
1277         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1278         <td class="sig">\r
1279         <a id="Ext.grid.GridPanel-addClass"></a>\r
1280             <b>addClass</b>(&nbsp;<code>string cls</code>&nbsp;) : void            <div class="mdesc">\r
1281                         <div class="short">Adds a CSS class to the component's underlying element.</div>\r
1282             <div class="long">\r
1283                 Adds a CSS class to the component's underlying element.    <div class="mdetail-params">\r
1284         <strong>Parameters:</strong>\r
1285         <ul><li><code>cls</code> : string<div class="sub-desc">The CSS class name to add</div></li>        </ul>\r
1286         <strong>Returns:</strong>\r
1287         <ul>\r
1288             <li><code>void</code></li>\r
1289         </ul>\r
1290     </div>\r
1291                 </div>\r
1292                         </div>\r
1293         </td>\r
1294         <td class="msource"><a ext:cls="Ext.Component" ext:member="#addClass" href="output/Ext.Component.html#addClass">Component</a></td>\r
1295     </tr>\r
1296         <tr class="method-row inherited alt expandable">\r
1297         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1298         <td class="sig">\r
1299         <a id="Ext.grid.GridPanel-addEvents"></a>\r
1300             <b>addEvents</b>(&nbsp;<code>Object object</code>&nbsp;) : void            <div class="mdesc">\r
1301                         <div class="short">Used to define events on this Observable</div>\r
1302             <div class="long">\r
1303                 Used to define events on this Observable    <div class="mdetail-params">\r
1304         <strong>Parameters:</strong>\r
1305         <ul><li><code>object</code> : Object<div class="sub-desc">The object with the events defined</div></li>        </ul>\r
1306         <strong>Returns:</strong>\r
1307         <ul>\r
1308             <li><code>void</code></li>\r
1309         </ul>\r
1310     </div>\r
1311                 </div>\r
1312                         </div>\r
1313         </td>\r
1314         <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#addEvents" href="output/Ext.util.Observable.html#addEvents">Observable</a></td>\r
1315     </tr>\r
1316         <tr class="method-row inherited expandable">\r
1317         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1318         <td class="sig">\r
1319         <a id="Ext.grid.GridPanel-addListener"></a>\r
1320             <b>addListener</b>(&nbsp;<code>String eventName</code>, <code>Function handler</code>, <span class="optional" title="Optional">[<code>Object scope</code>]</span>, <span class="optional" title="Optional">[<code>Object options</code>]</span>&nbsp;) : void            <div class="mdesc">\r
1321                         <div class="short">Appends an event handler to this component</div>\r
1322             <div class="long">\r
1323                 Appends an event handler to this component    <div class="mdetail-params">\r
1324         <strong>Parameters:</strong>\r
1325         <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
1326 function. The handler function's "this" context.</div></li><li><code>options</code> : Object<div class="sub-desc">(optional) An object containing handler configuration
1327 properties. This may contain any of the following properties:<ul>
1328 <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>
1329 <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>
1330 <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>
1331 <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
1332 by the specified number of milliseconds. If the event fires again within that time, the original
1333 handler is <em>not</em> invoked, but the new handler is scheduled in its place.</p></li>
1334 </ul><br>
1335 <p>
1336 <b>Combining Options</b><br>
1337 Using the options argument, it is possible to combine different types of listeners:<br>
1338 <br>
1339 A normalized, delayed, one-time listener that auto stops the event and passes a custom argument (forumId)
1340 <pre><code>el.on(<em>'click'</em>, <b>this</b>.onClick, <b>this</b>, {
1341     single: true,
1342     delay: 100,
1343     forumId: 4
1344 });</code></pre>
1345 <p>
1346 <b>Attaching multiple handlers in 1 call</b><br>
1347 The method also allows for a single argument to be passed which is a config object containing properties
1348 which specify multiple handlers.
1349 <p>
1350 <pre><code>foo.on({
1351     <em>'click'</em> : {
1352         fn: <b>this</b>.onClick,
1353         scope: <b>this</b>,
1354         delay: 100
1355     },
1356     <em>'mouseover'</em> : {
1357         fn: <b>this</b>.onMouseOver,
1358         scope: <b>this</b>
1359     },
1360     <em>'mouseout'</em> : {
1361         fn: <b>this</b>.onMouseOut,
1362         scope: <b>this</b>
1363     }
1364 });</code></pre>
1365 <p>
1366 Or a shorthand syntax:<br>
1367 <pre><code>foo.on({
1368     <em>'click'</em> : <b>this</b>.onClick,
1369     <em>'mouseover'</em> : <b>this</b>.onMouseOver,
1370     <em>'mouseout'</em> : <b>this</b>.onMouseOut,
1371      scope: <b>this</b>
1372 });</code></pre></div></li>        </ul>\r
1373         <strong>Returns:</strong>\r
1374         <ul>\r
1375             <li><code>void</code></li>\r
1376         </ul>\r
1377     </div>\r
1378                 </div>\r
1379                         </div>\r
1380         </td>\r
1381         <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#addListener" href="output/Ext.util.Observable.html#addListener">Observable</a></td>\r
1382     </tr>\r
1383         <tr class="method-row inherited alt expandable">\r
1384         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1385         <td class="sig">\r
1386         <a id="Ext.grid.GridPanel-bubble"></a>\r
1387             <b>bubble</b>(&nbsp;<code>Function fn</code>, <span class="optional" title="Optional">[<code>Object scope</code>]</span>, <span class="optional" title="Optional">[<code>Array args</code>]</span>&nbsp;) : void            <div class="mdesc">\r
1388                         <div class="short">Bubbles up the component/container heirarchy, calling the specified function with each component. The scope (this) of...</div>\r
1389             <div class="long">\r
1390                 Bubbles up the component/container heirarchy, calling the specified function with each component. The scope (<i>this</i>) of
1391 function call will be the scope provided or the current component. The arguments to the function
1392 will be the args provided or the current component. If the function returns false at any point,
1393 the bubble is stopped.    <div class="mdetail-params">\r
1394         <strong>Parameters:</strong>\r
1395         <ul><li><code>fn</code> : Function<div class="sub-desc">The function to call</div></li><li><code>scope</code> : Object<div class="sub-desc">(optional) The scope of the function (defaults to current node)</div></li><li><code>args</code> : Array<div class="sub-desc">(optional) The args to call the function with (default to passing the current component)</div></li>        </ul>\r
1396         <strong>Returns:</strong>\r
1397         <ul>\r
1398             <li><code>void</code></li>\r
1399         </ul>\r
1400     </div>\r
1401                 </div>\r
1402                         </div>\r
1403         </td>\r
1404         <td class="msource"><a ext:cls="Ext.Container" ext:member="#bubble" href="output/Ext.Container.html#bubble">Container</a></td>\r
1405     </tr>\r
1406         <tr class="method-row inherited expandable">\r
1407         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1408         <td class="sig">\r
1409         <a id="Ext.grid.GridPanel-cloneConfig"></a>\r
1410             <b>cloneConfig</b>(&nbsp;<code>Object overrides</code>&nbsp;) : Ext.Component            <div class="mdesc">\r
1411                         <div class="short">Clone the current component using the original config values passed into this instance by default.</div>\r
1412             <div class="long">\r
1413                 Clone the current component using the original config values passed into this instance by default.    <div class="mdetail-params">\r
1414         <strong>Parameters:</strong>\r
1415         <ul><li><code>overrides</code> : Object<div class="sub-desc">A new config containing any properties to override in the cloned version.
1416 An id property can be passed on this object, otherwise one will be generated to avoid duplicates.</div></li>        </ul>\r
1417         <strong>Returns:</strong>\r
1418         <ul>\r
1419             <li><code>Ext.Component</code><div class="sub-desc">clone The cloned copy of this component</div></li>\r
1420         </ul>\r
1421     </div>\r
1422                 </div>\r
1423                         </div>\r
1424         </td>\r
1425         <td class="msource"><a ext:cls="Ext.Component" ext:member="#cloneConfig" href="output/Ext.Component.html#cloneConfig">Component</a></td>\r
1426     </tr>\r
1427         <tr class="method-row inherited alt expandable">\r
1428         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1429         <td class="sig">\r
1430         <a id="Ext.grid.GridPanel-collapse"></a>\r
1431             <b>collapse</b>(&nbsp;<code>Boolean animate</code>&nbsp;) : Ext.Panel            <div class="mdesc">\r
1432                         <div class="short">Collapses the panel body so that it becomes hidden.  Fires the beforecollapse event which will
1433 cancel the collapse ac...</div>\r
1434             <div class="long">\r
1435                 Collapses the panel body so that it becomes hidden.  Fires the <a ext:cls="Ext.Panel" ext:member="beforecollapse" href="output/Ext.Panel.html#beforecollapse">beforecollapse</a> event which will
1436 cancel the collapse action if it returns false.    <div class="mdetail-params">\r
1437         <strong>Parameters:</strong>\r
1438         <ul><li><code>animate</code> : Boolean<div class="sub-desc">True to animate the transition, else false (defaults to the value of the
1439 <a ext:cls="Ext.Panel" ext:member="animCollapse" href="output/Ext.Panel.html#animCollapse">animCollapse</a> panel config)</div></li>        </ul>\r
1440         <strong>Returns:</strong>\r
1441         <ul>\r
1442             <li><code>Ext.Panel</code><div class="sub-desc">this</div></li>\r
1443         </ul>\r
1444     </div>\r
1445                 </div>\r
1446                         </div>\r
1447         </td>\r
1448         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#collapse" href="output/Ext.Panel.html#collapse">Panel</a></td>\r
1449     </tr>\r
1450         <tr class="method-row inherited expandable">\r
1451         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1452         <td class="sig">\r
1453         <a id="Ext.grid.GridPanel-destroy"></a>\r
1454             <b>destroy</b>() : void            <div class="mdesc">\r
1455                         <div class="short">Destroys this component by purging any event listeners, removing the component's element from the DOM,
1456 removing the c...</div>\r
1457             <div class="long">\r
1458                 Destroys this component by purging any event listeners, removing the component's element from the DOM,
1459 removing the component from its <a ext:cls="Ext.Container" href="output/Ext.Container.html">Ext.Container</a> (if applicable) and unregistering it from
1460 <a ext:cls="Ext.ComponentMgr" href="output/Ext.ComponentMgr.html">Ext.ComponentMgr</a>.  Destruction is generally handled automatically by the framework and this method
1461 should usually not need to be called directly.    <div class="mdetail-params">\r
1462         <strong>Parameters:</strong>\r
1463         <ul><li>None.</li>        </ul>\r
1464         <strong>Returns:</strong>\r
1465         <ul>\r
1466             <li><code>void</code></li>\r
1467         </ul>\r
1468     </div>\r
1469                 </div>\r
1470                         </div>\r
1471         </td>\r
1472         <td class="msource"><a ext:cls="Ext.Component" ext:member="#destroy" href="output/Ext.Component.html#destroy">Component</a></td>\r
1473     </tr>\r
1474         <tr class="method-row inherited alt expandable">\r
1475         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1476         <td class="sig">\r
1477         <a id="Ext.grid.GridPanel-expand"></a>\r
1478             <b>expand</b>(&nbsp;<code>Boolean animate</code>&nbsp;) : Ext.Panel            <div class="mdesc">\r
1479                         <div class="short">Expands the panel body so that it becomes visible.  Fires the beforeexpand event which will
1480 cancel the expand action ...</div>\r
1481             <div class="long">\r
1482                 Expands the panel body so that it becomes visible.  Fires the <a ext:cls="Ext.Panel" ext:member="beforeexpand" href="output/Ext.Panel.html#beforeexpand">beforeexpand</a> event which will
1483 cancel the expand action if it returns false.    <div class="mdetail-params">\r
1484         <strong>Parameters:</strong>\r
1485         <ul><li><code>animate</code> : Boolean<div class="sub-desc">True to animate the transition, else false (defaults to the value of the
1486 <a ext:cls="Ext.Panel" ext:member="animCollapse" href="output/Ext.Panel.html#animCollapse">animCollapse</a> panel config)</div></li>        </ul>\r
1487         <strong>Returns:</strong>\r
1488         <ul>\r
1489             <li><code>Ext.Panel</code><div class="sub-desc">this</div></li>\r
1490         </ul>\r
1491     </div>\r
1492                 </div>\r
1493                         </div>\r
1494         </td>\r
1495         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#expand" href="output/Ext.Panel.html#expand">Panel</a></td>\r
1496     </tr>\r
1497         <tr class="method-row inherited expandable">\r
1498         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1499         <td class="sig">\r
1500         <a id="Ext.grid.GridPanel-findParentBy"></a>\r
1501             <b>findParentBy</b>(&nbsp;<code>Function fcn</code>, <span class="optional" title="Optional">[<code>Object scope</code>]</span>&nbsp;) : Ext.Container            <div class="mdesc">\r
1502                         <div class="short">Find a container above this component at any level by a custom function. If the passed function returns
1503 true, the con...</div>\r
1504             <div class="long">\r
1505                 Find a container above this component at any level by a custom function. If the passed function returns
1506 true, the container will be returned. The passed function is called with the arguments (container, this component).    <div class="mdetail-params">\r
1507         <strong>Parameters:</strong>\r
1508         <ul><li><code>fcn</code> : Function<div class="sub-desc"></div></li><li><code>scope</code> : Object<div class="sub-desc">(optional)</div></li>        </ul>\r
1509         <strong>Returns:</strong>\r
1510         <ul>\r
1511             <li><code>Ext.Container</code><div class="sub-desc">The first Container for which the custom function returns true</div></li>\r
1512         </ul>\r
1513     </div>\r
1514                 </div>\r
1515                         </div>\r
1516         </td>\r
1517         <td class="msource"><a ext:cls="Ext.Component" ext:member="#findParentBy" href="output/Ext.Component.html#findParentBy">Component</a></td>\r
1518     </tr>\r
1519         <tr class="method-row inherited alt expandable">\r
1520         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1521         <td class="sig">\r
1522         <a id="Ext.grid.GridPanel-findParentByType"></a>\r
1523             <b>findParentByType</b>(&nbsp;<code>String/Class xtype</code>&nbsp;) : Ext.Container            <div class="mdesc">\r
1524                         <div class="short">Find a container above this component at any level by xtype or class</div>\r
1525             <div class="long">\r
1526                 Find a container above this component at any level by xtype or class    <div class="mdetail-params">\r
1527         <strong>Parameters:</strong>\r
1528         <ul><li><code>xtype</code> : String/Class<div class="sub-desc">The xtype string for a component, or the class of the component directly</div></li>        </ul>\r
1529         <strong>Returns:</strong>\r
1530         <ul>\r
1531             <li><code>Ext.Container</code><div class="sub-desc">The first Container which matches the given xtype or class</div></li>\r
1532         </ul>\r
1533     </div>\r
1534                 </div>\r
1535                         </div>\r
1536         </td>\r
1537         <td class="msource"><a ext:cls="Ext.Component" ext:member="#findParentByType" href="output/Ext.Component.html#findParentByType">Component</a></td>\r
1538     </tr>\r
1539         <tr class="method-row inherited expandable">\r
1540         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1541         <td class="sig">\r
1542         <a id="Ext.grid.GridPanel-fireEvent"></a>\r
1543             <b>fireEvent</b>(&nbsp;<code>String eventName</code>, <code>Object... args</code>&nbsp;) : Boolean            <div class="mdesc">\r
1544                         <div class="short">Fires the specified event with the passed parameters (minus the event name).</div>\r
1545             <div class="long">\r
1546                 Fires the specified event with the passed parameters (minus the event name).    <div class="mdetail-params">\r
1547         <strong>Parameters:</strong>\r
1548         <ul><li><code>eventName</code> : String<div class="sub-desc"></div></li><li><code>args</code> : Object...<div class="sub-desc">Variable number of parameters are passed to handlers</div></li>        </ul>\r
1549         <strong>Returns:</strong>\r
1550         <ul>\r
1551             <li><code>Boolean</code><div class="sub-desc">returns false if any of the handlers return false otherwise it returns true</div></li>\r
1552         </ul>\r
1553     </div>\r
1554                 </div>\r
1555                         </div>\r
1556         </td>\r
1557         <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#fireEvent" href="output/Ext.util.Observable.html#fireEvent">Observable</a></td>\r
1558     </tr>\r
1559         <tr class="method-row inherited alt expandable">\r
1560         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1561         <td class="sig">\r
1562         <a id="Ext.grid.GridPanel-focus"></a>\r
1563             <b>focus</b>(&nbsp;<span class="optional" title="Optional">[<code>Boolean selectText</code>]</span>, <span class="optional" title="Optional">[<code>Boolean/Number delay</code>]</span>&nbsp;) : Ext.Component            <div class="mdesc">\r
1564                         <div class="short">Try to focus this component.</div>\r
1565             <div class="long">\r
1566                 Try to focus this component.    <div class="mdetail-params">\r
1567         <strong>Parameters:</strong>\r
1568         <ul><li><code>selectText</code> : Boolean<div class="sub-desc">(optional) If applicable, true to also select the text in this component</div></li><li><code>delay</code> : Boolean/Number<div class="sub-desc">(optional) Delay the focus this number of milliseconds (true for 10 milliseconds)</div></li>        </ul>\r
1569         <strong>Returns:</strong>\r
1570         <ul>\r
1571             <li><code>Ext.Component</code><div class="sub-desc">this</div></li>\r
1572         </ul>\r
1573     </div>\r
1574                 </div>\r
1575                         </div>\r
1576         </td>\r
1577         <td class="msource"><a ext:cls="Ext.Component" ext:member="#focus" href="output/Ext.Component.html#focus">Component</a></td>\r
1578     </tr>\r
1579         <tr class="method-row inherited expandable">\r
1580         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1581         <td class="sig">\r
1582         <a id="Ext.grid.GridPanel-getBottomToolbar"></a>\r
1583             <b>getBottomToolbar</b>() : Ext.Toolbar            <div class="mdesc">\r
1584                         <div class="short">Returns the toolbar from the bottom (bbar) section of the panel.</div>\r
1585             <div class="long">\r
1586                 Returns the toolbar from the bottom (bbar) section of the panel.    <div class="mdetail-params">\r
1587         <strong>Parameters:</strong>\r
1588         <ul><li>None.</li>        </ul>\r
1589         <strong>Returns:</strong>\r
1590         <ul>\r
1591             <li><code>Ext.Toolbar</code><div class="sub-desc">The toolbar</div></li>\r
1592         </ul>\r
1593     </div>\r
1594                 </div>\r
1595                         </div>\r
1596         </td>\r
1597         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#getBottomToolbar" href="output/Ext.Panel.html#getBottomToolbar">Panel</a></td>\r
1598     </tr>\r
1599         <tr class="method-row inherited alt expandable">\r
1600         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1601         <td class="sig">\r
1602         <a id="Ext.grid.GridPanel-getBox"></a>\r
1603             <b>getBox</b>(&nbsp;<span class="optional" title="Optional">[<code>Boolean local</code>]</span>&nbsp;) : Object            <div class="mdesc">\r
1604                         <div class="short">Gets the current box measurements of the component's underlying element.</div>\r
1605             <div class="long">\r
1606                 Gets the current box measurements of the component's underlying element.    <div class="mdetail-params">\r
1607         <strong>Parameters:</strong>\r
1608         <ul><li><code>local</code> : Boolean<div class="sub-desc">(optional) If true the element's left and top are returned instead of page XY (defaults to false)</div></li>        </ul>\r
1609         <strong>Returns:</strong>\r
1610         <ul>\r
1611             <li><code>Object</code><div class="sub-desc">box An object in the format {x, y, width, height}</div></li>\r
1612         </ul>\r
1613     </div>\r
1614                 </div>\r
1615                         </div>\r
1616         </td>\r
1617         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#getBox" href="output/Ext.BoxComponent.html#getBox">BoxComponent</a></td>\r
1618     </tr>\r
1619         <tr class="method-row expandable">\r
1620         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1621         <td class="sig">\r
1622         <a id="Ext.grid.GridPanel-getColumnModel"></a>\r
1623             <b>getColumnModel</b>() : Ext.grid.ColumnModel            <div class="mdesc">\r
1624                         <div class="short">Returns the grid's ColumnModel.</div>\r
1625             <div class="long">\r
1626                 Returns the grid's ColumnModel.    <div class="mdetail-params">\r
1627         <strong>Parameters:</strong>\r
1628         <ul><li>None.</li>        </ul>\r
1629         <strong>Returns:</strong>\r
1630         <ul>\r
1631             <li><code>Ext.grid.ColumnModel</code><div class="sub-desc">The column model</div></li>\r
1632         </ul>\r
1633     </div>\r
1634                 </div>\r
1635                         </div>\r
1636         </td>\r
1637         <td class="msource">GridPanel</td>\r
1638     </tr>\r
1639         <tr class="method-row alt expandable">\r
1640         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1641         <td class="sig">\r
1642         <a id="Ext.grid.GridPanel-getDragDropText"></a>\r
1643             <b>getDragDropText</b>() : String            <div class="mdesc">\r
1644                         <div class="short">Called to get grid's drag proxy text, by default returns this.ddText.</div>\r
1645             <div class="long">\r
1646                 Called to get grid's drag proxy text, by default returns this.ddText.    <div class="mdetail-params">\r
1647         <strong>Parameters:</strong>\r
1648         <ul><li>None.</li>        </ul>\r
1649         <strong>Returns:</strong>\r
1650         <ul>\r
1651             <li><code>String</code><div class="sub-desc">The text</div></li>\r
1652         </ul>\r
1653     </div>\r
1654                 </div>\r
1655                         </div>\r
1656         </td>\r
1657         <td class="msource">GridPanel</td>\r
1658     </tr>\r
1659         <tr class="method-row inherited expandable">\r
1660         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1661         <td class="sig">\r
1662         <a id="Ext.grid.GridPanel-getEl"></a>\r
1663             <b>getEl</b>() : Ext.Element            <div class="mdesc">\r
1664                         <div class="short">Returns the underlying <a ext:cls="Ext.Element" href="output/Ext.Element.html">Ext.Element</a>.</div>\r
1665             <div class="long">\r
1666                 Returns the underlying <a ext:cls="Ext.Element" href="output/Ext.Element.html">Ext.Element</a>.    <div class="mdetail-params">\r
1667         <strong>Parameters:</strong>\r
1668         <ul><li>None.</li>        </ul>\r
1669         <strong>Returns:</strong>\r
1670         <ul>\r
1671             <li><code>Ext.Element</code><div class="sub-desc">The element</div></li>\r
1672         </ul>\r
1673     </div>\r
1674                 </div>\r
1675                         </div>\r
1676         </td>\r
1677         <td class="msource"><a ext:cls="Ext.Component" ext:member="#getEl" href="output/Ext.Component.html#getEl">Component</a></td>\r
1678     </tr>\r
1679         <tr class="method-row inherited alt expandable">\r
1680         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1681         <td class="sig">\r
1682         <a id="Ext.grid.GridPanel-getFrameHeight"></a>\r
1683             <b>getFrameHeight</b>() : Number            <div class="mdesc">\r
1684                         <div class="short">Returns the height in pixels of the framing elements of this panel (including any top and bottom bars and
1685 header and ...</div>\r
1686             <div class="long">\r
1687                 Returns the height in pixels of the framing elements of this panel (including any top and bottom bars and
1688 header and footer elements, but not including the body height).  To retrieve the body height see <a ext:cls="Ext.Panel" ext:member="getInnerHeight" href="output/Ext.Panel.html#getInnerHeight">getInnerHeight</a>.    <div class="mdetail-params">\r
1689         <strong>Parameters:</strong>\r
1690         <ul><li>None.</li>        </ul>\r
1691         <strong>Returns:</strong>\r
1692         <ul>\r
1693             <li><code>Number</code><div class="sub-desc">The frame height</div></li>\r
1694         </ul>\r
1695     </div>\r
1696                 </div>\r
1697                         </div>\r
1698         </td>\r
1699         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#getFrameHeight" href="output/Ext.Panel.html#getFrameHeight">Panel</a></td>\r
1700     </tr>\r
1701         <tr class="method-row inherited expandable">\r
1702         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1703         <td class="sig">\r
1704         <a id="Ext.grid.GridPanel-getFrameWidth"></a>\r
1705             <b>getFrameWidth</b>() : Number            <div class="mdesc">\r
1706                         <div class="short">Returns the width in pixels of the framing elements of this panel (not including the body width).  To
1707 retrieve the bo...</div>\r
1708             <div class="long">\r
1709                 Returns the width in pixels of the framing elements of this panel (not including the body width).  To
1710 retrieve the body width see <a ext:cls="Ext.Panel" ext:member="getInnerWidth" href="output/Ext.Panel.html#getInnerWidth">getInnerWidth</a>.    <div class="mdetail-params">\r
1711         <strong>Parameters:</strong>\r
1712         <ul><li>None.</li>        </ul>\r
1713         <strong>Returns:</strong>\r
1714         <ul>\r
1715             <li><code>Number</code><div class="sub-desc">The frame width</div></li>\r
1716         </ul>\r
1717     </div>\r
1718                 </div>\r
1719                         </div>\r
1720         </td>\r
1721         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#getFrameWidth" href="output/Ext.Panel.html#getFrameWidth">Panel</a></td>\r
1722     </tr>\r
1723         <tr class="method-row alt expandable">\r
1724         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1725         <td class="sig">\r
1726         <a id="Ext.grid.GridPanel-getGridEl"></a>\r
1727             <b>getGridEl</b>() : Element            <div class="mdesc">\r
1728                         <div class="short">Returns the grid's underlying element.</div>\r
1729             <div class="long">\r
1730                 Returns the grid's underlying element.    <div class="mdetail-params">\r
1731         <strong>Parameters:</strong>\r
1732         <ul><li>None.</li>        </ul>\r
1733         <strong>Returns:</strong>\r
1734         <ul>\r
1735             <li><code>Element</code><div class="sub-desc">The element</div></li>\r
1736         </ul>\r
1737     </div>\r
1738                 </div>\r
1739                         </div>\r
1740         </td>\r
1741         <td class="msource">GridPanel</td>\r
1742     </tr>\r
1743         <tr class="method-row inherited expandable">\r
1744         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1745         <td class="sig">\r
1746         <a id="Ext.grid.GridPanel-getId"></a>\r
1747             <b>getId</b>() : String            <div class="mdesc">\r
1748                         <div class="short">Returns the id of this component.</div>\r
1749             <div class="long">\r
1750                 Returns the id of this component.    <div class="mdetail-params">\r
1751         <strong>Parameters:</strong>\r
1752         <ul><li>None.</li>        </ul>\r
1753         <strong>Returns:</strong>\r
1754         <ul>\r
1755             <li><code>String</code></li>\r
1756         </ul>\r
1757     </div>\r
1758                 </div>\r
1759                         </div>\r
1760         </td>\r
1761         <td class="msource"><a ext:cls="Ext.Component" ext:member="#getId" href="output/Ext.Component.html#getId">Component</a></td>\r
1762     </tr>\r
1763         <tr class="method-row inherited alt expandable">\r
1764         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1765         <td class="sig">\r
1766         <a id="Ext.grid.GridPanel-getInnerHeight"></a>\r
1767             <b>getInnerHeight</b>() : Number            <div class="mdesc">\r
1768                         <div class="short">Returns the height in pixels of the body element (not including the height of any framing elements).
1769 For the frame he...</div>\r
1770             <div class="long">\r
1771                 Returns the height in pixels of the body element (not including the height of any framing elements).
1772 For the frame height see <a ext:cls="Ext.Panel" ext:member="getFrameHeight" href="output/Ext.Panel.html#getFrameHeight">getFrameHeight</a>.    <div class="mdetail-params">\r
1773         <strong>Parameters:</strong>\r
1774         <ul><li>None.</li>        </ul>\r
1775         <strong>Returns:</strong>\r
1776         <ul>\r
1777             <li><code>Number</code><div class="sub-desc">The body height</div></li>\r
1778         </ul>\r
1779     </div>\r
1780                 </div>\r
1781                         </div>\r
1782         </td>\r
1783         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#getInnerHeight" href="output/Ext.Panel.html#getInnerHeight">Panel</a></td>\r
1784     </tr>\r
1785         <tr class="method-row inherited expandable">\r
1786         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1787         <td class="sig">\r
1788         <a id="Ext.grid.GridPanel-getInnerWidth"></a>\r
1789             <b>getInnerWidth</b>() : Number            <div class="mdesc">\r
1790                         <div class="short">Returns the width in pixels of the body element (not including the width of any framing elements).
1791 For the frame widt...</div>\r
1792             <div class="long">\r
1793                 Returns the width in pixels of the body element (not including the width of any framing elements).
1794 For the frame width see <a ext:cls="Ext.Panel" ext:member="getFrameWidth" href="output/Ext.Panel.html#getFrameWidth">getFrameWidth</a>.    <div class="mdetail-params">\r
1795         <strong>Parameters:</strong>\r
1796         <ul><li>None.</li>        </ul>\r
1797         <strong>Returns:</strong>\r
1798         <ul>\r
1799             <li><code>Number</code><div class="sub-desc">The body width</div></li>\r
1800         </ul>\r
1801     </div>\r
1802                 </div>\r
1803                         </div>\r
1804         </td>\r
1805         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#getInnerWidth" href="output/Ext.Panel.html#getInnerWidth">Panel</a></td>\r
1806     </tr>\r
1807         <tr class="method-row inherited alt expandable">\r
1808         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1809         <td class="sig">\r
1810         <a id="Ext.grid.GridPanel-getItemId"></a>\r
1811             <b>getItemId</b>() : String            <div class="mdesc">\r
1812                         <div class="short">Returns the item id of this component.</div>\r
1813             <div class="long">\r
1814                 Returns the item id of this component.    <div class="mdetail-params">\r
1815         <strong>Parameters:</strong>\r
1816         <ul><li>None.</li>        </ul>\r
1817         <strong>Returns:</strong>\r
1818         <ul>\r
1819             <li><code>String</code></li>\r
1820         </ul>\r
1821     </div>\r
1822                 </div>\r
1823                         </div>\r
1824         </td>\r
1825         <td class="msource"><a ext:cls="Ext.Component" ext:member="#getItemId" href="output/Ext.Component.html#getItemId">Component</a></td>\r
1826     </tr>\r
1827         <tr class="method-row inherited expandable">\r
1828         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1829         <td class="sig">\r
1830         <a id="Ext.grid.GridPanel-getLayoutTarget"></a>\r
1831             <b>getLayoutTarget</b>() : Ext.Element            <div class="mdesc">\r
1832                         <div class="short">Returns the Element to be used to contain the child Components of this Container.
1833 An implementation is provided which...</div>\r
1834             <div class="long">\r
1835                 <p>Returns the Element to be used to contain the child Components of this Container.</p>
1836 <p>An implementation is provided which returns the Container's <a ext:cls="Ext.Container" ext:member="getEl" href="output/Ext.Container.html#getEl">Element</a>, but
1837 if there is a more complex structure to a Container, this may be overridden to return
1838 the element into which the <a ext:cls="Ext.Container" ext:member="layout" href="output/Ext.Container.html#layout">layout</a> renders child Components.</p>    <div class="mdetail-params">\r
1839         <strong>Parameters:</strong>\r
1840         <ul><li>None.</li>        </ul>\r
1841         <strong>Returns:</strong>\r
1842         <ul>\r
1843             <li><code>Ext.Element</code><div class="sub-desc">The Element to render child Components into.</div></li>\r
1844         </ul>\r
1845     </div>\r
1846                 </div>\r
1847                         </div>\r
1848         </td>\r
1849         <td class="msource"><a ext:cls="Ext.Container" ext:member="#getLayoutTarget" href="output/Ext.Container.html#getLayoutTarget">Container</a></td>\r
1850     </tr>\r
1851         <tr class="method-row inherited alt expandable">\r
1852         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1853         <td class="sig">\r
1854         <a id="Ext.grid.GridPanel-getPosition"></a>\r
1855             <b>getPosition</b>(&nbsp;<span class="optional" title="Optional">[<code>Boolean local</code>]</span>&nbsp;) : Array            <div class="mdesc">\r
1856                         <div class="short">Gets the current XY position of the component's underlying element.</div>\r
1857             <div class="long">\r
1858                 Gets the current XY position of the component's underlying element.    <div class="mdetail-params">\r
1859         <strong>Parameters:</strong>\r
1860         <ul><li><code>local</code> : Boolean<div class="sub-desc">(optional) If true the element's left and top are returned instead of page XY (defaults to false)</div></li>        </ul>\r
1861         <strong>Returns:</strong>\r
1862         <ul>\r
1863             <li><code>Array</code><div class="sub-desc">The XY position of the element (e.g., [100, 200])</div></li>\r
1864         </ul>\r
1865     </div>\r
1866                 </div>\r
1867                         </div>\r
1868         </td>\r
1869         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#getPosition" href="output/Ext.BoxComponent.html#getPosition">BoxComponent</a></td>\r
1870     </tr>\r
1871         <tr class="method-row expandable">\r
1872         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1873         <td class="sig">\r
1874         <a id="Ext.grid.GridPanel-getSelectionModel"></a>\r
1875             <b>getSelectionModel</b>() : Ext.grid.AbstractSelectionModel            <div class="mdesc">\r
1876                         <div class="short">Returns the grid's SelectionModel.</div>\r
1877             <div class="long">\r
1878                 Returns the grid's SelectionModel.    <div class="mdetail-params">\r
1879         <strong>Parameters:</strong>\r
1880         <ul><li>None.</li>        </ul>\r
1881         <strong>Returns:</strong>\r
1882         <ul>\r
1883             <li><code>Ext.grid.AbstractSelectionModel</code><div class="sub-desc">SelectionModel} The selection model configured by the @link (#selModel} configuration option. This will be a subclass of {Ext.grid.AbstractSelectionModel} which provides either cell or row selectability.</div></li>\r
1884         </ul>\r
1885     </div>\r
1886                 </div>\r
1887                         </div>\r
1888         </td>\r
1889         <td class="msource">GridPanel</td>\r
1890     </tr>\r
1891         <tr class="method-row inherited alt expandable">\r
1892         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1893         <td class="sig">\r
1894         <a id="Ext.grid.GridPanel-getSize"></a>\r
1895             <b>getSize</b>() : Object            <div class="mdesc">\r
1896                         <div class="short">Gets the current size of the component's underlying element.</div>\r
1897             <div class="long">\r
1898                 Gets the current size of the component's underlying element.    <div class="mdetail-params">\r
1899         <strong>Parameters:</strong>\r
1900         <ul><li>None.</li>        </ul>\r
1901         <strong>Returns:</strong>\r
1902         <ul>\r
1903             <li><code>Object</code><div class="sub-desc">An object containing the element's size {width: (element width), height: (element height)}</div></li>\r
1904         </ul>\r
1905     </div>\r
1906                 </div>\r
1907                         </div>\r
1908         </td>\r
1909         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#getSize" href="output/Ext.BoxComponent.html#getSize">BoxComponent</a></td>\r
1910     </tr>\r
1911         <tr class="method-row expandable">\r
1912         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1913         <td class="sig">\r
1914         <a id="Ext.grid.GridPanel-getStore"></a>\r
1915             <b>getStore</b>() : Ext.data.Store            <div class="mdesc">\r
1916                         <div class="short">Returns the grid's data store.</div>\r
1917             <div class="long">\r
1918                 Returns the grid's data store.    <div class="mdetail-params">\r
1919         <strong>Parameters:</strong>\r
1920         <ul><li>None.</li>        </ul>\r
1921         <strong>Returns:</strong>\r
1922         <ul>\r
1923             <li><code>Ext.data.Store</code><div class="sub-desc">The store</div></li>\r
1924         </ul>\r
1925     </div>\r
1926                 </div>\r
1927                         </div>\r
1928         </td>\r
1929         <td class="msource">GridPanel</td>\r
1930     </tr>\r
1931         <tr class="method-row inherited alt expandable">\r
1932         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1933         <td class="sig">\r
1934         <a id="Ext.grid.GridPanel-getTool"></a>\r
1935             <b>getTool</b>(&nbsp;<code>String id</code>&nbsp;) : Object            <div class="mdesc">\r
1936                         <div class="short">Retrieve a tool by id.</div>\r
1937             <div class="long">\r
1938                 Retrieve a tool by id.    <div class="mdetail-params">\r
1939         <strong>Parameters:</strong>\r
1940         <ul><li><code>id</code> : String<div class="sub-desc"></div></li>        </ul>\r
1941         <strong>Returns:</strong>\r
1942         <ul>\r
1943             <li><code>Object</code><div class="sub-desc">tool</div></li>\r
1944         </ul>\r
1945     </div>\r
1946                 </div>\r
1947                         </div>\r
1948         </td>\r
1949         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#getTool" href="output/Ext.Panel.html#getTool">Panel</a></td>\r
1950     </tr>\r
1951         <tr class="method-row inherited expandable">\r
1952         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1953         <td class="sig">\r
1954         <a id="Ext.grid.GridPanel-getTopToolbar"></a>\r
1955             <b>getTopToolbar</b>() : Ext.Toolbar            <div class="mdesc">\r
1956                         <div class="short">Returns the toolbar from the top (tbar) section of the panel.</div>\r
1957             <div class="long">\r
1958                 Returns the toolbar from the top (tbar) section of the panel.    <div class="mdetail-params">\r
1959         <strong>Parameters:</strong>\r
1960         <ul><li>None.</li>        </ul>\r
1961         <strong>Returns:</strong>\r
1962         <ul>\r
1963             <li><code>Ext.Toolbar</code><div class="sub-desc">The toolbar</div></li>\r
1964         </ul>\r
1965     </div>\r
1966                 </div>\r
1967                         </div>\r
1968         </td>\r
1969         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#getTopToolbar" href="output/Ext.Panel.html#getTopToolbar">Panel</a></td>\r
1970     </tr>\r
1971         <tr class="method-row alt expandable">\r
1972         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1973         <td class="sig">\r
1974         <a id="Ext.grid.GridPanel-getView"></a>\r
1975             <b>getView</b>() : Ext.grid.GridView            <div class="mdesc">\r
1976                         <div class="short">Returns the grid's GridView object.</div>\r
1977             <div class="long">\r
1978                 Returns the grid's GridView object.    <div class="mdetail-params">\r
1979         <strong>Parameters:</strong>\r
1980         <ul><li>None.</li>        </ul>\r
1981         <strong>Returns:</strong>\r
1982         <ul>\r
1983             <li><code>Ext.grid.GridView</code><div class="sub-desc">The grid view</div></li>\r
1984         </ul>\r
1985     </div>\r
1986                 </div>\r
1987                         </div>\r
1988         </td>\r
1989         <td class="msource">GridPanel</td>\r
1990     </tr>\r
1991         <tr class="method-row inherited expandable">\r
1992         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1993         <td class="sig">\r
1994         <a id="Ext.grid.GridPanel-getXType"></a>\r
1995             <b>getXType</b>() : String            <div class="mdesc">\r
1996                         <div class="short">Gets the xtype for this component as registered with Ext.ComponentMgr. For a list of all
1997 available xtypes, see the Ex...</div>\r
1998             <div class="long">\r
1999                 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
2000 available xtypes, see the <a ext:cls="Ext.Component" href="output/Ext.Component.html">Ext.Component</a> header. Example usage:
2001 <pre><code>var t = <b>new</b> Ext.form.TextField();
2002 alert(t.getXType());  // alerts <em>'textfield'</em></code></pre>    <div class="mdetail-params">\r
2003         <strong>Parameters:</strong>\r
2004         <ul><li>None.</li>        </ul>\r
2005         <strong>Returns:</strong>\r
2006         <ul>\r
2007             <li><code>String</code><div class="sub-desc">The xtype</div></li>\r
2008         </ul>\r
2009     </div>\r
2010                 </div>\r
2011                         </div>\r
2012         </td>\r
2013         <td class="msource"><a ext:cls="Ext.Component" ext:member="#getXType" href="output/Ext.Component.html#getXType">Component</a></td>\r
2014     </tr>\r
2015         <tr class="method-row inherited alt expandable">\r
2016         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2017         <td class="sig">\r
2018         <a id="Ext.grid.GridPanel-getXTypes"></a>\r
2019             <b>getXTypes</b>() : String            <div class="mdesc">\r
2020                         <div class="short">Returns this Component's xtype hierarchy as a slash-delimited string. For a list of all
2021 available xtypes, see the Ext...</div>\r
2022             <div class="long">\r
2023                 <p>Returns this Component's xtype hierarchy as a slash-delimited string. For a list of all
2024 available xtypes, see the <a ext:cls="Ext.Component" href="output/Ext.Component.html">Ext.Component</a> header.</p>
2025 <p><b>If using your own subclasses, be aware that a Component must register its own xtype
2026 to participate in determination of inherited xtypes.</b></p>
2027 <p>Example usage:</p>
2028 <pre><code>\r
2029 var t = new Ext.form.TextField();\r
2030 alert(t.getXTypes());  // alerts 'component/box/field/textfield'</pre></code>    <div class="mdetail-params">\r
2031         <strong>Parameters:</strong>\r
2032         <ul><li>None.</li>        </ul>\r
2033         <strong>Returns:</strong>\r
2034         <ul>\r
2035             <li><code>String</code><div class="sub-desc">The xtype hierarchy string</div></li>\r
2036         </ul>\r
2037     </div>\r
2038                 </div>\r
2039                         </div>\r
2040         </td>\r
2041         <td class="msource"><a ext:cls="Ext.Component" ext:member="#getXTypes" href="output/Ext.Component.html#getXTypes">Component</a></td>\r
2042     </tr>\r
2043         <tr class="method-row inherited expandable">\r
2044         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2045         <td class="sig">\r
2046         <a id="Ext.grid.GridPanel-hasListener"></a>\r
2047             <b>hasListener</b>(&nbsp;<code>String eventName</code>&nbsp;) : Boolean            <div class="mdesc">\r
2048                         <div class="short">Checks to see if this object has any listeners for a specified event</div>\r
2049             <div class="long">\r
2050                 Checks to see if this object has any listeners for a specified event    <div class="mdetail-params">\r
2051         <strong>Parameters:</strong>\r
2052         <ul><li><code>eventName</code> : String<div class="sub-desc">The name of the event to check for</div></li>        </ul>\r
2053         <strong>Returns:</strong>\r
2054         <ul>\r
2055             <li><code>Boolean</code><div class="sub-desc">True if the event is being listened for, else false</div></li>\r
2056         </ul>\r
2057     </div>\r
2058                 </div>\r
2059                         </div>\r
2060         </td>\r
2061         <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#hasListener" href="output/Ext.util.Observable.html#hasListener">Observable</a></td>\r
2062     </tr>\r
2063         <tr class="method-row inherited alt expandable">\r
2064         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2065         <td class="sig">\r
2066         <a id="Ext.grid.GridPanel-hide"></a>\r
2067             <b>hide</b>() : Ext.Component            <div class="mdesc">\r
2068                         <div class="short">Hide this component.</div>\r
2069             <div class="long">\r
2070                 Hide this component.    <div class="mdetail-params">\r
2071         <strong>Parameters:</strong>\r
2072         <ul><li>None.</li>        </ul>\r
2073         <strong>Returns:</strong>\r
2074         <ul>\r
2075             <li><code>Ext.Component</code><div class="sub-desc">this</div></li>\r
2076         </ul>\r
2077     </div>\r
2078                 </div>\r
2079                         </div>\r
2080         </td>\r
2081         <td class="msource"><a ext:cls="Ext.Component" ext:member="#hide" href="output/Ext.Component.html#hide">Component</a></td>\r
2082     </tr>\r
2083         <tr class="method-row inherited expandable">\r
2084         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2085         <td class="sig">\r
2086         <a id="Ext.grid.GridPanel-isVisible"></a>\r
2087             <b>isVisible</b>() : void            <div class="mdesc">\r
2088                         <div class="short">Returns true if this component is visible.</div>\r
2089             <div class="long">\r
2090                 Returns true if this component is visible.    <div class="mdetail-params">\r
2091         <strong>Parameters:</strong>\r
2092         <ul><li>None.</li>        </ul>\r
2093         <strong>Returns:</strong>\r
2094         <ul>\r
2095             <li><code>void</code></li>\r
2096         </ul>\r
2097     </div>\r
2098                 </div>\r
2099                         </div>\r
2100         </td>\r
2101         <td class="msource"><a ext:cls="Ext.Component" ext:member="#isVisible" href="output/Ext.Component.html#isVisible">Component</a></td>\r
2102     </tr>\r
2103         <tr class="method-row inherited alt expandable">\r
2104         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2105         <td class="sig">\r
2106         <a id="Ext.grid.GridPanel-isXType"></a>\r
2107             <b>isXType</b>(&nbsp;<code>String xtype</code>, <span class="optional" title="Optional">[<code>Boolean shallow</code>]</span>&nbsp;) : void            <div class="mdesc">\r
2108                         <div class="short">Tests whether or not this Component is of a specific xtype. This can test whether this Component is descended
2109 from th...</div>\r
2110             <div class="long">\r
2111                 <p>Tests whether or not this Component is of a specific xtype. This can test whether this Component is descended
2112 from the xtype (default) or whether it is directly of the xtype specified (shallow = true).</p>
2113 <p><b>If using your own subclasses, be aware that a Component must register its own xtype
2114 to participate in determination of inherited xtypes.</b></p>
2115 <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>
2116 <p>Example usage:</p>
2117 <pre><code>var t = <b>new</b> Ext.form.TextField();
2118 <b>var</b> isText = t.isXType(<em>'textfield'</em>);        <i>// true</i>
2119 <b>var</b> isBoxSubclass = t.isXType(<em>'box'</em>);       <i>// true, descended from BoxComponent</i>
2120 <b>var</b> isBoxInstance = t.isXType(<em>'box'</em>, true); // false, not a direct BoxComponent instance</code></pre>    <div class="mdetail-params">\r
2121         <strong>Parameters:</strong>\r
2122         <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
2123 the default), or true to check whether this Component is directly of the specified xtype.</div></li>        </ul>\r
2124         <strong>Returns:</strong>\r
2125         <ul>\r
2126             <li><code>void</code></li>\r
2127         </ul>\r
2128     </div>\r
2129                 </div>\r
2130                         </div>\r
2131         </td>\r
2132         <td class="msource"><a ext:cls="Ext.Component" ext:member="#isXType" href="output/Ext.Component.html#isXType">Component</a></td>\r
2133     </tr>\r
2134         <tr class="method-row inherited expandable">\r
2135         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2136         <td class="sig">\r
2137         <a id="Ext.grid.GridPanel-on"></a>\r
2138             <b>on</b>(&nbsp;<code>String eventName</code>, <code>Function handler</code>, <span class="optional" title="Optional">[<code>Object scope</code>]</span>, <span class="optional" title="Optional">[<code>Object options</code>]</span>&nbsp;) : void            <div class="mdesc">\r
2139                         <div class="short">Appends an event handler to this element (shorthand for addListener)</div>\r
2140             <div class="long">\r
2141                 Appends an event handler to this element (shorthand for addListener)    <div class="mdetail-params">\r
2142         <strong>Parameters:</strong>\r
2143         <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
2144 function. The handler function's "this" context.</div></li><li><code>options</code> : Object<div class="sub-desc">(optional)</div></li>        </ul>\r
2145         <strong>Returns:</strong>\r
2146         <ul>\r
2147             <li><code>void</code></li>\r
2148         </ul>\r
2149     </div>\r
2150                 </div>\r
2151                         </div>\r
2152         </td>\r
2153         <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#on" href="output/Ext.util.Observable.html#on">Observable</a></td>\r
2154     </tr>\r
2155         <tr class="method-row inherited alt expandable">\r
2156         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2157         <td class="sig">\r
2158         <a id="Ext.grid.GridPanel-purgeListeners"></a>\r
2159             <b>purgeListeners</b>() : void            <div class="mdesc">\r
2160                         <div class="short">Removes all listeners for this object</div>\r
2161             <div class="long">\r
2162                 Removes all listeners for this object    <div class="mdetail-params">\r
2163         <strong>Parameters:</strong>\r
2164         <ul><li>None.</li>        </ul>\r
2165         <strong>Returns:</strong>\r
2166         <ul>\r
2167             <li><code>void</code></li>\r
2168         </ul>\r
2169     </div>\r
2170                 </div>\r
2171                         </div>\r
2172         </td>\r
2173         <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#purgeListeners" href="output/Ext.util.Observable.html#purgeListeners">Observable</a></td>\r
2174     </tr>\r
2175         <tr class="method-row expandable">\r
2176         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2177         <td class="sig">\r
2178         <a id="Ext.grid.GridPanel-reconfigure"></a>\r
2179             <b>reconfigure</b>(&nbsp;<code>Ext.data.Store store</code>, <code>Ext.grid.ColumnModel colModel</code>&nbsp;) : void            <div class="mdesc">\r
2180                         <div class="short">Reconfigures the grid to use a different Store and Column Model.
2181 The View will be bound to the new objects and refres...</div>\r
2182             <div class="long">\r
2183                 <p>Reconfigures the grid to use a different Store and Column Model.
2184 The View will be bound to the new objects and refreshed.</p>
2185 <p>Be aware that upon reconfiguring a GridPanel, certain existing settings <i>may</i> become
2186 invalidated. For example the configured <a ext:cls="Ext.grid.GridPanel" ext:member="autoExpandColumn" href="output/Ext.grid.GridPanel.html#autoExpandColumn">autoExpandColumn</a> may no longer exist in the
2187 new ColumnModel. Also, an existing <a ext:cls="Ext.PagingToolbar" href="output/Ext.PagingToolbar.html">PagingToolbar</a> will still be bound
2188 to the old Store, and will need rebinding. Any <a ext:cls="Ext.grid.GridPanel" ext:member="plugins" href="output/Ext.grid.GridPanel.html#plugins">plugins</a> might also need reconfiguring
2189 with the new data.</p>    <div class="mdetail-params">\r
2190         <strong>Parameters:</strong>\r
2191         <ul><li><code>store</code> : Ext.data.Store<div class="sub-desc">The new <a ext:cls="Ext.data.Store" href="output/Ext.data.Store.html">Ext.data.Store</a> object</div></li><li><code>colModel</code> : Ext.grid.ColumnModel<div class="sub-desc">The new <a ext:cls="Ext.grid.ColumnModel" href="output/Ext.grid.ColumnModel.html">Ext.grid.ColumnModel</a> object</div></li>        </ul>\r
2192         <strong>Returns:</strong>\r
2193         <ul>\r
2194             <li><code>void</code></li>\r
2195         </ul>\r
2196     </div>\r
2197                 </div>\r
2198                         </div>\r
2199         </td>\r
2200         <td class="msource">GridPanel</td>\r
2201     </tr>\r
2202         <tr class="method-row inherited alt expandable">\r
2203         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2204         <td class="sig">\r
2205         <a id="Ext.grid.GridPanel-relayEvents"></a>\r
2206             <b>relayEvents</b>(&nbsp;<code>Object o</code>, <code>Array events</code>&nbsp;) : void            <div class="mdesc">\r
2207                         <div class="short">Relays selected events from the specified Observable as if the events were fired by <tt><b>this</b></tt>.</div>\r
2208             <div class="long">\r
2209                 Relays selected events from the specified Observable as if the events were fired by <tt><b>this</b></tt>.    <div class="mdetail-params">\r
2210         <strong>Parameters:</strong>\r
2211         <ul><li><code>o</code> : Object<div class="sub-desc">The Observable whose events this object is to relay.</div></li><li><code>events</code> : Array<div class="sub-desc">Array of event names to relay.</div></li>        </ul>\r
2212         <strong>Returns:</strong>\r
2213         <ul>\r
2214             <li><code>void</code></li>\r
2215         </ul>\r
2216     </div>\r
2217                 </div>\r
2218                         </div>\r
2219         </td>\r
2220         <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#relayEvents" href="output/Ext.util.Observable.html#relayEvents">Observable</a></td>\r
2221     </tr>\r
2222         <tr class="method-row inherited expandable">\r
2223         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2224         <td class="sig">\r
2225         <a id="Ext.grid.GridPanel-removeAll"></a>\r
2226             <b>removeAll</b>(&nbsp;<span class="optional" title="Optional">[<code>Boolean autoDestroy</code>]</span>&nbsp;) : Array            <div class="mdesc">\r
2227                         <div class="short">Removes all components from this container.</div>\r
2228             <div class="long">\r
2229                 Removes all components from this container.    <div class="mdetail-params">\r
2230         <strong>Parameters:</strong>\r
2231         <ul><li><code>autoDestroy</code> : Boolean<div class="sub-desc">(optional) True to automatically invoke the removed Component's <a ext:cls="Ext.Component" ext:member="destroy" href="output/Ext.Component.html#destroy">Ext.Component.destroy</a> function.
2232 Defaults to the value of this Container's <a ext:cls="Ext.Container" ext:member="autoDestroy" href="output/Ext.Container.html#autoDestroy">autoDestroy</a> config.</div></li>        </ul>\r
2233         <strong>Returns:</strong>\r
2234         <ul>\r
2235             <li><code>Array</code><div class="sub-desc">Array of the destroyed components</div></li>\r
2236         </ul>\r
2237     </div>\r
2238                 </div>\r
2239                         </div>\r
2240         </td>\r
2241         <td class="msource"><a ext:cls="Ext.Container" ext:member="#removeAll" href="output/Ext.Container.html#removeAll">Container</a></td>\r
2242     </tr>\r
2243         <tr class="method-row inherited alt expandable">\r
2244         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2245         <td class="sig">\r
2246         <a id="Ext.grid.GridPanel-removeClass"></a>\r
2247             <b>removeClass</b>(&nbsp;<code>string cls</code>&nbsp;) : void            <div class="mdesc">\r
2248                         <div class="short">Removes a CSS class from the component's underlying element.</div>\r
2249             <div class="long">\r
2250                 Removes a CSS class from the component's underlying element.    <div class="mdetail-params">\r
2251         <strong>Parameters:</strong>\r
2252         <ul><li><code>cls</code> : string<div class="sub-desc">The CSS class name to remove</div></li>        </ul>\r
2253         <strong>Returns:</strong>\r
2254         <ul>\r
2255             <li><code>void</code></li>\r
2256         </ul>\r
2257     </div>\r
2258                 </div>\r
2259                         </div>\r
2260         </td>\r
2261         <td class="msource"><a ext:cls="Ext.Component" ext:member="#removeClass" href="output/Ext.Component.html#removeClass">Component</a></td>\r
2262     </tr>\r
2263         <tr class="method-row inherited expandable">\r
2264         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2265         <td class="sig">\r
2266         <a id="Ext.grid.GridPanel-removeListener"></a>\r
2267             <b>removeListener</b>(&nbsp;<code>String eventName</code>, <code>Function handler</code>, <span class="optional" title="Optional">[<code>Object scope</code>]</span>&nbsp;) : void            <div class="mdesc">\r
2268                         <div class="short">Removes a listener</div>\r
2269             <div class="long">\r
2270                 Removes a listener    <div class="mdetail-params">\r
2271         <strong>Parameters:</strong>\r
2272         <ul><li><code>eventName</code> : String<div class="sub-desc">The type of event to listen for</div></li><li><code>handler</code> : Function<div class="sub-desc">The handler to remove</div></li><li><code>scope</code> : Object<div class="sub-desc">(optional) The scope (this object) for the handler</div></li>        </ul>\r
2273         <strong>Returns:</strong>\r
2274         <ul>\r
2275             <li><code>void</code></li>\r
2276         </ul>\r
2277     </div>\r
2278                 </div>\r
2279                         </div>\r
2280         </td>\r
2281         <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#removeListener" href="output/Ext.util.Observable.html#removeListener">Observable</a></td>\r
2282     </tr>\r
2283         <tr class="method-row inherited alt expandable">\r
2284         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2285         <td class="sig">\r
2286         <a id="Ext.grid.GridPanel-render"></a>\r
2287             <b>render</b>(&nbsp;<span class="optional" title="Optional">[<code>Element/HTMLElement/String container</code>]</span>, <span class="optional" title="Optional">[<code>String/Number position</code>]</span>&nbsp;) : void            <div class="mdesc">\r
2288                         <div class="short">Render this Component into the passed HTML element.
2289 If you are using a Container object to house this Component, then...</div>\r
2290             <div class="long">\r
2291                 <p>Render this Component into the passed HTML element.</p>
2292 <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
2293 do not use the render method.</b></p>
2294 <p>A Container's child Components are rendered by that Container's
2295 <a ext:cls="Ext.Container" ext:member="layout" href="output/Ext.Container.html#layout">layout</a> manager when the Container is first rendered.</p>
2296 <p>Certain layout managers allow dynamic addition of child components. Those that do
2297 include <a ext:cls="Ext.layout.CardLayout" href="output/Ext.layout.CardLayout.html">Ext.layout.CardLayout</a>, <a ext:cls="Ext.layout.AnchorLayout" href="output/Ext.layout.AnchorLayout.html">Ext.layout.AnchorLayout</a>,
2298 <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>
2299 <p>If the Container is already rendered when a new child Component is added, you may need to call
2300 the Container's <a ext:cls="Ext.Container" ext:member="doLayout" href="output/Ext.Container.html#doLayout">doLayout</a> to refresh the view which causes any
2301 unrendered child Components to be rendered. This is required so that you can add multiple
2302 child components if needed while only refreshing the layout once.</p>
2303 <p>When creating complex UIs, it is important to remember that sizing and positioning
2304 of child items is the responsibility of the Container's <a ext:cls="Ext.Container" ext:member="layout" href="output/Ext.Container.html#layout">layout</a> manager.
2305 If you expect child items to be sized in response to user interactions, you must
2306 configure the Container with a layout manager which creates and manages the type of layout you
2307 have in mind.</p>
2308 <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
2309 layout manager is used which does nothing but render child components sequentially into the
2310 Container. No sizing or positioning will be performed in this situation.</b></p>    <div class="mdetail-params">\r
2311         <strong>Parameters:</strong>\r
2312         <ul><li><code>container</code> : Element/HTMLElement/String<div class="sub-desc">(optional) The element this Component should be
2313 rendered into. If it is being created from existing markup, this should be omitted.</div></li><li><code>position</code> : String/Number<div class="sub-desc">(optional) The element ID or DOM node index within the container <b>before</b>
2314 which this component will be inserted (defaults to appending to the end of the container)</div></li>        </ul>\r
2315         <strong>Returns:</strong>\r
2316         <ul>\r
2317             <li><code>void</code></li>\r
2318         </ul>\r
2319     </div>\r
2320                 </div>\r
2321                         </div>\r
2322         </td>\r
2323         <td class="msource"><a ext:cls="Ext.Component" ext:member="#render" href="output/Ext.Component.html#render">Component</a></td>\r
2324     </tr>\r
2325         <tr class="method-row inherited expandable">\r
2326         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2327         <td class="sig">\r
2328         <a id="Ext.grid.GridPanel-resumeEvents"></a>\r
2329             <b>resumeEvents</b>() : void            <div class="mdesc">\r
2330                         <div class="short">Resume firing events. (see <a ext:cls="Ext.util.Observable" ext:member="suspendEvents" href="output/Ext.util.Observable.html#suspendEvents">suspendEvents</a>)</div>\r
2331             <div class="long">\r
2332                 Resume firing events. (see <a ext:cls="Ext.util.Observable" ext:member="suspendEvents" href="output/Ext.util.Observable.html#suspendEvents">suspendEvents</a>)    <div class="mdetail-params">\r
2333         <strong>Parameters:</strong>\r
2334         <ul><li>None.</li>        </ul>\r
2335         <strong>Returns:</strong>\r
2336         <ul>\r
2337             <li><code>void</code></li>\r
2338         </ul>\r
2339     </div>\r
2340                 </div>\r
2341                         </div>\r
2342         </td>\r
2343         <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#resumeEvents" href="output/Ext.util.Observable.html#resumeEvents">Observable</a></td>\r
2344     </tr>\r
2345         <tr class="method-row inherited alt expandable">\r
2346         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2347         <td class="sig">\r
2348         <a id="Ext.grid.GridPanel-setHeight"></a>\r
2349             <b>setHeight</b>(&nbsp;<code>Number height</code>&nbsp;) : Ext.BoxComponent            <div class="mdesc">\r
2350                         <div class="short">Sets the height of the component.  This method fires the <a ext:cls="Ext.BoxComponent" ext:member="resize" href="output/Ext.BoxComponent.html#resize">resize</a> event.</div>\r
2351             <div class="long">\r
2352                 Sets the height of the component.  This method fires the <a ext:cls="Ext.BoxComponent" ext:member="resize" href="output/Ext.BoxComponent.html#resize">resize</a> event.    <div class="mdetail-params">\r
2353         <strong>Parameters:</strong>\r
2354         <ul><li><code>height</code> : Number<div class="sub-desc">The new height to set</div></li>        </ul>\r
2355         <strong>Returns:</strong>\r
2356         <ul>\r
2357             <li><code>Ext.BoxComponent</code><div class="sub-desc">this</div></li>\r
2358         </ul>\r
2359     </div>\r
2360                 </div>\r
2361                         </div>\r
2362         </td>\r
2363         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#setHeight" href="output/Ext.BoxComponent.html#setHeight">BoxComponent</a></td>\r
2364     </tr>\r
2365         <tr class="method-row inherited expandable">\r
2366         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2367         <td class="sig">\r
2368         <a id="Ext.grid.GridPanel-setIconClass"></a>\r
2369             <b>setIconClass</b>(&nbsp;<code>String cls</code>&nbsp;) : void            <div class="mdesc">\r
2370                         <div class="short">Sets the CSS class that provides the icon image for this panel.  This method will replace any existing
2371 icon class if ...</div>\r
2372             <div class="long">\r
2373                 Sets the CSS class that provides the icon image for this panel.  This method will replace any existing
2374 icon class if one has already been set.    <div class="mdetail-params">\r
2375         <strong>Parameters:</strong>\r
2376         <ul><li><code>cls</code> : String<div class="sub-desc">The new CSS class name</div></li>        </ul>\r
2377         <strong>Returns:</strong>\r
2378         <ul>\r
2379             <li><code>void</code></li>\r
2380         </ul>\r
2381     </div>\r
2382                 </div>\r
2383                         </div>\r
2384         </td>\r
2385         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#setIconClass" href="output/Ext.Panel.html#setIconClass">Panel</a></td>\r
2386     </tr>\r
2387         <tr class="method-row inherited alt expandable">\r
2388         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2389         <td class="sig">\r
2390         <a id="Ext.grid.GridPanel-setPagePosition"></a>\r
2391             <b>setPagePosition</b>(&nbsp;<code>Number x</code>, <code>Number y</code>&nbsp;) : Ext.BoxComponent            <div class="mdesc">\r
2392                         <div class="short">Sets the page XY position of the component.  To set the left and top instead, use setPosition.
2393 This method fires the ...</div>\r
2394             <div class="long">\r
2395                 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>.
2396 This method fires the <a ext:cls="Ext.BoxComponent" ext:member="move" href="output/Ext.BoxComponent.html#move">move</a> event.    <div class="mdetail-params">\r
2397         <strong>Parameters:</strong>\r
2398         <ul><li><code>x</code> : Number<div class="sub-desc">The new x position</div></li><li><code>y</code> : Number<div class="sub-desc">The new y position</div></li>        </ul>\r
2399         <strong>Returns:</strong>\r
2400         <ul>\r
2401             <li><code>Ext.BoxComponent</code><div class="sub-desc">this</div></li>\r
2402         </ul>\r
2403     </div>\r
2404                 </div>\r
2405                         </div>\r
2406         </td>\r
2407         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#setPagePosition" href="output/Ext.BoxComponent.html#setPagePosition">BoxComponent</a></td>\r
2408     </tr>\r
2409         <tr class="method-row inherited expandable">\r
2410         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2411         <td class="sig">\r
2412         <a id="Ext.grid.GridPanel-setPosition"></a>\r
2413             <b>setPosition</b>(&nbsp;<code>Number left</code>, <code>Number top</code>&nbsp;) : Ext.BoxComponent            <div class="mdesc">\r
2414                         <div class="short">Sets the left and top of the component.  To set the page XY position instead, use setPagePosition.
2415 This method fires ...</div>\r
2416             <div class="long">\r
2417                 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>.
2418 This method fires the <a ext:cls="Ext.BoxComponent" ext:member="move" href="output/Ext.BoxComponent.html#move">move</a> event.    <div class="mdetail-params">\r
2419         <strong>Parameters:</strong>\r
2420         <ul><li><code>left</code> : Number<div class="sub-desc">The new left</div></li><li><code>top</code> : Number<div class="sub-desc">The new top</div></li>        </ul>\r
2421         <strong>Returns:</strong>\r
2422         <ul>\r
2423             <li><code>Ext.BoxComponent</code><div class="sub-desc">this</div></li>\r
2424         </ul>\r
2425     </div>\r
2426                 </div>\r
2427                         </div>\r
2428         </td>\r
2429         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#setPosition" href="output/Ext.BoxComponent.html#setPosition">BoxComponent</a></td>\r
2430     </tr>\r
2431         <tr class="method-row inherited alt expandable">\r
2432         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2433         <td class="sig">\r
2434         <a id="Ext.grid.GridPanel-setSize"></a>\r
2435             <b>setSize</b>(&nbsp;<code>Number/Object width</code>, <code>Number height</code>&nbsp;) : Ext.BoxComponent            <div class="mdesc">\r
2436                         <div class="short">Sets the width and height of the component.  This method fires the resize event.  This method can accept
2437 either width...</div>\r
2438             <div class="long">\r
2439                 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
2440 either width and height as separate numeric arguments, or you can pass a size object like {width:10, height:20}.    <div class="mdetail-params">\r
2441         <strong>Parameters:</strong>\r
2442         <ul><li><code>width</code> : Number/Object<div class="sub-desc">The new width to set, or a size object in the format {width, height}</div></li><li><code>height</code> : Number<div class="sub-desc">The new height to set (not required if a size object is passed as the first arg)</div></li>        </ul>\r
2443         <strong>Returns:</strong>\r
2444         <ul>\r
2445             <li><code>Ext.BoxComponent</code><div class="sub-desc">this</div></li>\r
2446         </ul>\r
2447     </div>\r
2448                 </div>\r
2449                         </div>\r
2450         </td>\r
2451         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#setSize" href="output/Ext.BoxComponent.html#setSize">BoxComponent</a></td>\r
2452     </tr>\r
2453         <tr class="method-row inherited expandable">\r
2454         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2455         <td class="sig">\r
2456         <a id="Ext.grid.GridPanel-setTitle"></a>\r
2457             <b>setTitle</b>(&nbsp;<code>String title</code>, <span class="optional" title="Optional">[<code>String iconCls</code>]</span>&nbsp;) : void            <div class="mdesc">\r
2458                         <div class="short">Sets the title text for the panel and optionally the icon class.
2459 In order to be able to set the title, a header eleme...</div>\r
2460             <div class="long">\r
2461                 <p>Sets the title text for the panel and optionally the icon class.</p>
2462 <p>In order to be able to set the title, a header element must have been created
2463 for the Panel. This is triggered either by configuring the Panel with a non-blank title,
2464 or configuring it with <tt><b><a ext:cls="Ext.Panel" ext:member="header" href="output/Ext.Panel.html#header">header</a>: true</b></tt>.</p>    <div class="mdetail-params">\r
2465         <strong>Parameters:</strong>\r
2466         <ul><li><code>title</code> : String<div class="sub-desc">The title text to set</div></li><li><code>iconCls</code> : String<div class="sub-desc">(optional) iconCls A user-defined CSS class that provides the icon image for this panel</div></li>        </ul>\r
2467         <strong>Returns:</strong>\r
2468         <ul>\r
2469             <li><code>void</code></li>\r
2470         </ul>\r
2471     </div>\r
2472                 </div>\r
2473                         </div>\r
2474         </td>\r
2475         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#setTitle" href="output/Ext.Panel.html#setTitle">Panel</a></td>\r
2476     </tr>\r
2477         <tr class="method-row inherited alt expandable">\r
2478         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2479         <td class="sig">\r
2480         <a id="Ext.grid.GridPanel-setVisible"></a>\r
2481             <b>setVisible</b>(&nbsp;<code>Boolean visible</code>&nbsp;) : Ext.Component            <div class="mdesc">\r
2482                         <div class="short">Convenience function to hide or show this component by boolean.</div>\r
2483             <div class="long">\r
2484                 Convenience function to hide or show this component by boolean.    <div class="mdetail-params">\r
2485         <strong>Parameters:</strong>\r
2486         <ul><li><code>visible</code> : Boolean<div class="sub-desc">True to show, false to hide</div></li>        </ul>\r
2487         <strong>Returns:</strong>\r
2488         <ul>\r
2489             <li><code>Ext.Component</code><div class="sub-desc">this</div></li>\r
2490         </ul>\r
2491     </div>\r
2492                 </div>\r
2493                         </div>\r
2494         </td>\r
2495         <td class="msource"><a ext:cls="Ext.Component" ext:member="#setVisible" href="output/Ext.Component.html#setVisible">Component</a></td>\r
2496     </tr>\r
2497         <tr class="method-row inherited expandable">\r
2498         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2499         <td class="sig">\r
2500         <a id="Ext.grid.GridPanel-setWidth"></a>\r
2501             <b>setWidth</b>(&nbsp;<code>Number width</code>&nbsp;) : Ext.BoxComponent            <div class="mdesc">\r
2502                         <div class="short">Sets the width of the component.  This method fires the <a ext:cls="Ext.BoxComponent" ext:member="resize" href="output/Ext.BoxComponent.html#resize">resize</a> event.</div>\r
2503             <div class="long">\r
2504                 Sets the width of the component.  This method fires the <a ext:cls="Ext.BoxComponent" ext:member="resize" href="output/Ext.BoxComponent.html#resize">resize</a> event.    <div class="mdetail-params">\r
2505         <strong>Parameters:</strong>\r
2506         <ul><li><code>width</code> : Number<div class="sub-desc">The new width to set</div></li>        </ul>\r
2507         <strong>Returns:</strong>\r
2508         <ul>\r
2509             <li><code>Ext.BoxComponent</code><div class="sub-desc">this</div></li>\r
2510         </ul>\r
2511     </div>\r
2512                 </div>\r
2513                         </div>\r
2514         </td>\r
2515         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#setWidth" href="output/Ext.BoxComponent.html#setWidth">BoxComponent</a></td>\r
2516     </tr>\r
2517         <tr class="method-row inherited alt expandable">\r
2518         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2519         <td class="sig">\r
2520         <a id="Ext.grid.GridPanel-show"></a>\r
2521             <b>show</b>() : Ext.Component            <div class="mdesc">\r
2522                         <div class="short">Show this component.</div>\r
2523             <div class="long">\r
2524                 Show this component.    <div class="mdetail-params">\r
2525         <strong>Parameters:</strong>\r
2526         <ul><li>None.</li>        </ul>\r
2527         <strong>Returns:</strong>\r
2528         <ul>\r
2529             <li><code>Ext.Component</code><div class="sub-desc">this</div></li>\r
2530         </ul>\r
2531     </div>\r
2532                 </div>\r
2533                         </div>\r
2534         </td>\r
2535         <td class="msource"><a ext:cls="Ext.Component" ext:member="#show" href="output/Ext.Component.html#show">Component</a></td>\r
2536     </tr>\r
2537         <tr class="method-row inherited expandable">\r
2538         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2539         <td class="sig">\r
2540         <a id="Ext.grid.GridPanel-suspendEvents"></a>\r
2541             <b>suspendEvents</b>() : void            <div class="mdesc">\r
2542                         <div class="short">Suspend the firing of all events. (see <a ext:cls="Ext.util.Observable" ext:member="resumeEvents" href="output/Ext.util.Observable.html#resumeEvents">resumeEvents</a>)</div>\r
2543             <div class="long">\r
2544                 Suspend the firing of all events. (see <a ext:cls="Ext.util.Observable" ext:member="resumeEvents" href="output/Ext.util.Observable.html#resumeEvents">resumeEvents</a>)    <div class="mdetail-params">\r
2545         <strong>Parameters:</strong>\r
2546         <ul><li>None.</li>        </ul>\r
2547         <strong>Returns:</strong>\r
2548         <ul>\r
2549             <li><code>void</code></li>\r
2550         </ul>\r
2551     </div>\r
2552                 </div>\r
2553                         </div>\r
2554         </td>\r
2555         <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#suspendEvents" href="output/Ext.util.Observable.html#suspendEvents">Observable</a></td>\r
2556     </tr>\r
2557         <tr class="method-row inherited alt expandable">\r
2558         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2559         <td class="sig">\r
2560         <a id="Ext.grid.GridPanel-syncSize"></a>\r
2561             <b>syncSize</b>() : Ext.BoxComponent            <div class="mdesc">\r
2562                         <div class="short">Force the component's size to recalculate based on the underlying element's current height and width.</div>\r
2563             <div class="long">\r
2564                 Force the component's size to recalculate based on the underlying element's current height and width.    <div class="mdetail-params">\r
2565         <strong>Parameters:</strong>\r
2566         <ul><li>None.</li>        </ul>\r
2567         <strong>Returns:</strong>\r
2568         <ul>\r
2569             <li><code>Ext.BoxComponent</code><div class="sub-desc">this</div></li>\r
2570         </ul>\r
2571     </div>\r
2572                 </div>\r
2573                         </div>\r
2574         </td>\r
2575         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#syncSize" href="output/Ext.BoxComponent.html#syncSize">BoxComponent</a></td>\r
2576     </tr>\r
2577         <tr class="method-row inherited expandable">\r
2578         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2579         <td class="sig">\r
2580         <a id="Ext.grid.GridPanel-toggleCollapse"></a>\r
2581             <b>toggleCollapse</b>(&nbsp;<code>Boolean animate</code>&nbsp;) : Ext.Panel            <div class="mdesc">\r
2582                         <div class="short">Shortcut for performing an <a ext:cls="Ext.Panel" ext:member="expand" href="output/Ext.Panel.html#expand">expand</a> or <a ext:cls="Ext.Panel" ext:member="collapse" href="output/Ext.Panel.html#collapse">collapse</a> based on the current state of the panel.</div>\r
2583             <div class="long">\r
2584                 Shortcut for performing an <a ext:cls="Ext.Panel" ext:member="expand" href="output/Ext.Panel.html#expand">expand</a> or <a ext:cls="Ext.Panel" ext:member="collapse" href="output/Ext.Panel.html#collapse">collapse</a> based on the current state of the panel.    <div class="mdetail-params">\r
2585         <strong>Parameters:</strong>\r
2586         <ul><li><code>animate</code> : Boolean<div class="sub-desc">True to animate the transition, else false (defaults to the value of the
2587 <a ext:cls="Ext.Panel" ext:member="animCollapse" href="output/Ext.Panel.html#animCollapse">animCollapse</a> panel config)</div></li>        </ul>\r
2588         <strong>Returns:</strong>\r
2589         <ul>\r
2590             <li><code>Ext.Panel</code><div class="sub-desc">this</div></li>\r
2591         </ul>\r
2592     </div>\r
2593                 </div>\r
2594                         </div>\r
2595         </td>\r
2596         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#toggleCollapse" href="output/Ext.Panel.html#toggleCollapse">Panel</a></td>\r
2597     </tr>\r
2598         <tr class="method-row inherited alt expandable">\r
2599         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2600         <td class="sig">\r
2601         <a id="Ext.grid.GridPanel-un"></a>\r
2602             <b>un</b>(&nbsp;<code>String eventName</code>, <code>Function handler</code>, <span class="optional" title="Optional">[<code>Object scope</code>]</span>&nbsp;) : void            <div class="mdesc">\r
2603                         <div class="short">Removes a listener (shorthand for removeListener)</div>\r
2604             <div class="long">\r
2605                 Removes a listener (shorthand for removeListener)    <div class="mdetail-params">\r
2606         <strong>Parameters:</strong>\r
2607         <ul><li><code>eventName</code> : String<div class="sub-desc">The type of event to listen for</div></li><li><code>handler</code> : Function<div class="sub-desc">The handler to remove</div></li><li><code>scope</code> : Object<div class="sub-desc">(optional) The scope (this object) for the handler</div></li>        </ul>\r
2608         <strong>Returns:</strong>\r
2609         <ul>\r
2610             <li><code>void</code></li>\r
2611         </ul>\r
2612     </div>\r
2613                 </div>\r
2614                         </div>\r
2615         </td>\r
2616         <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#un" href="output/Ext.util.Observable.html#un">Observable</a></td>\r
2617     </tr>\r
2618         <tr class="method-row inherited expandable">\r
2619         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2620         <td class="sig">\r
2621         <a id="Ext.grid.GridPanel-updateBox"></a>\r
2622             <b>updateBox</b>(&nbsp;<code>Object box</code>&nbsp;) : Ext.BoxComponent            <div class="mdesc">\r
2623                         <div class="short">Sets the current box measurements of the component's underlying element.</div>\r
2624             <div class="long">\r
2625                 Sets the current box measurements of the component's underlying element.    <div class="mdetail-params">\r
2626         <strong>Parameters:</strong>\r
2627         <ul><li><code>box</code> : Object<div class="sub-desc">An object in the format {x, y, width, height}</div></li>        </ul>\r
2628         <strong>Returns:</strong>\r
2629         <ul>\r
2630             <li><code>Ext.BoxComponent</code><div class="sub-desc">this</div></li>\r
2631         </ul>\r
2632     </div>\r
2633                 </div>\r
2634                         </div>\r
2635         </td>\r
2636         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#updateBox" href="output/Ext.BoxComponent.html#updateBox">BoxComponent</a></td>\r
2637     </tr>\r
2638             </table>
2639                 <a id="Ext.grid.GridPanel-events"></a>
2640         <h2>Public Events</h2>
2641                 <table cellspacing="0" class="member-table">
2642             <tr>
2643                 <th class="sig-header" colspan="2">Event</th>
2644                 <th class="msource-header">Defined By</th>
2645             </tr>
2646                 <tr class="event-row inherited expandable">\r
2647         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2648         <td class="sig">\r
2649         <a id="Ext.grid.GridPanel-activate"></a>\r
2650             <b>activate</b> : (&nbsp;<code>Ext.Panel p</code>&nbsp;)            <div class="mdesc">\r
2651                         <div class="short">Fires after the Panel has been visually activated.
2652 Note that Panels do not directly support being activated, but some...</div>\r
2653             <div class="long">\r
2654                 Fires after the Panel has been visually activated.
2655 Note that Panels do not directly support being activated, but some Panel subclasses
2656 do (like <a ext:cls="Ext.Window" href="output/Ext.Window.html">Ext.Window</a>). Panels which are child Components of a TabPanel fire the
2657 activate and deactivate events under the control of the TabPanel.    <div class="mdetail-params">\r
2658         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
2659         <ul><li><code>p</code> : Ext.Panel<div class="sub-desc">The Panel that has been activated.</div></li>        </ul>\r
2660     </div>\r
2661                 </div>\r
2662                         </div>\r
2663         </td>\r
2664         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#event-activate" href="output/Ext.Panel.html#event-activate">Panel</a></td>\r
2665     </tr>\r
2666         <tr class="event-row inherited alt expandable">\r
2667         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2668         <td class="sig">\r
2669         <a id="Ext.grid.GridPanel-add"></a>\r
2670             <b>add</b> : (&nbsp;<code>Ext.Container this</code>, <code>Ext.Component component</code>, <code>Number index</code>&nbsp;)            <div class="mdesc">\r
2671                         <div class="short">Fires after any <a ext:cls="Ext.Component" href="output/Ext.Component.html">Ext.Component</a> is added or inserted into the container.</div>\r
2672             <div class="long">\r
2673                 Fires after any <a ext:cls="Ext.Component" href="output/Ext.Component.html">Ext.Component</a> is added or inserted into the container.    <div class="mdetail-params">\r
2674         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
2675         <ul><li><code>this</code> : Ext.Container<div class="sub-desc"></div></li><li><code>component</code> : Ext.Component<div class="sub-desc">The component that was added</div></li><li><code>index</code> : Number<div class="sub-desc">The index at which the component was added to the container's items collection</div></li>        </ul>\r
2676     </div>\r
2677                 </div>\r
2678                         </div>\r
2679         </td>\r
2680         <td class="msource"><a ext:cls="Ext.Container" ext:member="#event-add" href="output/Ext.Container.html#event-add">Container</a></td>\r
2681     </tr>\r
2682         <tr class="event-row inherited expandable">\r
2683         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2684         <td class="sig">\r
2685         <a id="Ext.grid.GridPanel-afterlayout"></a>\r
2686             <b>afterlayout</b> : (&nbsp;<code>Ext.Container this</code>, <code>ContainerLayout layout</code>&nbsp;)            <div class="mdesc">\r
2687                         <div class="short">Fires when the components in this container are arranged by the associated layout manager.</div>\r
2688             <div class="long">\r
2689                 Fires when the components in this container are arranged by the associated layout manager.    <div class="mdetail-params">\r
2690         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
2691         <ul><li><code>this</code> : Ext.Container<div class="sub-desc"></div></li><li><code>layout</code> : ContainerLayout<div class="sub-desc">The ContainerLayout implementation for this container</div></li>        </ul>\r
2692     </div>\r
2693                 </div>\r
2694                         </div>\r
2695         </td>\r
2696         <td class="msource"><a ext:cls="Ext.Container" ext:member="#event-afterlayout" href="output/Ext.Container.html#event-afterlayout">Container</a></td>\r
2697     </tr>\r
2698         <tr class="event-row inherited alt expandable">\r
2699         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2700         <td class="sig">\r
2701         <a id="Ext.grid.GridPanel-beforeadd"></a>\r
2702             <b>beforeadd</b> : (&nbsp;<code>Ext.Container this</code>, <code>Ext.Component component</code>, <code>Number index</code>&nbsp;)            <div class="mdesc">\r
2703                         <div class="short">Fires before any <a ext:cls="Ext.Component" href="output/Ext.Component.html">Ext.Component</a> is added or inserted into the container.
2704 A handler can return false to cancel the add.</div>\r
2705             <div class="long">\r
2706                 Fires before any <a ext:cls="Ext.Component" href="output/Ext.Component.html">Ext.Component</a> is added or inserted into the container.
2707 A handler can return false to cancel the add.    <div class="mdetail-params">\r
2708         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
2709         <ul><li><code>this</code> : Ext.Container<div class="sub-desc"></div></li><li><code>component</code> : Ext.Component<div class="sub-desc">The component being added</div></li><li><code>index</code> : Number<div class="sub-desc">The index at which the component will be added to the container's items collection</div></li>        </ul>\r
2710     </div>\r
2711                 </div>\r
2712                         </div>\r
2713         </td>\r
2714         <td class="msource"><a ext:cls="Ext.Container" ext:member="#event-beforeadd" href="output/Ext.Container.html#event-beforeadd">Container</a></td>\r
2715     </tr>\r
2716         <tr class="event-row inherited expandable">\r
2717         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2718         <td class="sig">\r
2719         <a id="Ext.grid.GridPanel-beforeclose"></a>\r
2720             <b>beforeclose</b> : (&nbsp;<code>Ext.Panel p</code>&nbsp;)            <div class="mdesc">\r
2721                         <div class="short">Fires before the Panel is closed.  Note that Panels do not directly support being closed, but some
2722 Panel subclasses d...</div>\r
2723             <div class="long">\r
2724                 Fires before the Panel is closed.  Note that Panels do not directly support being closed, but some
2725 Panel subclasses do (like <a ext:cls="Ext.Window" href="output/Ext.Window.html">Ext.Window</a>).  This event only applies to such subclasses.
2726 A handler can return false to cancel the close.    <div class="mdetail-params">\r
2727         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
2728         <ul><li><code>p</code> : Ext.Panel<div class="sub-desc">The Panel being closed.</div></li>        </ul>\r
2729     </div>\r
2730                 </div>\r
2731                         </div>\r
2732         </td>\r
2733         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#event-beforeclose" href="output/Ext.Panel.html#event-beforeclose">Panel</a></td>\r
2734     </tr>\r
2735         <tr class="event-row inherited alt expandable">\r
2736         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2737         <td class="sig">\r
2738         <a id="Ext.grid.GridPanel-beforecollapse"></a>\r
2739             <b>beforecollapse</b> : (&nbsp;<code>Ext.Panel p</code>, <code>Boolean animate</code>&nbsp;)            <div class="mdesc">\r
2740                         <div class="short">Fires before the Panel is collapsed.  A handler can return false to cancel the collapse.</div>\r
2741             <div class="long">\r
2742                 Fires before the Panel is collapsed.  A handler can return false to cancel the collapse.    <div class="mdetail-params">\r
2743         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
2744         <ul><li><code>p</code> : Ext.Panel<div class="sub-desc">the Panel being collapsed.</div></li><li><code>animate</code> : Boolean<div class="sub-desc">True if the collapse is animated, else false.</div></li>        </ul>\r
2745     </div>\r
2746                 </div>\r
2747                         </div>\r
2748         </td>\r
2749         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#event-beforecollapse" href="output/Ext.Panel.html#event-beforecollapse">Panel</a></td>\r
2750     </tr>\r
2751         <tr class="event-row inherited expandable">\r
2752         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2753         <td class="sig">\r
2754         <a id="Ext.grid.GridPanel-beforedestroy"></a>\r
2755             <b>beforedestroy</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">\r
2756                         <div class="short">Fires before the component is destroyed. Return false to stop the destroy.</div>\r
2757             <div class="long">\r
2758                 Fires before the component is destroyed. Return false to stop the destroy.    <div class="mdetail-params">\r
2759         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
2760         <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>\r
2761     </div>\r
2762                 </div>\r
2763                         </div>\r
2764         </td>\r
2765         <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-beforedestroy" href="output/Ext.Component.html#event-beforedestroy">Component</a></td>\r
2766     </tr>\r
2767         <tr class="event-row inherited alt expandable">\r
2768         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2769         <td class="sig">\r
2770         <a id="Ext.grid.GridPanel-beforeexpand"></a>\r
2771             <b>beforeexpand</b> : (&nbsp;<code>Ext.Panel p</code>, <code>Boolean animate</code>&nbsp;)            <div class="mdesc">\r
2772                         <div class="short">Fires before the Panel is expanded.  A handler can return false to cancel the expand.</div>\r
2773             <div class="long">\r
2774                 Fires before the Panel is expanded.  A handler can return false to cancel the expand.    <div class="mdetail-params">\r
2775         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
2776         <ul><li><code>p</code> : Ext.Panel<div class="sub-desc">The Panel being expanded.</div></li><li><code>animate</code> : Boolean<div class="sub-desc">True if the expand is animated, else false.</div></li>        </ul>\r
2777     </div>\r
2778                 </div>\r
2779                         </div>\r
2780         </td>\r
2781         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#event-beforeexpand" href="output/Ext.Panel.html#event-beforeexpand">Panel</a></td>\r
2782     </tr>\r
2783         <tr class="event-row inherited expandable">\r
2784         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2785         <td class="sig">\r
2786         <a id="Ext.grid.GridPanel-beforehide"></a>\r
2787             <b>beforehide</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">\r
2788                         <div class="short">Fires before the component is hidden. Return false to stop the hide.</div>\r
2789             <div class="long">\r
2790                 Fires before the component is hidden. Return false to stop the hide.    <div class="mdetail-params">\r
2791         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
2792         <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>\r
2793     </div>\r
2794                 </div>\r
2795                         </div>\r
2796         </td>\r
2797         <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-beforehide" href="output/Ext.Component.html#event-beforehide">Component</a></td>\r
2798     </tr>\r
2799         <tr class="event-row inherited alt expandable">\r
2800         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2801         <td class="sig">\r
2802         <a id="Ext.grid.GridPanel-beforeremove"></a>\r
2803             <b>beforeremove</b> : (&nbsp;<code>Ext.Container this</code>, <code>Ext.Component component</code>&nbsp;)            <div class="mdesc">\r
2804                         <div class="short">Fires before any <a ext:cls="Ext.Component" href="output/Ext.Component.html">Ext.Component</a> is removed from the container.  A handler can return
2805 false to cancel the remove.</div>\r
2806             <div class="long">\r
2807                 Fires before any <a ext:cls="Ext.Component" href="output/Ext.Component.html">Ext.Component</a> is removed from the container.  A handler can return
2808 false to cancel the remove.    <div class="mdetail-params">\r
2809         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
2810         <ul><li><code>this</code> : Ext.Container<div class="sub-desc"></div></li><li><code>component</code> : Ext.Component<div class="sub-desc">The component being removed</div></li>        </ul>\r
2811     </div>\r
2812                 </div>\r
2813                         </div>\r
2814         </td>\r
2815         <td class="msource"><a ext:cls="Ext.Container" ext:member="#event-beforeremove" href="output/Ext.Container.html#event-beforeremove">Container</a></td>\r
2816     </tr>\r
2817         <tr class="event-row inherited expandable">\r
2818         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2819         <td class="sig">\r
2820         <a id="Ext.grid.GridPanel-beforerender"></a>\r
2821             <b>beforerender</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">\r
2822                         <div class="short">Fires before the component is rendered. Return false to stop the render.</div>\r
2823             <div class="long">\r
2824                 Fires before the component is rendered. Return false to stop the render.    <div class="mdetail-params">\r
2825         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
2826         <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>\r
2827     </div>\r
2828                 </div>\r
2829                         </div>\r
2830         </td>\r
2831         <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-beforerender" href="output/Ext.Component.html#event-beforerender">Component</a></td>\r
2832     </tr>\r
2833         <tr class="event-row inherited alt expandable">\r
2834         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2835         <td class="sig">\r
2836         <a id="Ext.grid.GridPanel-beforeshow"></a>\r
2837             <b>beforeshow</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">\r
2838                         <div class="short">Fires before the component is shown. Return false to stop the show.</div>\r
2839             <div class="long">\r
2840                 Fires before the component is shown. Return false to stop the show.    <div class="mdetail-params">\r
2841         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
2842         <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>\r
2843     </div>\r
2844                 </div>\r
2845                         </div>\r
2846         </td>\r
2847         <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-beforeshow" href="output/Ext.Component.html#event-beforeshow">Component</a></td>\r
2848     </tr>\r
2849         <tr class="event-row inherited expandable">\r
2850         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2851         <td class="sig">\r
2852         <a id="Ext.grid.GridPanel-beforestaterestore"></a>\r
2853             <b>beforestaterestore</b> : (&nbsp;<code>Ext.Component this</code>, <code>Object state</code>&nbsp;)            <div class="mdesc">\r
2854                         <div class="short">Fires before the state of the component is restored. Return false to stop the restore.</div>\r
2855             <div class="long">\r
2856                 Fires before the state of the component is restored. Return false to stop the restore.    <div class="mdetail-params">\r
2857         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
2858         <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li><li><code>state</code> : Object<div class="sub-desc">The hash of state values</div></li>        </ul>\r
2859     </div>\r
2860                 </div>\r
2861                         </div>\r
2862         </td>\r
2863         <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-beforestaterestore" href="output/Ext.Component.html#event-beforestaterestore">Component</a></td>\r
2864     </tr>\r
2865         <tr class="event-row inherited alt expandable">\r
2866         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2867         <td class="sig">\r
2868         <a id="Ext.grid.GridPanel-beforestatesave"></a>\r
2869             <b>beforestatesave</b> : (&nbsp;<code>Ext.Component this</code>, <code>Object state</code>&nbsp;)            <div class="mdesc">\r
2870                         <div class="short">Fires before the state of the component is saved to the configured state provider. Return false to stop the save.</div>\r
2871             <div class="long">\r
2872                 Fires before the state of the component is saved to the configured state provider. Return false to stop the save.    <div class="mdetail-params">\r
2873         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
2874         <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li><li><code>state</code> : Object<div class="sub-desc">The hash of state values</div></li>        </ul>\r
2875     </div>\r
2876                 </div>\r
2877                         </div>\r
2878         </td>\r
2879         <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-beforestatesave" href="output/Ext.Component.html#event-beforestatesave">Component</a></td>\r
2880     </tr>\r
2881         <tr class="event-row inherited expandable">\r
2882         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2883         <td class="sig">\r
2884         <a id="Ext.grid.GridPanel-bodyresize"></a>\r
2885             <b>bodyresize</b> : (&nbsp;<code>Ext.Panel p</code>, <code>Number width</code>, <code>Number height</code>&nbsp;)            <div class="mdesc">\r
2886                         <div class="short">Fires after the Panel has been resized.</div>\r
2887             <div class="long">\r
2888                 Fires after the Panel has been resized.    <div class="mdetail-params">\r
2889         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
2890         <ul><li><code>p</code> : Ext.Panel<div class="sub-desc">the Panel which has been resized.</div></li><li><code>width</code> : Number<div class="sub-desc">The Panel's new width.</div></li><li><code>height</code> : Number<div class="sub-desc">The Panel's new height.</div></li>        </ul>\r
2891     </div>\r
2892                 </div>\r
2893                         </div>\r
2894         </td>\r
2895         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#event-bodyresize" href="output/Ext.Panel.html#event-bodyresize">Panel</a></td>\r
2896     </tr>\r
2897         <tr class="event-row alt expandable">\r
2898         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2899         <td class="sig">\r
2900         <a id="Ext.grid.GridPanel-bodyscroll"></a>\r
2901             <b>bodyscroll</b> : (&nbsp;<code>Number scrollLeft</code>, <code>Number scrollTop</code>&nbsp;)            <div class="mdesc">\r
2902                         <div class="short">Fires when the body element is scrolled</div>\r
2903             <div class="long">\r
2904                 Fires when the body element is scrolled    <div class="mdetail-params">\r
2905         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
2906         <ul><li><code>scrollLeft</code> : Number<div class="sub-desc"></div></li><li><code>scrollTop</code> : Number<div class="sub-desc"></div></li>        </ul>\r
2907     </div>\r
2908                 </div>\r
2909                         </div>\r
2910         </td>\r
2911         <td class="msource">GridPanel</td>\r
2912     </tr>\r
2913         <tr class="event-row expandable">\r
2914         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2915         <td class="sig">\r
2916         <a id="Ext.grid.GridPanel-cellclick"></a>\r
2917             <b>cellclick</b> : (&nbsp;<code>Grid this</code>, <code>Number rowIndex</code>, <code>Number columnIndex</code>, <code>Ext.EventObject e</code>&nbsp;)            <div class="mdesc">\r
2918                         <div class="short">Fires when a cell is clicked.
2919 The data for the cell is drawn from the Record
2920 for this row. To access the data in the ...</div>\r
2921             <div class="long">\r
2922                 Fires when a cell is clicked.
2923 The data for the cell is drawn from the <a ext:cls="Ext.data.Record" href="output/Ext.data.Record.html">Record</a>
2924 for this row. To access the data in the listener function use the
2925 following technique:
2926 <pre><code>function(grid, rowIndex, columnIndex, e) {
2927         <b>var</b> record = grid.getStore().getAt(rowIndex);  <i>// Get the Record</i>
2928         <b>var</b> fieldName = grid.getColumnModel().getDataIndex(columnIndex); <i>// Get field name</i>
2929         <b>var</b> data = record.get(fieldName);
2930     }</code></pre>    <div class="mdetail-params">\r
2931         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
2932         <ul><li><code>this</code> : Grid<div class="sub-desc"></div></li><li><code>rowIndex</code> : Number<div class="sub-desc"></div></li><li><code>columnIndex</code> : Number<div class="sub-desc"></div></li><li><code>e</code> : Ext.EventObject<div class="sub-desc"></div></li>        </ul>\r
2933     </div>\r
2934                 </div>\r
2935                         </div>\r
2936         </td>\r
2937         <td class="msource">GridPanel</td>\r
2938     </tr>\r
2939         <tr class="event-row alt expandable">\r
2940         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2941         <td class="sig">\r
2942         <a id="Ext.grid.GridPanel-cellcontextmenu"></a>\r
2943             <b>cellcontextmenu</b> : (&nbsp;<code>Grid this</code>, <code>Number rowIndex</code>, <code>Number cellIndex</code>, <code>Ext.EventObject e</code>&nbsp;)            <div class="mdesc">\r
2944                         <div class="short">Fires when a cell is right clicked</div>\r
2945             <div class="long">\r
2946                 Fires when a cell is right clicked    <div class="mdetail-params">\r
2947         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
2948         <ul><li><code>this</code> : Grid<div class="sub-desc"></div></li><li><code>rowIndex</code> : Number<div class="sub-desc"></div></li><li><code>cellIndex</code> : Number<div class="sub-desc"></div></li><li><code>e</code> : Ext.EventObject<div class="sub-desc"></div></li>        </ul>\r
2949     </div>\r
2950                 </div>\r
2951                         </div>\r
2952         </td>\r
2953         <td class="msource">GridPanel</td>\r
2954     </tr>\r
2955         <tr class="event-row expandable">\r
2956         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2957         <td class="sig">\r
2958         <a id="Ext.grid.GridPanel-celldblclick"></a>\r
2959             <b>celldblclick</b> : (&nbsp;<code>Grid this</code>, <code>Number rowIndex</code>, <code>Number columnIndex</code>, <code>Ext.EventObject e</code>&nbsp;)            <div class="mdesc">\r
2960                         <div class="short">Fires when a cell is double clicked</div>\r
2961             <div class="long">\r
2962                 Fires when a cell is double clicked    <div class="mdetail-params">\r
2963         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
2964         <ul><li><code>this</code> : Grid<div class="sub-desc"></div></li><li><code>rowIndex</code> : Number<div class="sub-desc"></div></li><li><code>columnIndex</code> : Number<div class="sub-desc"></div></li><li><code>e</code> : Ext.EventObject<div class="sub-desc"></div></li>        </ul>\r
2965     </div>\r
2966                 </div>\r
2967                         </div>\r
2968         </td>\r
2969         <td class="msource">GridPanel</td>\r
2970     </tr>\r
2971         <tr class="event-row alt expandable">\r
2972         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2973         <td class="sig">\r
2974         <a id="Ext.grid.GridPanel-cellmousedown"></a>\r
2975             <b>cellmousedown</b> : (&nbsp;<code>Grid this</code>, <code>Number rowIndex</code>, <code>Number columnIndex</code>, <code>Ext.EventObject e</code>&nbsp;)            <div class="mdesc">\r
2976                         <div class="short">Fires before a cell is clicked</div>\r
2977             <div class="long">\r
2978                 Fires before a cell is clicked    <div class="mdetail-params">\r
2979         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
2980         <ul><li><code>this</code> : Grid<div class="sub-desc"></div></li><li><code>rowIndex</code> : Number<div class="sub-desc"></div></li><li><code>columnIndex</code> : Number<div class="sub-desc"></div></li><li><code>e</code> : Ext.EventObject<div class="sub-desc"></div></li>        </ul>\r
2981     </div>\r
2982                 </div>\r
2983                         </div>\r
2984         </td>\r
2985         <td class="msource">GridPanel</td>\r
2986     </tr>\r
2987         <tr class="event-row expandable">\r
2988         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2989         <td class="sig">\r
2990         <a id="Ext.grid.GridPanel-click"></a>\r
2991             <b>click</b> : (&nbsp;<code>Ext.EventObject e</code>&nbsp;)            <div class="mdesc">\r
2992                         <div class="short">The raw click event for the entire grid.</div>\r
2993             <div class="long">\r
2994                 The raw click event for the entire grid.    <div class="mdetail-params">\r
2995         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
2996         <ul><li><code>e</code> : Ext.EventObject<div class="sub-desc"></div></li>        </ul>\r
2997     </div>\r
2998                 </div>\r
2999                         </div>\r
3000         </td>\r
3001         <td class="msource">GridPanel</td>\r
3002     </tr>\r
3003         <tr class="event-row inherited alt expandable">\r
3004         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3005         <td class="sig">\r
3006         <a id="Ext.grid.GridPanel-close"></a>\r
3007             <b>close</b> : (&nbsp;<code>Ext.Panel p</code>&nbsp;)            <div class="mdesc">\r
3008                         <div class="short">Fires after the Panel is closed.  Note that Panels do not directly support being closed, but some
3009 Panel subclasses do...</div>\r
3010             <div class="long">\r
3011                 Fires after the Panel is closed.  Note that Panels do not directly support being closed, but some
3012 Panel subclasses do (like <a ext:cls="Ext.Window" href="output/Ext.Window.html">Ext.Window</a>).    <div class="mdetail-params">\r
3013         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3014         <ul><li><code>p</code> : Ext.Panel<div class="sub-desc">The Panel that has been closed.</div></li>        </ul>\r
3015     </div>\r
3016                 </div>\r
3017                         </div>\r
3018         </td>\r
3019         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#event-close" href="output/Ext.Panel.html#event-close">Panel</a></td>\r
3020     </tr>\r
3021         <tr class="event-row inherited expandable">\r
3022         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3023         <td class="sig">\r
3024         <a id="Ext.grid.GridPanel-collapse"></a>\r
3025             <b>collapse</b> : (&nbsp;<code>Ext.Panel p</code>&nbsp;)            <div class="mdesc">\r
3026                         <div class="short">Fires after the Panel has been collapsed.</div>\r
3027             <div class="long">\r
3028                 Fires after the Panel has been collapsed.    <div class="mdetail-params">\r
3029         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3030         <ul><li><code>p</code> : Ext.Panel<div class="sub-desc">the Panel that has been collapsed.</div></li>        </ul>\r
3031     </div>\r
3032                 </div>\r
3033                         </div>\r
3034         </td>\r
3035         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#event-collapse" href="output/Ext.Panel.html#event-collapse">Panel</a></td>\r
3036     </tr>\r
3037         <tr class="event-row alt expandable">\r
3038         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3039         <td class="sig">\r
3040         <a id="Ext.grid.GridPanel-columnmove"></a>\r
3041             <b>columnmove</b> : (&nbsp;<code>Number oldIndex</code>, <code>Number newIndex</code>&nbsp;)            <div class="mdesc">\r
3042                         <div class="short">Fires when the user moves a column</div>\r
3043             <div class="long">\r
3044                 Fires when the user moves a column    <div class="mdetail-params">\r
3045         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3046         <ul><li><code>oldIndex</code> : Number<div class="sub-desc"></div></li><li><code>newIndex</code> : Number<div class="sub-desc"></div></li>        </ul>\r
3047     </div>\r
3048                 </div>\r
3049                         </div>\r
3050         </td>\r
3051         <td class="msource">GridPanel</td>\r
3052     </tr>\r
3053         <tr class="event-row expandable">\r
3054         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3055         <td class="sig">\r
3056         <a id="Ext.grid.GridPanel-columnresize"></a>\r
3057             <b>columnresize</b> : (&nbsp;<code>Number columnIndex</code>, <code>Number newSize</code>&nbsp;)            <div class="mdesc">\r
3058                         <div class="short">Fires when the user resizes a column</div>\r
3059             <div class="long">\r
3060                 Fires when the user resizes a column    <div class="mdetail-params">\r
3061         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3062         <ul><li><code>columnIndex</code> : Number<div class="sub-desc"></div></li><li><code>newSize</code> : Number<div class="sub-desc"></div></li>        </ul>\r
3063     </div>\r
3064                 </div>\r
3065                         </div>\r
3066         </td>\r
3067         <td class="msource">GridPanel</td>\r
3068     </tr>\r
3069         <tr class="event-row alt expandable">\r
3070         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3071         <td class="sig">\r
3072         <a id="Ext.grid.GridPanel-contextmenu"></a>\r
3073             <b>contextmenu</b> : (&nbsp;<code>Ext.EventObject e</code>&nbsp;)            <div class="mdesc">\r
3074                         <div class="short">The raw contextmenu event for the entire grid.</div>\r
3075             <div class="long">\r
3076                 The raw contextmenu event for the entire grid.    <div class="mdetail-params">\r
3077         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3078         <ul><li><code>e</code> : Ext.EventObject<div class="sub-desc"></div></li>        </ul>\r
3079     </div>\r
3080                 </div>\r
3081                         </div>\r
3082         </td>\r
3083         <td class="msource">GridPanel</td>\r
3084     </tr>\r
3085         <tr class="event-row expandable">\r
3086         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3087         <td class="sig">\r
3088         <a id="Ext.grid.GridPanel-dblclick"></a>\r
3089             <b>dblclick</b> : (&nbsp;<code>Ext.EventObject e</code>&nbsp;)            <div class="mdesc">\r
3090                         <div class="short">The raw dblclick event for the entire grid.</div>\r
3091             <div class="long">\r
3092                 The raw dblclick event for the entire grid.    <div class="mdetail-params">\r
3093         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3094         <ul><li><code>e</code> : Ext.EventObject<div class="sub-desc"></div></li>        </ul>\r
3095     </div>\r
3096                 </div>\r
3097                         </div>\r
3098         </td>\r
3099         <td class="msource">GridPanel</td>\r
3100     </tr>\r
3101         <tr class="event-row inherited alt expandable">\r
3102         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3103         <td class="sig">\r
3104         <a id="Ext.grid.GridPanel-deactivate"></a>\r
3105             <b>deactivate</b> : (&nbsp;<code>Ext.Panel p</code>&nbsp;)            <div class="mdesc">\r
3106                         <div class="short">Fires after the Panel has been visually deactivated.
3107 Note that Panels do not directly support being deactivated, but ...</div>\r
3108             <div class="long">\r
3109                 Fires after the Panel has been visually deactivated.
3110 Note that Panels do not directly support being deactivated, but some Panel subclasses
3111 do (like <a ext:cls="Ext.Window" href="output/Ext.Window.html">Ext.Window</a>). Panels which are child Components of a TabPanel fire the
3112 activate and deactivate events under the control of the TabPanel.    <div class="mdetail-params">\r
3113         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3114         <ul><li><code>p</code> : Ext.Panel<div class="sub-desc">The Panel that has been deactivated.</div></li>        </ul>\r
3115     </div>\r
3116                 </div>\r
3117                         </div>\r
3118         </td>\r
3119         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#event-deactivate" href="output/Ext.Panel.html#event-deactivate">Panel</a></td>\r
3120     </tr>\r
3121         <tr class="event-row inherited expandable">\r
3122         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3123         <td class="sig">\r
3124         <a id="Ext.grid.GridPanel-destroy"></a>\r
3125             <b>destroy</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">\r
3126                         <div class="short">Fires after the component is destroyed.</div>\r
3127             <div class="long">\r
3128                 Fires after the component is destroyed.    <div class="mdetail-params">\r
3129         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3130         <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>\r
3131     </div>\r
3132                 </div>\r
3133                         </div>\r
3134         </td>\r
3135         <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-destroy" href="output/Ext.Component.html#event-destroy">Component</a></td>\r
3136     </tr>\r
3137         <tr class="event-row inherited alt expandable">\r
3138         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3139         <td class="sig">\r
3140         <a id="Ext.grid.GridPanel-disable"></a>\r
3141             <b>disable</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">\r
3142                         <div class="short">Fires after the component is disabled.</div>\r
3143             <div class="long">\r
3144                 Fires after the component is disabled.    <div class="mdetail-params">\r
3145         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3146         <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>\r
3147     </div>\r
3148                 </div>\r
3149                         </div>\r
3150         </td>\r
3151         <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-disable" href="output/Ext.Component.html#event-disable">Component</a></td>\r
3152     </tr>\r
3153         <tr class="event-row inherited expandable">\r
3154         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3155         <td class="sig">\r
3156         <a id="Ext.grid.GridPanel-enable"></a>\r
3157             <b>enable</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">\r
3158                         <div class="short">Fires after the component is enabled.</div>\r
3159             <div class="long">\r
3160                 Fires after the component is enabled.    <div class="mdetail-params">\r
3161         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3162         <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>\r
3163     </div>\r
3164                 </div>\r
3165                         </div>\r
3166         </td>\r
3167         <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-enable" href="output/Ext.Component.html#event-enable">Component</a></td>\r
3168     </tr>\r
3169         <tr class="event-row inherited alt expandable">\r
3170         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3171         <td class="sig">\r
3172         <a id="Ext.grid.GridPanel-expand"></a>\r
3173             <b>expand</b> : (&nbsp;<code>Ext.Panel p</code>&nbsp;)            <div class="mdesc">\r
3174                         <div class="short">Fires after the Panel has been expanded.</div>\r
3175             <div class="long">\r
3176                 Fires after the Panel has been expanded.    <div class="mdetail-params">\r
3177         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3178         <ul><li><code>p</code> : Ext.Panel<div class="sub-desc">The Panel that has been expanded.</div></li>        </ul>\r
3179     </div>\r
3180                 </div>\r
3181                         </div>\r
3182         </td>\r
3183         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#event-expand" href="output/Ext.Panel.html#event-expand">Panel</a></td>\r
3184     </tr>\r
3185         <tr class="event-row expandable">\r
3186         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3187         <td class="sig">\r
3188         <a id="Ext.grid.GridPanel-headerclick"></a>\r
3189             <b>headerclick</b> : (&nbsp;<code>Grid this</code>, <code>Number columnIndex</code>, <code>Ext.EventObject e</code>&nbsp;)            <div class="mdesc">\r
3190                         <div class="short">Fires when a header is clicked</div>\r
3191             <div class="long">\r
3192                 Fires when a header is clicked    <div class="mdetail-params">\r
3193         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3194         <ul><li><code>this</code> : Grid<div class="sub-desc"></div></li><li><code>columnIndex</code> : Number<div class="sub-desc"></div></li><li><code>e</code> : Ext.EventObject<div class="sub-desc"></div></li>        </ul>\r
3195     </div>\r
3196                 </div>\r
3197                         </div>\r
3198         </td>\r
3199         <td class="msource">GridPanel</td>\r
3200     </tr>\r
3201         <tr class="event-row alt expandable">\r
3202         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3203         <td class="sig">\r
3204         <a id="Ext.grid.GridPanel-headercontextmenu"></a>\r
3205             <b>headercontextmenu</b> : (&nbsp;<code>Grid this</code>, <code>Number columnIndex</code>, <code>Ext.EventObject e</code>&nbsp;)            <div class="mdesc">\r
3206                         <div class="short">Fires when a header is right clicked</div>\r
3207             <div class="long">\r
3208                 Fires when a header is right clicked    <div class="mdetail-params">\r
3209         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3210         <ul><li><code>this</code> : Grid<div class="sub-desc"></div></li><li><code>columnIndex</code> : Number<div class="sub-desc"></div></li><li><code>e</code> : Ext.EventObject<div class="sub-desc"></div></li>        </ul>\r
3211     </div>\r
3212                 </div>\r
3213                         </div>\r
3214         </td>\r
3215         <td class="msource">GridPanel</td>\r
3216     </tr>\r
3217         <tr class="event-row expandable">\r
3218         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3219         <td class="sig">\r
3220         <a id="Ext.grid.GridPanel-headerdblclick"></a>\r
3221             <b>headerdblclick</b> : (&nbsp;<code>Grid this</code>, <code>Number columnIndex</code>, <code>Ext.EventObject e</code>&nbsp;)            <div class="mdesc">\r
3222                         <div class="short">Fires when a header cell is double clicked</div>\r
3223             <div class="long">\r
3224                 Fires when a header cell is double clicked    <div class="mdetail-params">\r
3225         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3226         <ul><li><code>this</code> : Grid<div class="sub-desc"></div></li><li><code>columnIndex</code> : Number<div class="sub-desc"></div></li><li><code>e</code> : Ext.EventObject<div class="sub-desc"></div></li>        </ul>\r
3227     </div>\r
3228                 </div>\r
3229                         </div>\r
3230         </td>\r
3231         <td class="msource">GridPanel</td>\r
3232     </tr>\r
3233         <tr class="event-row alt expandable">\r
3234         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3235         <td class="sig">\r
3236         <a id="Ext.grid.GridPanel-headermousedown"></a>\r
3237             <b>headermousedown</b> : (&nbsp;<code>Grid this</code>, <code>Number columnIndex</code>, <code>Ext.EventObject e</code>&nbsp;)            <div class="mdesc">\r
3238                         <div class="short">Fires before a header is clicked</div>\r
3239             <div class="long">\r
3240                 Fires before a header is clicked    <div class="mdetail-params">\r
3241         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3242         <ul><li><code>this</code> : Grid<div class="sub-desc"></div></li><li><code>columnIndex</code> : Number<div class="sub-desc"></div></li><li><code>e</code> : Ext.EventObject<div class="sub-desc"></div></li>        </ul>\r
3243     </div>\r
3244                 </div>\r
3245                         </div>\r
3246         </td>\r
3247         <td class="msource">GridPanel</td>\r
3248     </tr>\r
3249         <tr class="event-row inherited expandable">\r
3250         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3251         <td class="sig">\r
3252         <a id="Ext.grid.GridPanel-hide"></a>\r
3253             <b>hide</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">\r
3254                         <div class="short">Fires after the component is hidden.</div>\r
3255             <div class="long">\r
3256                 Fires after the component is hidden.    <div class="mdetail-params">\r
3257         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3258         <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>\r
3259     </div>\r
3260                 </div>\r
3261                         </div>\r
3262         </td>\r
3263         <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-hide" href="output/Ext.Component.html#event-hide">Component</a></td>\r
3264     </tr>\r
3265         <tr class="event-row inherited alt expandable">\r
3266         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3267         <td class="sig">\r
3268         <a id="Ext.grid.GridPanel-iconchange"></a>\r
3269             <b>iconchange</b> : (&nbsp;<code>Ext.Panel p</code>, <code>String The</code>, <code>String The</code>&nbsp;)            <div class="mdesc">\r
3270                         <div class="short">Fires after the Panel icon class has been set or changed.</div>\r
3271             <div class="long">\r
3272                 Fires after the Panel icon class has been set or changed.    <div class="mdetail-params">\r
3273         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3274         <ul><li><code>p</code> : Ext.Panel<div class="sub-desc">the Panel which has had its icon class changed.</div></li><li><code>The</code> : String<div class="sub-desc">new icon class.</div></li><li><code>The</code> : String<div class="sub-desc">old icon class.</div></li>        </ul>\r
3275     </div>\r
3276                 </div>\r
3277                         </div>\r
3278         </td>\r
3279         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#event-iconchange" href="output/Ext.Panel.html#event-iconchange">Panel</a></td>\r
3280     </tr>\r
3281         <tr class="event-row expandable">\r
3282         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3283         <td class="sig">\r
3284         <a id="Ext.grid.GridPanel-keydown"></a>\r
3285             <b>keydown</b> : (&nbsp;<code>Ext.EventObject e</code>&nbsp;)            <div class="mdesc">\r
3286                         <div class="short">The raw keydown event for the entire grid.</div>\r
3287             <div class="long">\r
3288                 The raw keydown event for the entire grid.    <div class="mdetail-params">\r
3289         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3290         <ul><li><code>e</code> : Ext.EventObject<div class="sub-desc"></div></li>        </ul>\r
3291     </div>\r
3292                 </div>\r
3293                         </div>\r
3294         </td>\r
3295         <td class="msource">GridPanel</td>\r
3296     </tr>\r
3297         <tr class="event-row alt expandable">\r
3298         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3299         <td class="sig">\r
3300         <a id="Ext.grid.GridPanel-keypress"></a>\r
3301             <b>keypress</b> : (&nbsp;<code>Ext.EventObject e</code>&nbsp;)            <div class="mdesc">\r
3302                         <div class="short">The raw keypress event for the entire grid.</div>\r
3303             <div class="long">\r
3304                 The raw keypress event for the entire grid.    <div class="mdetail-params">\r
3305         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3306         <ul><li><code>e</code> : Ext.EventObject<div class="sub-desc"></div></li>        </ul>\r
3307     </div>\r
3308                 </div>\r
3309                         </div>\r
3310         </td>\r
3311         <td class="msource">GridPanel</td>\r
3312     </tr>\r
3313         <tr class="event-row expandable">\r
3314         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3315         <td class="sig">\r
3316         <a id="Ext.grid.GridPanel-mousedown"></a>\r
3317             <b>mousedown</b> : (&nbsp;<code>Ext.EventObject e</code>&nbsp;)            <div class="mdesc">\r
3318                         <div class="short">The raw mousedown event for the entire grid.</div>\r
3319             <div class="long">\r
3320                 The raw mousedown event for the entire grid.    <div class="mdetail-params">\r
3321         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3322         <ul><li><code>e</code> : Ext.EventObject<div class="sub-desc"></div></li>        </ul>\r
3323     </div>\r
3324                 </div>\r
3325                         </div>\r
3326         </td>\r
3327         <td class="msource">GridPanel</td>\r
3328     </tr>\r
3329         <tr class="event-row alt expandable">\r
3330         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3331         <td class="sig">\r
3332         <a id="Ext.grid.GridPanel-mouseout"></a>\r
3333             <b>mouseout</b> : (&nbsp;<code>Ext.EventObject e</code>&nbsp;)            <div class="mdesc">\r
3334                         <div class="short">The raw mouseout event for the entire grid.</div>\r
3335             <div class="long">\r
3336                 The raw mouseout event for the entire grid.    <div class="mdetail-params">\r
3337         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3338         <ul><li><code>e</code> : Ext.EventObject<div class="sub-desc"></div></li>        </ul>\r
3339     </div>\r
3340                 </div>\r
3341                         </div>\r
3342         </td>\r
3343         <td class="msource">GridPanel</td>\r
3344     </tr>\r
3345         <tr class="event-row expandable">\r
3346         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3347         <td class="sig">\r
3348         <a id="Ext.grid.GridPanel-mouseover"></a>\r
3349             <b>mouseover</b> : (&nbsp;<code>Ext.EventObject e</code>&nbsp;)            <div class="mdesc">\r
3350                         <div class="short">The raw mouseover event for the entire grid.</div>\r
3351             <div class="long">\r
3352                 The raw mouseover event for the entire grid.    <div class="mdetail-params">\r
3353         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3354         <ul><li><code>e</code> : Ext.EventObject<div class="sub-desc"></div></li>        </ul>\r
3355     </div>\r
3356                 </div>\r
3357                         </div>\r
3358         </td>\r
3359         <td class="msource">GridPanel</td>\r
3360     </tr>\r
3361         <tr class="event-row alt expandable">\r
3362         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3363         <td class="sig">\r
3364         <a id="Ext.grid.GridPanel-mouseup"></a>\r
3365             <b>mouseup</b> : (&nbsp;<code>Ext.EventObject e</code>&nbsp;)            <div class="mdesc">\r
3366                         <div class="short">The raw mouseup event for the entire grid.</div>\r
3367             <div class="long">\r
3368                 The raw mouseup event for the entire grid.    <div class="mdetail-params">\r
3369         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3370         <ul><li><code>e</code> : Ext.EventObject<div class="sub-desc"></div></li>        </ul>\r
3371     </div>\r
3372                 </div>\r
3373                         </div>\r
3374         </td>\r
3375         <td class="msource">GridPanel</td>\r
3376     </tr>\r
3377         <tr class="event-row inherited expandable">\r
3378         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3379         <td class="sig">\r
3380         <a id="Ext.grid.GridPanel-move"></a>\r
3381             <b>move</b> : (&nbsp;<code>Ext.Component this</code>, <code>Number x</code>, <code>Number y</code>&nbsp;)            <div class="mdesc">\r
3382                         <div class="short">Fires after the component is moved.</div>\r
3383             <div class="long">\r
3384                 Fires after the component is moved.    <div class="mdetail-params">\r
3385         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3386         <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li><li><code>x</code> : Number<div class="sub-desc">The new x position</div></li><li><code>y</code> : Number<div class="sub-desc">The new y position</div></li>        </ul>\r
3387     </div>\r
3388                 </div>\r
3389                         </div>\r
3390         </td>\r
3391         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#event-move" href="output/Ext.BoxComponent.html#event-move">BoxComponent</a></td>\r
3392     </tr>\r
3393         <tr class="event-row inherited alt expandable">\r
3394         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3395         <td class="sig">\r
3396         <a id="Ext.grid.GridPanel-remove"></a>\r
3397             <b>remove</b> : (&nbsp;<code>Ext.Container this</code>, <code>Ext.Component component</code>&nbsp;)            <div class="mdesc">\r
3398                         <div class="short">Fires after any <a ext:cls="Ext.Component" href="output/Ext.Component.html">Ext.Component</a> is removed from the container.</div>\r
3399             <div class="long">\r
3400                 Fires after any <a ext:cls="Ext.Component" href="output/Ext.Component.html">Ext.Component</a> is removed from the container.    <div class="mdetail-params">\r
3401         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3402         <ul><li><code>this</code> : Ext.Container<div class="sub-desc"></div></li><li><code>component</code> : Ext.Component<div class="sub-desc">The component that was removed</div></li>        </ul>\r
3403     </div>\r
3404                 </div>\r
3405                         </div>\r
3406         </td>\r
3407         <td class="msource"><a ext:cls="Ext.Container" ext:member="#event-remove" href="output/Ext.Container.html#event-remove">Container</a></td>\r
3408     </tr>\r
3409         <tr class="event-row inherited expandable">\r
3410         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3411         <td class="sig">\r
3412         <a id="Ext.grid.GridPanel-render"></a>\r
3413             <b>render</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">\r
3414                         <div class="short">Fires after the component is rendered.</div>\r
3415             <div class="long">\r
3416                 Fires after the component is rendered.    <div class="mdetail-params">\r
3417         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3418         <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>\r
3419     </div>\r
3420                 </div>\r
3421                         </div>\r
3422         </td>\r
3423         <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-render" href="output/Ext.Component.html#event-render">Component</a></td>\r
3424     </tr>\r
3425         <tr class="event-row inherited alt expandable">\r
3426         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3427         <td class="sig">\r
3428         <a id="Ext.grid.GridPanel-resize"></a>\r
3429             <b>resize</b> : (&nbsp;<code>Ext.Component this</code>, <code>Number adjWidth</code>, <code>Number adjHeight</code>, <code>Number rawWidth</code>, <code>Number rawHeight</code>&nbsp;)            <div class="mdesc">\r
3430                         <div class="short">Fires after the component is resized.</div>\r
3431             <div class="long">\r
3432                 Fires after the component is resized.    <div class="mdetail-params">\r
3433         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3434         <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li><li><code>adjWidth</code> : Number<div class="sub-desc">The box-adjusted width that was set</div></li><li><code>adjHeight</code> : Number<div class="sub-desc">The box-adjusted height that was set</div></li><li><code>rawWidth</code> : Number<div class="sub-desc">The width that was originally specified</div></li><li><code>rawHeight</code> : Number<div class="sub-desc">The height that was originally specified</div></li>        </ul>\r
3435     </div>\r
3436                 </div>\r
3437                         </div>\r
3438         </td>\r
3439         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#event-resize" href="output/Ext.BoxComponent.html#event-resize">BoxComponent</a></td>\r
3440     </tr>\r
3441         <tr class="event-row expandable">\r
3442         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3443         <td class="sig">\r
3444         <a id="Ext.grid.GridPanel-rowclick"></a>\r
3445             <b>rowclick</b> : (&nbsp;<code>Grid this</code>, <code>Number rowIndex</code>, <code>Ext.EventObject e</code>&nbsp;)            <div class="mdesc">\r
3446                         <div class="short">Fires when a row is clicked</div>\r
3447             <div class="long">\r
3448                 Fires when a row is clicked    <div class="mdetail-params">\r
3449         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3450         <ul><li><code>this</code> : Grid<div class="sub-desc"></div></li><li><code>rowIndex</code> : Number<div class="sub-desc"></div></li><li><code>e</code> : Ext.EventObject<div class="sub-desc"></div></li>        </ul>\r
3451     </div>\r
3452                 </div>\r
3453                         </div>\r
3454         </td>\r
3455         <td class="msource">GridPanel</td>\r
3456     </tr>\r
3457         <tr class="event-row alt expandable">\r
3458         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3459         <td class="sig">\r
3460         <a id="Ext.grid.GridPanel-rowcontextmenu"></a>\r
3461             <b>rowcontextmenu</b> : (&nbsp;<code>Grid this</code>, <code>Number rowIndex</code>, <code>Ext.EventObject e</code>&nbsp;)            <div class="mdesc">\r
3462                         <div class="short">Fires when a row is right clicked</div>\r
3463             <div class="long">\r
3464                 Fires when a row is right clicked    <div class="mdetail-params">\r
3465         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3466         <ul><li><code>this</code> : Grid<div class="sub-desc"></div></li><li><code>rowIndex</code> : Number<div class="sub-desc"></div></li><li><code>e</code> : Ext.EventObject<div class="sub-desc"></div></li>        </ul>\r
3467     </div>\r
3468                 </div>\r
3469                         </div>\r
3470         </td>\r
3471         <td class="msource">GridPanel</td>\r
3472     </tr>\r
3473         <tr class="event-row expandable">\r
3474         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3475         <td class="sig">\r
3476         <a id="Ext.grid.GridPanel-rowdblclick"></a>\r
3477             <b>rowdblclick</b> : (&nbsp;<code>Grid this</code>, <code>Number rowIndex</code>, <code>Ext.EventObject e</code>&nbsp;)            <div class="mdesc">\r
3478                         <div class="short">Fires when a row is double clicked</div>\r
3479             <div class="long">\r
3480                 Fires when a row is double clicked    <div class="mdetail-params">\r
3481         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3482         <ul><li><code>this</code> : Grid<div class="sub-desc"></div></li><li><code>rowIndex</code> : Number<div class="sub-desc"></div></li><li><code>e</code> : Ext.EventObject<div class="sub-desc"></div></li>        </ul>\r
3483     </div>\r
3484                 </div>\r
3485                         </div>\r
3486         </td>\r
3487         <td class="msource">GridPanel</td>\r
3488     </tr>\r
3489         <tr class="event-row alt expandable">\r
3490         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3491         <td class="sig">\r
3492         <a id="Ext.grid.GridPanel-rowmousedown"></a>\r
3493             <b>rowmousedown</b> : (&nbsp;<code>Grid this</code>, <code>Number rowIndex</code>, <code>Ext.EventObject e</code>&nbsp;)            <div class="mdesc">\r
3494                         <div class="short">Fires before a row is clicked</div>\r
3495             <div class="long">\r
3496                 Fires before a row is clicked    <div class="mdetail-params">\r
3497         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3498         <ul><li><code>this</code> : Grid<div class="sub-desc"></div></li><li><code>rowIndex</code> : Number<div class="sub-desc"></div></li><li><code>e</code> : Ext.EventObject<div class="sub-desc"></div></li>        </ul>\r
3499     </div>\r
3500                 </div>\r
3501                         </div>\r
3502         </td>\r
3503         <td class="msource">GridPanel</td>\r
3504     </tr>\r
3505         <tr class="event-row inherited expandable">\r
3506         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3507         <td class="sig">\r
3508         <a id="Ext.grid.GridPanel-show"></a>\r
3509             <b>show</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">\r
3510                         <div class="short">Fires after the component is shown.</div>\r
3511             <div class="long">\r
3512                 Fires after the component is shown.    <div class="mdetail-params">\r
3513         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3514         <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>\r
3515     </div>\r
3516                 </div>\r
3517                         </div>\r
3518         </td>\r
3519         <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-show" href="output/Ext.Component.html#event-show">Component</a></td>\r
3520     </tr>\r
3521         <tr class="event-row alt expandable">\r
3522         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3523         <td class="sig">\r
3524         <a id="Ext.grid.GridPanel-sortchange"></a>\r
3525             <b>sortchange</b> : (&nbsp;<code>Grid this</code>, <code>Object sortInfo</code>&nbsp;)            <div class="mdesc">\r
3526                         <div class="short">Fires when the grid's store sort changes</div>\r
3527             <div class="long">\r
3528                 Fires when the grid's store sort changes    <div class="mdetail-params">\r
3529         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3530         <ul><li><code>this</code> : Grid<div class="sub-desc"></div></li><li><code>sortInfo</code> : Object<div class="sub-desc">An object with the keys field and direction</div></li>        </ul>\r
3531     </div>\r
3532                 </div>\r
3533                         </div>\r
3534         </td>\r
3535         <td class="msource">GridPanel</td>\r
3536     </tr>\r
3537         <tr class="event-row inherited expandable">\r
3538         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3539         <td class="sig">\r
3540         <a id="Ext.grid.GridPanel-staterestore"></a>\r
3541             <b>staterestore</b> : (&nbsp;<code>Ext.Component this</code>, <code>Object state</code>&nbsp;)            <div class="mdesc">\r
3542                         <div class="short">Fires after the state of the component is restored.</div>\r
3543             <div class="long">\r
3544                 Fires after the state of the component is restored.    <div class="mdetail-params">\r
3545         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3546         <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li><li><code>state</code> : Object<div class="sub-desc">The hash of state values</div></li>        </ul>\r
3547     </div>\r
3548                 </div>\r
3549                         </div>\r
3550         </td>\r
3551         <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-staterestore" href="output/Ext.Component.html#event-staterestore">Component</a></td>\r
3552     </tr>\r
3553         <tr class="event-row inherited alt expandable">\r
3554         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3555         <td class="sig">\r
3556         <a id="Ext.grid.GridPanel-statesave"></a>\r
3557             <b>statesave</b> : (&nbsp;<code>Ext.Component this</code>, <code>Object state</code>&nbsp;)            <div class="mdesc">\r
3558                         <div class="short">Fires after the state of the component is saved to the configured state provider.</div>\r
3559             <div class="long">\r
3560                 Fires after the state of the component is saved to the configured state provider.    <div class="mdetail-params">\r
3561         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3562         <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li><li><code>state</code> : Object<div class="sub-desc">The hash of state values</div></li>        </ul>\r
3563     </div>\r
3564                 </div>\r
3565                         </div>\r
3566         </td>\r
3567         <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-statesave" href="output/Ext.Component.html#event-statesave">Component</a></td>\r
3568     </tr>\r
3569         <tr class="event-row inherited expandable">\r
3570         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3571         <td class="sig">\r
3572         <a id="Ext.grid.GridPanel-titlechange"></a>\r
3573             <b>titlechange</b> : (&nbsp;<code>Ext.Panel p</code>, <code>String The</code>&nbsp;)            <div class="mdesc">\r
3574                         <div class="short">Fires after the Panel title has been set or changed.</div>\r
3575             <div class="long">\r
3576                 Fires after the Panel title has been set or changed.    <div class="mdetail-params">\r
3577         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3578         <ul><li><code>p</code> : Ext.Panel<div class="sub-desc">the Panel which has had its title changed.</div></li><li><code>The</code> : String<div class="sub-desc">new title.</div></li>        </ul>\r
3579     </div>\r
3580                 </div>\r
3581                         </div>\r
3582         </td>\r
3583         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#event-titlechange" href="output/Ext.Panel.html#event-titlechange">Panel</a></td>\r
3584     </tr>\r
3585             </table>
3586         
3587         </div>