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

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

lib/:

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