Subversion Repositories eFlore/Applications.cel

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

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