commit extjs-2.2.1
[extjs.git] / docs / output / Ext.grid.PropertyGrid.html
1         <div class="body-wrap">
2         <div class="top-tools">
3             <a class="inner-link" href="#Ext.grid.PropertyGrid-props"><img src="../resources/images/default/s.gif" class="item-icon icon-prop">Properties</a>
4             <a class="inner-link" href="#Ext.grid.PropertyGrid-methods"><img src="../resources/images/default/s.gif" class="item-icon icon-method">Methods</a>
5             <a class="inner-link" href="#Ext.grid.PropertyGrid-events"><img src="../resources/images/default/s.gif" class="item-icon icon-event">Events</a>
6                             <a class="inner-link" href="#Ext.grid.PropertyGrid-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.PropertyGrid"><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"/><a ext:cls="Ext.grid.GridPanel" ext:member="" href="output/Ext.grid.GridPanel.html">GridPanel</a>
16             <img src="resources/elbow-end.gif"/><a ext:cls="Ext.grid.EditorGridPanel" ext:member="" href="output/Ext.grid.EditorGridPanel.html">EditorGridPanel</a>
17               <img src="resources/elbow-end.gif"/>PropertyGrid</pre></div>
18                 <h1>Class Ext.grid.PropertyGrid</h1>
19         <table cellspacing="0">
20             <tr><td class="label">Package:</td><td class="hd-info">Ext.grid</td></tr>
21             <tr><td class="label">Defined In:</td><td class="hd-info"><a href="../src/PropertyGrid.js" target="_blank">PropertyGrid.js</a></td></tr>
22             <tr><td class="label">Class:</td><td class="hd-info">PropertyGrid</td></tr>
23                                     <tr><td class="label">Extends:</td><td class="hd-info"><a ext:cls="Ext.grid.EditorGridPanel" ext:member="" href="output/Ext.grid.EditorGridPanel.html">EditorGridPanel</a></td></tr>
24                     </table>
25         <div class="description">
26             A specialized grid implementation intended to mimic the traditional property grid as typically seen in
27 development IDEs.  Each row in the grid represents a property of some object, and the data is stored
28 as a set of name/value pairs in <a ext:cls="Ext.grid.PropertyRecord" href="output/Ext.grid.PropertyRecord.html">Ext.grid.PropertyRecord</a>s.  Example usage:
29 <pre><code>\r
30 var grid = new Ext.grid.PropertyGrid({\r
31     title: 'Properties Grid',\r
32     autoHeight: true,\r
33     width: 300,\r
34     renderTo: 'grid-ct',\r
35     source: {\r
36         "(name)": "My Object",\r
37         "Created": new Date(Date.parse('10/15/2006')),\r
38         "Available": false,\r
39         "Version": .01,\r
40         "Description": "A test object"\r
41     }\r
42 });</pre></code>        </div>
43         
44         <div class="hr"></div>
45                 <a id="Ext.grid.PropertyGrid-configs"></a>
46         <h2>Config Options</h2>
47         <table cellspacing="0" class="member-table">
48             <tr>
49                 <th class="sig-header" colspan="2">Config Options</th>
50                 <th class="msource-header">Defined By</th>
51             </tr>
52                 <tr class="config-row inherited expandable">\r
53         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
54         <td class="sig">\r
55         <a id="Ext.grid.PropertyGrid-<p>enableDragDrop"></a>\r
56             <b><p>enableDragDrop</b> : Boolean            <div class="mdesc">\r
57                         <div class="short">True to enable dragging of the selected rows of the GridPanel. Setting this to true causes this GridPanel's GridView ...</div>\r
58             <div class="long">\r
59                 True to enable dragging of the selected rows of the GridPanel.</p> <p>Setting this to <b><tt>true</tt></b> causes this GridPanel's <a ext:cls="Ext.grid.GridPanel" ext:member="getView" href="output/Ext.grid.GridPanel.html#getView">GridView</a> to create an instance of <a ext:cls="Ext.grid.GridDragZone" href="output/Ext.grid.GridDragZone.html">Ext.grid.GridDragZone</a>. This is available <b>(only after the Grid has been rendered)</b> as the GridView's <a ext:cls="Ext.grid.GridView" ext:member="dragZone" href="output/Ext.grid.GridView.html#dragZone">dragZone</a> property.</p> <p>A cooperating <a ext:cls="Ext.dd.DropZone" href="output/Ext.dd.DropZone.html">DropZone</a> must be created who's implementations of <a ext:cls="Ext.dd.DropZone" ext:member="onNodeEnter" href="output/Ext.dd.DropZone.html#onNodeEnter">onNodeEnter</a>, <a ext:cls="Ext.dd.DropZone" ext:member="onNodeOver" href="output/Ext.dd.DropZone.html#onNodeOver">onNodeOver</a>, <a ext:cls="Ext.dd.DropZone" ext:member="onNodeOut" href="output/Ext.dd.DropZone.html#onNodeOut">onNodeOut</a> and <a ext:cls="Ext.dd.DropZone" ext:member="onNodeDrop" href="output/Ext.dd.DropZone.html#onNodeDrop">onNodeDrop</a></p> are able to process the <a ext:cls="Ext.grid.GridDragZone" ext:member="getDragData" href="output/Ext.grid.GridDragZone.html#getDragData">data</a> which is provided.            </div>\r
60                         </div>\r
61         </td>\r
62         <td class="msource"><a ext:cls="Ext.grid.GridPanel" ext:member="#<p>enableDragDrop" href="output/Ext.grid.GridPanel.html#<p>enableDragDrop">GridPanel</a></td>\r
63     </tr>\r
64         <tr class="config-row inherited alt expandable">\r
65         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
66         <td class="sig">\r
67         <a id="Ext.grid.PropertyGrid-activeItem"></a>\r
68             <b>activeItem</b> : String/Number            <div class="mdesc">\r
69                         <div class="short">A string component id or the numeric index of the component that should be initially activated within the container's...</div>\r
70             <div class="long">\r
71                 A string component id or the numeric index of the component that should be initially activated within the container's layout on render. For example, activeItem: 'item-1' or activeItem: 0 (index 0 = the first item in the container's collection). activeItem only applies to layout styles that can display items one at a time (like <a ext:cls="Ext.layout.Accordion" href="output/Ext.layout.Accordion.html">Ext.layout.Accordion</a>, <a ext:cls="Ext.layout.CardLayout" href="output/Ext.layout.CardLayout.html">Ext.layout.CardLayout</a> and <a ext:cls="Ext.layout.FitLayout" href="output/Ext.layout.FitLayout.html">Ext.layout.FitLayout</a>). Related to <a ext:cls="Ext.layout.ContainerLayout" ext:member="activeItem" href="output/Ext.layout.ContainerLayout.html#activeItem">Ext.layout.ContainerLayout.activeItem</a>.            </div>\r
72                         </div>\r
73         </td>\r
74         <td class="msource"><a ext:cls="Ext.Container" ext:member="#activeItem" href="output/Ext.Container.html#activeItem">Container</a></td>\r
75     </tr>\r
76         <tr class="config-row inherited">\r
77         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
78         <td class="sig">\r
79         <a id="Ext.grid.PropertyGrid-allowDomMove"></a>\r
80             <b>allowDomMove</b> : Boolean            <div class="mdesc">\r
81                             Whether the component can move the Dom node when rendering (defaults to true).                        </div>\r
82         </td>\r
83         <td class="msource"><a ext:cls="Ext.Component" ext:member="#allowDomMove" href="output/Ext.Component.html#allowDomMove">Component</a></td>\r
84     </tr>\r
85         <tr class="config-row inherited alt expandable">\r
86         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
87         <td class="sig">\r
88         <a id="Ext.grid.PropertyGrid-animCollapse"></a>\r
89             <b>animCollapse</b> : Boolean            <div class="mdesc">\r
90                         <div class="short">True to animate the transition when the panel is collapsed, false to skip the animation (defaults to true if the Ext....</div>\r
91             <div class="long">\r
92                 True to animate the transition when the panel is collapsed, false to skip the animation (defaults to true if the <a ext:cls="Ext.Fx" href="output/Ext.Fx.html">Ext.Fx</a> class is available, otherwise false).            </div>\r
93                         </div>\r
94         </td>\r
95         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#animCollapse" href="output/Ext.Panel.html#animCollapse">Panel</a></td>\r
96     </tr>\r
97         <tr class="config-row inherited expandable">\r
98         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
99         <td class="sig">\r
100         <a id="Ext.grid.PropertyGrid-applyTo"></a>\r
101             <b>applyTo</b> : Mixed            <div class="mdesc">\r
102                         <div class="short">The id of the node, a DOM node or an existing Element corresponding to a DIV that is already present in the document ...</div>\r
103             <div class="long">\r
104                 The id of the node, a DOM node or an existing Element corresponding to a DIV that is already present in the document that specifies some structural markup for this component. When applyTo is used, constituent parts of the component can also be specified by id or CSS class name within the main element, and the component being created may attempt to create its subcomponents from that markup if applicable. Using this config, a call to render() is not required. If applyTo is specified, any value passed for <a ext:cls="Ext.Component" ext:member="renderTo" href="output/Ext.Component.html#renderTo">renderTo</a> will be ignored and the target element's parent node will automatically be used as the component's container.            </div>\r
105                         </div>\r
106         </td>\r
107         <td class="msource"><a ext:cls="Ext.Component" ext:member="#applyTo" href="output/Ext.Component.html#applyTo">Component</a></td>\r
108     </tr>\r
109         <tr class="config-row inherited alt expandable">\r
110         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
111         <td class="sig">\r
112         <a id="Ext.grid.PropertyGrid-autoDestroy"></a>\r
113             <b>autoDestroy</b> : Boolean            <div class="mdesc">\r
114                         <div class="short">If true the container will automatically destroy any contained component that is removed from it, else destruction mu...</div>\r
115             <div class="long">\r
116                 If true the container will automatically destroy any contained component that is removed from it, else destruction must be handled manually (defaults to true).            </div>\r
117                         </div>\r
118         </td>\r
119         <td class="msource"><a ext:cls="Ext.Container" ext:member="#autoDestroy" href="output/Ext.Container.html#autoDestroy">Container</a></td>\r
120     </tr>\r
121         <tr class="config-row inherited expandable">\r
122         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
123         <td class="sig">\r
124         <a id="Ext.grid.PropertyGrid-autoEl"></a>\r
125             <b>autoEl</b> : String/Object            <div class="mdesc">\r
126                         <div class="short">A tag name or DomHelper spec to create an element with. This is intended to create shorthand utility components inlin...</div>\r
127             <div class="long">\r
128                 A tag name or DomHelper spec to create an element with. This is intended to create shorthand utility components inline via JSON. It should not be used for higher level components which already create their own elements. Example usage: <pre><code>{xtype:<em>'box'</em>, autoEl: <em>'div'</em>, cls:<em>'my-class'</em>}
129 {xtype:<em>'box'</em>, autoEl: {tag:<em>'blockquote'</em>, html:<em>'autoEl is cool!'</em>}} // <b>with</b> DomHelper</code></pre>            </div>\r
130                         </div>\r
131         </td>\r
132         <td class="msource"><a ext:cls="Ext.Component" ext:member="#autoEl" href="output/Ext.Component.html#autoEl">Component</a></td>\r
133     </tr>\r
134         <tr class="config-row inherited alt">\r
135         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
136         <td class="sig">\r
137         <a id="Ext.grid.PropertyGrid-autoEncode"></a>\r
138             <b>autoEncode</b> : Boolean            <div class="mdesc">\r
139                             True to automatically HTML encode and decode values pre and post edit (defaults to false)                        </div>\r
140         </td>\r
141         <td class="msource"><a ext:cls="Ext.grid.EditorGridPanel" ext:member="#autoEncode" href="output/Ext.grid.EditorGridPanel.html#autoEncode">EditorGridPanel</a></td>\r
142     </tr>\r
143         <tr class="config-row inherited">\r
144         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
145         <td class="sig">\r
146         <a id="Ext.grid.PropertyGrid-autoExpandColumn"></a>\r
147             <b>autoExpandColumn</b> : String            <div class="mdesc">\r
148                             The id of a column in this grid that should expand to fill unused space. This id can not be 0.                        </div>\r
149         </td>\r
150         <td class="msource"><a ext:cls="Ext.grid.GridPanel" ext:member="#autoExpandColumn" href="output/Ext.grid.GridPanel.html#autoExpandColumn">GridPanel</a></td>\r
151     </tr>\r
152         <tr class="config-row inherited alt">\r
153         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
154         <td class="sig">\r
155         <a id="Ext.grid.PropertyGrid-autoExpandMax"></a>\r
156             <b>autoExpandMax</b> : Number            <div class="mdesc">\r
157                             The maximum width the autoExpandColumn can have (if enabled). Defaults to 1000.                        </div>\r
158         </td>\r
159         <td class="msource"><a ext:cls="Ext.grid.GridPanel" ext:member="#autoExpandMax" href="output/Ext.grid.GridPanel.html#autoExpandMax">GridPanel</a></td>\r
160     </tr>\r
161         <tr class="config-row inherited">\r
162         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
163         <td class="sig">\r
164         <a id="Ext.grid.PropertyGrid-autoExpandMin"></a>\r
165             <b>autoExpandMin</b> : Number            <div class="mdesc">\r
166                             The minimum width the autoExpandColumn can have (if enabled). defaults to 50.                        </div>\r
167         </td>\r
168         <td class="msource"><a ext:cls="Ext.grid.GridPanel" ext:member="#autoExpandMin" href="output/Ext.grid.GridPanel.html#autoExpandMin">GridPanel</a></td>\r
169     </tr>\r
170         <tr class="config-row inherited alt expandable">\r
171         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
172         <td class="sig">\r
173         <a id="Ext.grid.PropertyGrid-autoHeight"></a>\r
174             <b>autoHeight</b> : Boolean            <div class="mdesc">\r
175                         <div class="short">True to use height:'auto', false to use fixed height (defaults to false). Note: Although many components inherit this...</div>\r
176             <div class="long">\r
177                 True to use height:'auto', false to use fixed height (defaults to false). <b>Note</b>: Although many components inherit this config option, not all will function as expected with a height of 'auto'. Setting autoHeight:true means that the browser will manage height based on the element's contents, and that Ext will not manage it at all.            </div>\r
178                         </div>\r
179         </td>\r
180         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#autoHeight" href="output/Ext.BoxComponent.html#autoHeight">BoxComponent</a></td>\r
181     </tr>\r
182         <tr class="config-row inherited expandable">\r
183         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
184         <td class="sig">\r
185         <a id="Ext.grid.PropertyGrid-autoLoad"></a>\r
186             <b>autoLoad</b> : Object/String/Function            <div class="mdesc">\r
187                         <div class="short">A valid url spec according to the Updater Ext.Updater.update method. If autoLoad is not null, the panel will attempt ...</div>\r
188             <div class="long">\r
189                 A valid url spec according to the Updater <a ext:cls="Ext.Updater" ext:member="update" href="output/Ext.Updater.html#update">Ext.Updater.update</a> method. If autoLoad is not null, the panel will attempt to load its contents immediately upon render.<p> The URL will become the default URL for this panel's <a ext:cls="Ext.Panel" ext:member="body" href="output/Ext.Panel.html#body">body</a> element, so it may be <a ext:cls="Ext.Element" ext:member="refresh" href="output/Ext.Element.html#refresh">refresh</a>ed at any time.</p>            </div>\r
190                         </div>\r
191         </td>\r
192         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#autoLoad" href="output/Ext.Panel.html#autoLoad">Panel</a></td>\r
193     </tr>\r
194         <tr class="config-row inherited alt expandable">\r
195         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
196         <td class="sig">\r
197         <a id="Ext.grid.PropertyGrid-autoScroll"></a>\r
198             <b>autoScroll</b> : Boolean            <div class="mdesc">\r
199                         <div class="short">True to use overflow:'auto' on the panel's body element and show scroll bars automatically when necessary, false to c...</div>\r
200             <div class="long">\r
201                 True to use overflow:'auto' on the panel's body element and show scroll bars automatically when necessary, false to clip any overflowing content (defaults to false).            </div>\r
202                         </div>\r
203         </td>\r
204         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#autoScroll" href="output/Ext.Panel.html#autoScroll">Panel</a></td>\r
205     </tr>\r
206         <tr class="config-row inherited expandable">\r
207         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
208         <td class="sig">\r
209         <a id="Ext.grid.PropertyGrid-autoShow"></a>\r
210             <b>autoShow</b> : Boolean            <div class="mdesc">\r
211                         <div class="short">True if the component should check for hidden classes (e.g. 'x-hidden' or 'x-hide-display') and remove them on render...</div>\r
212             <div class="long">\r
213                 True if the component should check for hidden classes (e.g. 'x-hidden' or 'x-hide-display') and remove them on render (defaults to false).            </div>\r
214                         </div>\r
215         </td>\r
216         <td class="msource"><a ext:cls="Ext.Component" ext:member="#autoShow" href="output/Ext.Component.html#autoShow">Component</a></td>\r
217     </tr>\r
218         <tr class="config-row inherited alt expandable">\r
219         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
220         <td class="sig">\r
221         <a id="Ext.grid.PropertyGrid-autoWidth"></a>\r
222             <b>autoWidth</b> : Boolean            <div class="mdesc">\r
223                         <div class="short">True to use width:'auto', false to use fixed width (defaults to false). Note: Although many components inherit this c...</div>\r
224             <div class="long">\r
225                 True to use width:'auto', false to use fixed width (defaults to false). <b>Note</b>: Although many components inherit this config option, not all will function as expected with a width of 'auto'. Setting autoWidth:true means that the browser will manage width based on the element's contents, and that Ext will not manage it at all.            </div>\r
226                         </div>\r
227         </td>\r
228         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#autoWidth" href="output/Ext.BoxComponent.html#autoWidth">BoxComponent</a></td>\r
229     </tr>\r
230         <tr class="config-row inherited">\r
231         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
232         <td class="sig">\r
233         <a id="Ext.grid.PropertyGrid-baseCls"></a>\r
234             <b>baseCls</b> : String            <div class="mdesc">\r
235                             The base CSS class to apply to this panel's element (defaults to 'x-panel').                        </div>\r
236         </td>\r
237         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#baseCls" href="output/Ext.Panel.html#baseCls">Panel</a></td>\r
238     </tr>\r
239         <tr class="config-row inherited alt expandable">\r
240         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
241         <td class="sig">\r
242         <a id="Ext.grid.PropertyGrid-bbar"></a>\r
243             <b>bbar</b> : Object/Array            <div class="mdesc">\r
244                         <div class="short">The bottom toolbar of the panel. This can be either an Ext.Toolbar object or an array of buttons/button configs to be...</div>\r
245             <div class="long">\r
246                 The bottom toolbar of the panel. This can be either an <a ext:cls="Ext.Toolbar" href="output/Ext.Toolbar.html">Ext.Toolbar</a> object or an array of buttons/button configs to be added to the toolbar. Note that this is not available as a property after render. To access the bottom toolbar after render, use <a ext:cls="Ext.Panel" ext:member="getBottomToolbar" href="output/Ext.Panel.html#getBottomToolbar">getBottomToolbar</a>.            </div>\r
247                         </div>\r
248         </td>\r
249         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#bbar" href="output/Ext.Panel.html#bbar">Panel</a></td>\r
250     </tr>\r
251         <tr class="config-row inherited expandable">\r
252         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
253         <td class="sig">\r
254         <a id="Ext.grid.PropertyGrid-bodyBorder"></a>\r
255             <b>bodyBorder</b> : Boolean            <div class="mdesc">\r
256                         <div class="short">True to display an interior border on the body element of the panel, false to hide it (defaults to true). This only a...</div>\r
257             <div class="long">\r
258                 True to display an interior border on the body element of the panel, false to hide it (defaults to true). This only applies when <a ext:cls="Ext.Panel" ext:member="border" href="output/Ext.Panel.html#border">border</a> == true. If border == true and bodyBorder == false, the border will display as a 1px wide inset border, giving the entire body element an inset appearance.            </div>\r
259                         </div>\r
260         </td>\r
261         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#bodyBorder" href="output/Ext.Panel.html#bodyBorder">Panel</a></td>\r
262     </tr>\r
263         <tr class="config-row inherited alt expandable">\r
264         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
265         <td class="sig">\r
266         <a id="Ext.grid.PropertyGrid-bodyCfg"></a>\r
267             <b>bodyCfg</b> : Object            <div class="mdesc">\r
268                         <div class="short">A DomHelper configuration object specifying the element structure of this Panel's body Element. This may be used to f...</div>\r
269             <div class="long">\r
270                 <p>A <a ext:cls="Ext.DomHelper" href="output/Ext.DomHelper.html">DomHelper</a> configuration object specifying the element structure of this Panel's <a ext:cls="Ext.Panel" ext:member="body" href="output/Ext.Panel.html#body">body</a> Element.</p> <p>This may be used to force the body Element to use a different form of markup than is created automatically. An example of this might be to create a child Panel containing custom content, such as a header, or forcing centering of all Panel content by having the body be a &lt;center&gt; element:</p><code><pre>new Ext.Panel({\r
271     title: 'New Message',\r
272     collapsible: true,\r
273     renderTo: Ext.getBody(),\r
274     width: 400,\r
275     bodyCfg: {\r
276         tag: 'center',\r
277         cls: 'x-panel-body'\r
278     },\r
279     items: [{\r
280         border: false,\r
281         header: false,\r
282         bodyCfg: {tag: 'h2', html: 'Message'}\r
283     }, {\r
284         xtype: 'textarea',\r
285         style: {\r
286             width: '95%',\r
287             marginBottom: '10px'\r
288         }\r
289     },\r
290         new Ext.Button({\r
291             text: 'Send',\r
292             minWidth: '100',\r
293             style: {\r
294                 marginBottom: '10px'\r
295             }\r
296         })\r
297     ]\r
298 });</pre></code>            </div>\r
299                         </div>\r
300         </td>\r
301         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#bodyCfg" href="output/Ext.Panel.html#bodyCfg">Panel</a></td>\r
302     </tr>\r
303         <tr class="config-row inherited expandable">\r
304         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
305         <td class="sig">\r
306         <a id="Ext.grid.PropertyGrid-bodyStyle"></a>\r
307             <b>bodyStyle</b> : String/Object/Function            <div class="mdesc">\r
308                         <div class="short">Custom CSS styles to be applied to the body element in the format expected by Ext.Element.applyStyles (defaults to nu...</div>\r
309             <div class="long">\r
310                 Custom CSS styles to be applied to the body element in the format expected by <a ext:cls="Ext.Element" ext:member="applyStyles" href="output/Ext.Element.html#applyStyles">Ext.Element.applyStyles</a> (defaults to null).            </div>\r
311                         </div>\r
312         </td>\r
313         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#bodyStyle" href="output/Ext.Panel.html#bodyStyle">Panel</a></td>\r
314     </tr>\r
315         <tr class="config-row inherited alt expandable">\r
316         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
317         <td class="sig">\r
318         <a id="Ext.grid.PropertyGrid-border"></a>\r
319             <b>border</b> : Boolean            <div class="mdesc">\r
320                         <div class="short">True to display the borders of the panel's body element, false to hide them (defaults to true). By default, the borde...</div>\r
321             <div class="long">\r
322                 True to display the borders of the panel's body element, false to hide them (defaults to true). By default, the border is a 2px wide inset border, but this can be further altered by setting <a ext:cls="Ext.Panel" ext:member="bodyBorder" href="output/Ext.Panel.html#bodyBorder">bodyBorder</a> to false.            </div>\r
323                         </div>\r
324         </td>\r
325         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#border" href="output/Ext.Panel.html#border">Panel</a></td>\r
326     </tr>\r
327         <tr class="config-row inherited expandable">\r
328         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
329         <td class="sig">\r
330         <a id="Ext.grid.PropertyGrid-bufferResize"></a>\r
331             <b>bufferResize</b> : Boolean/Number            <div class="mdesc">\r
332                         <div class="short">When set to true (100 milliseconds) or a number of milliseconds, the layout assigned for this container will buffer t...</div>\r
333             <div class="long">\r
334                 When set to true (100 milliseconds) or a number of milliseconds, the layout assigned for this container will buffer the frequency it calculates and does a re-layout of components. This is useful for heavy containers or containers with a large quantity of sub-components for which frequent layout calls would be expensive.            </div>\r
335                         </div>\r
336         </td>\r
337         <td class="msource"><a ext:cls="Ext.Container" ext:member="#bufferResize" href="output/Ext.Container.html#bufferResize">Container</a></td>\r
338     </tr>\r
339         <tr class="config-row inherited alt">\r
340         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
341         <td class="sig">\r
342         <a id="Ext.grid.PropertyGrid-buttonAlign"></a>\r
343             <b>buttonAlign</b> : String            <div class="mdesc">\r
344                             The alignment of any buttons added to this panel. Valid values are 'right,' 'left' and 'center' (defaults to 'right').                        </div>\r
345         </td>\r
346         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#buttonAlign" href="output/Ext.Panel.html#buttonAlign">Panel</a></td>\r
347     </tr>\r
348         <tr class="config-row inherited">\r
349         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
350         <td class="sig">\r
351         <a id="Ext.grid.PropertyGrid-buttons"></a>\r
352             <b>buttons</b> : Array            <div class="mdesc">\r
353                             An array of <a ext:cls="Ext.Button" href="output/Ext.Button.html">Ext.Button</a>s or <a ext:cls="Ext.Button" href="output/Ext.Button.html">Ext.Button</a> configs used to add buttons to the footer of this panel.                        </div>\r
354         </td>\r
355         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#buttons" href="output/Ext.Panel.html#buttons">Panel</a></td>\r
356     </tr>\r
357         <tr class="config-row inherited alt expandable">\r
358         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
359         <td class="sig">\r
360         <a id="Ext.grid.PropertyGrid-clearCls"></a>\r
361             <b>clearCls</b> : String            <div class="mdesc">\r
362                         <div class="short">The CSS class used to provide field clearing (defaults to 'x-form-clear-left'). This config is only used when this Co...</div>\r
363             <div class="long">\r
364                 The CSS class used to provide field clearing (defaults to 'x-form-clear-left'). <p><b>This config is only used when this Component is rendered by a Container which has been configured to use the <a ext:cls="Ext.form.FormLayout" href="output/Ext.form.FormLayout.html">FormLayout</a> layout manager.</b></p>            </div>\r
365                         </div>\r
366         </td>\r
367         <td class="msource"><a ext:cls="Ext.Component" ext:member="#clearCls" href="output/Ext.Component.html#clearCls">Component</a></td>\r
368     </tr>\r
369         <tr class="config-row inherited expandable">\r
370         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
371         <td class="sig">\r
372         <a id="Ext.grid.PropertyGrid-clicksToEdit"></a>\r
373             <b>clicksToEdit</b> : Number            <div class="mdesc">\r
374                         <div class="short">The number of clicks on a cell required to display the cell's editor (defaults to 2). Setting this option to 'auto' m...</div>\r
375             <div class="long">\r
376                 <p>The number of clicks on a cell required to display the cell's editor (defaults to 2).</p> <p>Setting this option to 'auto' means that mousedown <i>on the selected cell</i> starts editing that cell.</p>            </div>\r
377                         </div>\r
378         </td>\r
379         <td class="msource"><a ext:cls="Ext.grid.EditorGridPanel" ext:member="#clicksToEdit" href="output/Ext.grid.EditorGridPanel.html#clicksToEdit">EditorGridPanel</a></td>\r
380     </tr>\r
381         <tr class="config-row inherited alt expandable">\r
382         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
383         <td class="sig">\r
384         <a id="Ext.grid.PropertyGrid-cls"></a>\r
385             <b>cls</b> : String            <div class="mdesc">\r
386                         <div class="short">An optional extra CSS class that will be added to this component's Element (defaults to ''). This can be useful for a...</div>\r
387             <div class="long">\r
388                 An optional extra CSS class that will be added to this component's Element (defaults to ''). This can be useful for adding customized styles to the component or any of its children using standard CSS rules.            </div>\r
389                         </div>\r
390         </td>\r
391         <td class="msource"><a ext:cls="Ext.Component" ext:member="#cls" href="output/Ext.Component.html#cls">Component</a></td>\r
392     </tr>\r
393         <tr class="config-row inherited">\r
394         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
395         <td class="sig">\r
396         <a id="Ext.grid.PropertyGrid-cm"></a>\r
397             <b>cm</b> : Object            <div class="mdesc">\r
398                             Shorthand for <a ext:cls="Ext.grid.GridPanel" ext:member="colModel" href="output/Ext.grid.GridPanel.html#colModel">colModel</a>.                        </div>\r
399         </td>\r
400         <td class="msource"><a ext:cls="Ext.grid.GridPanel" ext:member="#cm" href="output/Ext.grid.GridPanel.html#cm">GridPanel</a></td>\r
401     </tr>\r
402         <tr class="config-row inherited alt">\r
403         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
404         <td class="sig">\r
405         <a id="Ext.grid.PropertyGrid-colModel"></a>\r
406             <b>colModel</b> : Object            <div class="mdesc">\r
407                             The <a ext:cls="Ext.grid.ColumnModel" href="output/Ext.grid.ColumnModel.html">Ext.grid.ColumnModel</a> to use when rendering the grid (required).                        </div>\r
408         </td>\r
409         <td class="msource"><a ext:cls="Ext.grid.GridPanel" ext:member="#colModel" href="output/Ext.grid.GridPanel.html#colModel">GridPanel</a></td>\r
410     </tr>\r
411         <tr class="config-row inherited expandable">\r
412         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
413         <td class="sig">\r
414         <a id="Ext.grid.PropertyGrid-collapseFirst"></a>\r
415             <b>collapseFirst</b> : Boolean            <div class="mdesc">\r
416                         <div class="short">True to make sure the collapse/expand toggle button always renders first (to the left of) any other tools in the pane...</div>\r
417             <div class="long">\r
418                 True to make sure the collapse/expand toggle button always renders first (to the left of) any other tools in the panel's title bar, false to render it last (defaults to true).            </div>\r
419                         </div>\r
420         </td>\r
421         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#collapseFirst" href="output/Ext.Panel.html#collapseFirst">Panel</a></td>\r
422     </tr>\r
423         <tr class="config-row inherited alt">\r
424         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
425         <td class="sig">\r
426         <a id="Ext.grid.PropertyGrid-collapsed"></a>\r
427             <b>collapsed</b> : Boolean            <div class="mdesc">\r
428                             True to render the panel collapsed, false to render it expanded (defaults to false).                        </div>\r
429         </td>\r
430         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#collapsed" href="output/Ext.Panel.html#collapsed">Panel</a></td>\r
431     </tr>\r
432         <tr class="config-row inherited">\r
433         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
434         <td class="sig">\r
435         <a id="Ext.grid.PropertyGrid-collapsedCls"></a>\r
436             <b>collapsedCls</b> : String            <div class="mdesc">\r
437                             A CSS class to add to the panel's element after it has been collapsed (defaults to 'x-panel-collapsed').                        </div>\r
438         </td>\r
439         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#collapsedCls" href="output/Ext.Panel.html#collapsedCls">Panel</a></td>\r
440     </tr>\r
441         <tr class="config-row inherited alt expandable">\r
442         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
443         <td class="sig">\r
444         <a id="Ext.grid.PropertyGrid-collapsible"></a>\r
445             <b>collapsible</b> : Boolean            <div class="mdesc">\r
446                         <div class="short">True to make the panel collapsible and have the expand/collapse toggle button automatically rendered into the header ...</div>\r
447             <div class="long">\r
448                 True to make the panel collapsible and have the expand/collapse toggle button automatically rendered into the header tool button area, false to keep the panel statically sized with no button (defaults to false).            </div>\r
449                         </div>\r
450         </td>\r
451         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#collapsible" href="output/Ext.Panel.html#collapsible">Panel</a></td>\r
452     </tr>\r
453         <tr class="config-row inherited">\r
454         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
455         <td class="sig">\r
456         <a id="Ext.grid.PropertyGrid-columns"></a>\r
457             <b>columns</b> : Array            <div class="mdesc">\r
458                             An array of columns to auto create a ColumnModel                        </div>\r
459         </td>\r
460         <td class="msource"><a ext:cls="Ext.grid.GridPanel" ext:member="#columns" href="output/Ext.grid.GridPanel.html#columns">GridPanel</a></td>\r
461     </tr>\r
462         <tr class="config-row inherited alt expandable">\r
463         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
464         <td class="sig">\r
465         <a id="Ext.grid.PropertyGrid-contentEl"></a>\r
466             <b>contentEl</b> : String            <div class="mdesc">\r
467                         <div class="short">The id of an existing HTML node to use as the panel's body content (defaults to ''). The specified Element is appende...</div>\r
468             <div class="long">\r
469                 The id of an existing HTML node to use as the panel's body content (defaults to ''). The specified Element is appended to the Panel's body Element by the Panel's afterRender method <i>after any configured <a ext:cls="Ext.Panel" ext:member="html" href="output/Ext.Panel.html#html">HTML</a> has been inserted</i>, and so the document will not contain this HTML at the time the render event is fired.            </div>\r
470                         </div>\r
471         </td>\r
472         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#contentEl" href="output/Ext.Panel.html#contentEl">Panel</a></td>\r
473     </tr>\r
474         <tr class="config-row inherited expandable">\r
475         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
476         <td class="sig">\r
477         <a id="Ext.grid.PropertyGrid-ctCls"></a>\r
478             <b>ctCls</b> : String            <div class="mdesc">\r
479                         <div class="short">An optional extra CSS class that will be added to this component's container (defaults to ''). This can be useful for...</div>\r
480             <div class="long">\r
481                 An optional extra CSS class that will be added to this component's container (defaults to ''). This can be useful for adding customized styles to the container or any of its children using standard CSS rules.            </div>\r
482                         </div>\r
483         </td>\r
484         <td class="msource"><a ext:cls="Ext.Component" ext:member="#ctCls" href="output/Ext.Component.html#ctCls">Component</a></td>\r
485     </tr>\r
486         <tr class="config-row alt expandable">\r
487         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
488         <td class="sig">\r
489         <a id="Ext.grid.PropertyGrid-customEditors"></a>\r
490             <b>customEditors</b> : Object            <div class="mdesc">\r
491                         <div class="short">An object containing name/value pairs of custom editor type definitions that allow the grid to support additional typ...</div>\r
492             <div class="long">\r
493                 An object containing name/value pairs of custom editor type definitions that allow the grid to support additional types of editable fields. By default, the grid supports strongly-typed editing of strings, dates, numbers and booleans using built-in form editors, but any custom type can be supported and associated with a custom input control by specifying a custom editor. The name of the editor type should correspond with the name of the property that will use the editor. Example usage: <pre><code>var grid = <b>new</b> Ext.grid.PropertyGrid({
494     ...
495     customEditors: {
496         <em>'Start Time'</em>: <b>new</b> Ext.grid.GridEditor(<b>new</b> Ext.form.TimeField({selectOnFocus:true}))
497     },
498     source: {
499         <em>'Start Time'</em>: <em>'10:00 AM'</em>
500     }
501 });</code></pre>            </div>\r
502                         </div>\r
503         </td>\r
504         <td class="msource">PropertyGrid</td>\r
505     </tr>\r
506         <tr class="config-row inherited expandable">\r
507         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
508         <td class="sig">\r
509         <a id="Ext.grid.PropertyGrid-defaultType"></a>\r
510             <b>defaultType</b> : String            <div class="mdesc">\r
511                         <div class="short">The default xtype of child Components to create in this Container when a child item is specified as a raw configurati...</div>\r
512             <div class="long">\r
513                 <p>The default <a ext:cls="Ext.Component" href="output/Ext.Component.html">xtype</a> of child Components to create in this Container when a child item is specified as a raw configuration object, rather than as an instantiated Component.</p> <p>Defaults to 'panel'.</p>            </div>\r
514                         </div>\r
515         </td>\r
516         <td class="msource"><a ext:cls="Ext.Container" ext:member="#defaultType" href="output/Ext.Container.html#defaultType">Container</a></td>\r
517     </tr>\r
518         <tr class="config-row inherited alt expandable">\r
519         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
520         <td class="sig">\r
521         <a id="Ext.grid.PropertyGrid-defaults"></a>\r
522             <b>defaults</b> : Object            <div class="mdesc">\r
523                         <div class="short">A config object that will be applied to all components added to this container either via the items config or via the...</div>\r
524             <div class="long">\r
525                 A config object that will be applied to all components added to this container either via the <a ext:cls="Ext.Container" ext:member="items" href="output/Ext.Container.html#items">items</a> config or via the <a ext:cls="Ext.Container" ext:member="add" href="output/Ext.Container.html#add">add</a> or <a ext:cls="Ext.Container" ext:member="insert" href="output/Ext.Container.html#insert">insert</a> methods. The defaults config can contain any number of name/value property pairs to be added to each item, and should be valid for the types of items being added to the container. For example, to automatically apply padding to the body of each of a set of contained <a ext:cls="Ext.Panel" href="output/Ext.Panel.html">Ext.Panel</a> items, you could pass: defaults: {bodyStyle:'padding:15px'}.            </div>\r
526                         </div>\r
527         </td>\r
528         <td class="msource"><a ext:cls="Ext.Container" ext:member="#defaults" href="output/Ext.Container.html#defaults">Container</a></td>\r
529     </tr>\r
530         <tr class="config-row inherited">\r
531         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
532         <td class="sig">\r
533         <a id="Ext.grid.PropertyGrid-deferRowRender"></a>\r
534             <b>deferRowRender</b> : Boolean            <div class="mdesc">\r
535                             True to enable deferred row rendering. Default is true.                        </div>\r
536         </td>\r
537         <td class="msource"><a ext:cls="Ext.grid.GridPanel" ext:member="#deferRowRender" href="output/Ext.grid.GridPanel.html#deferRowRender">GridPanel</a></td>\r
538     </tr>\r
539         <tr class="config-row inherited alt">\r
540         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
541         <td class="sig">\r
542         <a id="Ext.grid.PropertyGrid-disableSelection"></a>\r
543             <b>disableSelection</b> : Boolean            <div class="mdesc">\r
544                             True to disable selections in the grid (defaults to false). - ignored if a SelectionModel is specified                        </div>\r
545         </td>\r
546         <td class="msource"><a ext:cls="Ext.grid.GridPanel" ext:member="#disableSelection" href="output/Ext.grid.GridPanel.html#disableSelection">GridPanel</a></td>\r
547     </tr>\r
548         <tr class="config-row inherited">\r
549         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
550         <td class="sig">\r
551         <a id="Ext.grid.PropertyGrid-disabled"></a>\r
552             <b>disabled</b> : Boolean            <div class="mdesc">\r
553                             Render this component disabled (default is false).                        </div>\r
554         </td>\r
555         <td class="msource"><a ext:cls="Ext.Component" ext:member="#disabled" href="output/Ext.Component.html#disabled">Component</a></td>\r
556     </tr>\r
557         <tr class="config-row inherited alt">\r
558         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
559         <td class="sig">\r
560         <a id="Ext.grid.PropertyGrid-disabledClass"></a>\r
561             <b>disabledClass</b> : String            <div class="mdesc">\r
562                             CSS class added to the component when it is disabled (defaults to "x-item-disabled").                        </div>\r
563         </td>\r
564         <td class="msource"><a ext:cls="Ext.Component" ext:member="#disabledClass" href="output/Ext.Component.html#disabledClass">Component</a></td>\r
565     </tr>\r
566         <tr class="config-row inherited expandable">\r
567         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
568         <td class="sig">\r
569         <a id="Ext.grid.PropertyGrid-draggable"></a>\r
570             <b>draggable</b> : Boolean            <div class="mdesc">\r
571                         <div class="short">True to enable dragging of this Panel (defaults to false). For custom drag/drop implementations, an Ext.Panel.DD conf...</div>\r
572             <div class="long">\r
573                 <p>True to enable dragging of this Panel (defaults to false).</p> <p>For custom drag/drop implementations, an Ext.Panel.DD config could also be passed in this config instead of true. Ext.Panel.DD is an internal, undocumented class which moves a proxy Element around in place of the Panel's element, but provides no other behaviour during dragging or on drop. It is a subclass of <a ext:cls="Ext.dd.DragSource" href="output/Ext.dd.DragSource.html">Ext.dd.DragSource</a>, so behaviour may be added by implementing the interface methods of <a ext:cls="Ext.dd.DragDrop" href="output/Ext.dd.DragDrop.html">Ext.dd.DragDrop</a> eg: <pre><code>new Ext.Panel({
574     title: <em>'Drag me'</em>,
575     x: 100,
576     y: 100,
577     renderTo: Ext.getBody(),
578     floating: true,
579     frame: true,
580     width: 400,
581     height: 200,
582     draggable: {
583 <i>//      Config option of Ext.Panel.DD class.</i>
584 <i>//      It's a floating Panel, so <b>do</b> not show a placeholder proxy <b>in</b> the original position.</i>
585         insertProxy: false,
586
587 <i>//      Called <b>for</b> each mousemove event <b>while</b> dragging the DD object.</i>
588         onDrag : <b>function</b>(e){
589 <i>//          Record the x,y position of the drag proxy so that we can</i>
590 <i>//          position the Panel at end of drag.</i>
591             <b>var</b> pel = <b>this</b>.proxy.getEl();
592             <b>this</b>.x = pel.getLeft(true);
593             <b>this</b>.y = pel.getTop(true);
594
595 <i>//          Keep the Shadow aligned <b>if</b> there is one.</i>
596             <b>var</b> s = <b>this</b>.panel.getEl().shadow;
597             <b>if</b> (s) {
598                 s.realign(<b>this</b>.x, <b>this</b>.y, pel.getWidth(), pel.getHeight());
599             }
600         },
601
602 <i>//      Called on the mouseup event.</i>
603         endDrag : <b>function</b>(e){
604             <b>this</b>.panel.setPosition(<b>this</b>.x, <b>this</b>.y);
605         }
606     }
607 }).show();</code></pre>            </div>\r
608                         </div>\r
609         </td>\r
610         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#draggable" href="output/Ext.Panel.html#draggable">Panel</a></td>\r
611     </tr>\r
612         <tr class="config-row inherited alt expandable">\r
613         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
614         <td class="sig">\r
615         <a id="Ext.grid.PropertyGrid-elements"></a>\r
616             <b>elements</b> : String            <div class="mdesc">\r
617                         <div class="short">A comma-delimited list of panel elements to initialize when the panel is rendered. Normally, this list will be genera...</div>\r
618             <div class="long">\r
619                 A comma-delimited list of panel elements to initialize when the panel is rendered. Normally, this list will be generated automatically based on the items added to the panel at config time, but sometimes it might be useful to make sure a structural element is rendered even if not specified at config time (for example, you may want to add a button or toolbar dynamically after the panel has been rendered). Adding those elements to this list will allocate the required placeholders in the panel when it is rendered. Valid values are<ul> <li><b>header</b></li> <li><b>tbar</b> (top bar)</li> <li><b>body</b> (required)</li> <li><b>bbar</b> (bottom bar)</li> <li><b>footer</b><li> </ul> Defaults to 'body'.            </div>\r
620                         </div>\r
621         </td>\r
622         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#elements" href="output/Ext.Panel.html#elements">Panel</a></td>\r
623     </tr>\r
624         <tr class="config-row inherited">\r
625         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
626         <td class="sig">\r
627         <a id="Ext.grid.PropertyGrid-enableColumnHide"></a>\r
628             <b>enableColumnHide</b> : Boolean            <div class="mdesc">\r
629                             True to enable hiding of columns with the header context menu.                        </div>\r
630         </td>\r
631         <td class="msource"><a ext:cls="Ext.grid.GridPanel" ext:member="#enableColumnHide" href="output/Ext.grid.GridPanel.html#enableColumnHide">GridPanel</a></td>\r
632     </tr>\r
633         <tr class="config-row inherited alt">\r
634         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
635         <td class="sig">\r
636         <a id="Ext.grid.PropertyGrid-enableColumnMove"></a>\r
637             <b>enableColumnMove</b> : Boolean            <div class="mdesc">\r
638                             True to enable drag and drop reorder of columns.                        </div>\r
639         </td>\r
640         <td class="msource"><a ext:cls="Ext.grid.GridPanel" ext:member="#enableColumnMove" href="output/Ext.grid.GridPanel.html#enableColumnMove">GridPanel</a></td>\r
641     </tr>\r
642         <tr class="config-row inherited">\r
643         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
644         <td class="sig">\r
645         <a id="Ext.grid.PropertyGrid-enableColumnResize"></a>\r
646             <b>enableColumnResize</b> : Boolean            <div class="mdesc">\r
647                             False to turn off column resizing for the whole grid (defaults to true).                        </div>\r
648         </td>\r
649         <td class="msource"><a ext:cls="Ext.grid.GridPanel" ext:member="#enableColumnResize" href="output/Ext.grid.GridPanel.html#enableColumnResize">GridPanel</a></td>\r
650     </tr>\r
651         <tr class="config-row inherited alt">\r
652         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
653         <td class="sig">\r
654         <a id="Ext.grid.PropertyGrid-enableHdMenu"></a>\r
655             <b>enableHdMenu</b> : Boolean            <div class="mdesc">\r
656                             True to enable the drop down button for menu in the headers.                        </div>\r
657         </td>\r
658         <td class="msource"><a ext:cls="Ext.grid.GridPanel" ext:member="#enableHdMenu" href="output/Ext.grid.GridPanel.html#enableHdMenu">GridPanel</a></td>\r
659     </tr>\r
660         <tr class="config-row inherited expandable">\r
661         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
662         <td class="sig">\r
663         <a id="Ext.grid.PropertyGrid-fieldLabel"></a>\r
664             <b>fieldLabel</b> : String            <div class="mdesc">\r
665                         <div class="short">The label text to display next to this Component (defaults to '') This config is only used when this Component is ren...</div>\r
666             <div class="long">\r
667                 The label text to display next to this Component (defaults to '') <p><b>This config is only used when this Component is rendered by a Container which has been configured to use the <a ext:cls="Ext.form.FormLayout" href="output/Ext.form.FormLayout.html">FormLayout</a> layout manager.</b></p> Example use:<pre><code>new Ext.FormPanel({
668     height: 100,
669     renderTo: Ext.getBody(),
670     items: [{
671         xtype: <em>'textfield'</em>,
672         fieldLabel: <em>'Name'</em>
673     }]
674 });</code></pre>            </div>\r
675                         </div>\r
676         </td>\r
677         <td class="msource"><a ext:cls="Ext.Component" ext:member="#fieldLabel" href="output/Ext.Component.html#fieldLabel">Component</a></td>\r
678     </tr>\r
679         <tr class="config-row inherited alt expandable">\r
680         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
681         <td class="sig">\r
682         <a id="Ext.grid.PropertyGrid-floating"></a>\r
683             <b>floating</b> : Boolean            <div class="mdesc">\r
684                         <div class="short">True to float the panel (absolute position it with automatic shimming and shadow), false to display it inline where i...</div>\r
685             <div class="long">\r
686                 True to float the panel (absolute position it with automatic shimming and shadow), false to display it inline where it is rendered (defaults to false). Note that by default, setting floating to true will cause the panel to display at negative offsets so that it is hidden -- because the panel is absolute positioned, the position must be set explicitly after render (e.g., myPanel.setPosition(100,100);). Also, when floating a panel you should always assign a fixed width, otherwise it will be auto width and will expand to fill to the right edge of the viewport.            </div>\r
687                         </div>\r
688         </td>\r
689         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#floating" href="output/Ext.Panel.html#floating">Panel</a></td>\r
690     </tr>\r
691         <tr class="config-row inherited expandable">\r
692         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
693         <td class="sig">\r
694         <a id="Ext.grid.PropertyGrid-footer"></a>\r
695             <b>footer</b> : Boolean            <div class="mdesc">\r
696                         <div class="short">True to create the footer element explicitly, false to skip creating it. By default, when footer is not specified, if...</div>\r
697             <div class="long">\r
698                 True to create the footer element explicitly, false to skip creating it. By default, when footer is not specified, if one or more buttons have been added to the panel the footer will be created automatically, otherwise it will not.            </div>\r
699                         </div>\r
700         </td>\r
701         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#footer" href="output/Ext.Panel.html#footer">Panel</a></td>\r
702     </tr>\r
703         <tr class="config-row inherited alt">\r
704         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
705         <td class="sig">\r
706         <a id="Ext.grid.PropertyGrid-frame"></a>\r
707             <b>frame</b> : Boolean            <div class="mdesc">\r
708                             True to render the panel with custom rounded borders, false to render with plain 1px square borders (defaults to false).                        </div>\r
709         </td>\r
710         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#frame" href="output/Ext.Panel.html#frame">Panel</a></td>\r
711     </tr>\r
712         <tr class="config-row inherited expandable">\r
713         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
714         <td class="sig">\r
715         <a id="Ext.grid.PropertyGrid-header"></a>\r
716             <b>header</b> : Boolean            <div class="mdesc">\r
717                         <div class="short">True to create the header element explicitly, false to skip creating it. By default, when header is not specified, if...</div>\r
718             <div class="long">\r
719                 True to create the header element explicitly, false to skip creating it. By default, when header is not specified, if a <a ext:cls="Ext.Panel" ext:member="title" href="output/Ext.Panel.html#title">title</a> is set the header will be created automatically, otherwise it will not. If a title is set but header is explicitly set to false, the header will not be rendered.            </div>\r
720                         </div>\r
721         </td>\r
722         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#header" href="output/Ext.Panel.html#header">Panel</a></td>\r
723     </tr>\r
724         <tr class="config-row inherited alt">\r
725         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
726         <td class="sig">\r
727         <a id="Ext.grid.PropertyGrid-headerAsText"></a>\r
728             <b>headerAsText</b> : Boolean            <div class="mdesc">\r
729                             True to display the panel title in the header, false to hide it (defaults to true).                        </div>\r
730         </td>\r
731         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#headerAsText" href="output/Ext.Panel.html#headerAsText">Panel</a></td>\r
732     </tr>\r
733         <tr class="config-row inherited">\r
734         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
735         <td class="sig">\r
736         <a id="Ext.grid.PropertyGrid-height"></a>\r
737             <b>height</b> : Number            <div class="mdesc">\r
738                             The height of this component in pixels (defaults to auto).                        </div>\r
739         </td>\r
740         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#height" href="output/Ext.BoxComponent.html#height">BoxComponent</a></td>\r
741     </tr>\r
742         <tr class="config-row inherited alt">\r
743         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
744         <td class="sig">\r
745         <a id="Ext.grid.PropertyGrid-hidden"></a>\r
746             <b>hidden</b> : Boolean            <div class="mdesc">\r
747                             Render this component hidden (default is false).                        </div>\r
748         </td>\r
749         <td class="msource"><a ext:cls="Ext.Component" ext:member="#hidden" href="output/Ext.Component.html#hidden">Component</a></td>\r
750     </tr>\r
751         <tr class="config-row inherited expandable">\r
752         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
753         <td class="sig">\r
754         <a id="Ext.grid.PropertyGrid-hideBorders"></a>\r
755             <b>hideBorders</b> : Boolean            <div class="mdesc">\r
756                         <div class="short">True to hide the borders of each contained component, false to defer to the component's existing border settings (def...</div>\r
757             <div class="long">\r
758                 True to hide the borders of each contained component, false to defer to the component's existing border settings (defaults to false).            </div>\r
759                         </div>\r
760         </td>\r
761         <td class="msource"><a ext:cls="Ext.Container" ext:member="#hideBorders" href="output/Ext.Container.html#hideBorders">Container</a></td>\r
762     </tr>\r
763         <tr class="config-row inherited alt">\r
764         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
765         <td class="sig">\r
766         <a id="Ext.grid.PropertyGrid-hideCollapseTool"></a>\r
767             <b>hideCollapseTool</b> : Boolean            <div class="mdesc">\r
768                             True to hide the expand/collapse toggle button when <a ext:cls="Ext.Panel" ext:member="collapsible" href="output/Ext.Panel.html#collapsible">collapsible</a> = true, false to display it (defaults to false).                        </div>\r
769         </td>\r
770         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#hideCollapseTool" href="output/Ext.Panel.html#hideCollapseTool">Panel</a></td>\r
771     </tr>\r
772         <tr class="config-row inherited">\r
773         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
774         <td class="sig">\r
775         <a id="Ext.grid.PropertyGrid-hideHeaders"></a>\r
776             <b>hideHeaders</b> : Boolean            <div class="mdesc">\r
777                             True to hide the grid's header (defaults to false).                        </div>\r
778         </td>\r
779         <td class="msource"><a ext:cls="Ext.grid.GridPanel" ext:member="#hideHeaders" href="output/Ext.grid.GridPanel.html#hideHeaders">GridPanel</a></td>\r
780     </tr>\r
781         <tr class="config-row inherited alt expandable">\r
782         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
783         <td class="sig">\r
784         <a id="Ext.grid.PropertyGrid-hideLabel"></a>\r
785             <b>hideLabel</b> : Boolean            <div class="mdesc">\r
786                         <div class="short">True to completely hide the label element (defaults to false). By default, even if you do not specify a fieldLabel th...</div>\r
787             <div class="long">\r
788                 True to completely hide the label element (defaults to false). By default, even if you do not specify a <a ext:cls="fieldLabel" href="output/fieldLabel.html">fieldLabel</a> the space will still be reserved so that the field will line up with other fields that do have labels. Setting this to true will cause the field to not reserve that space. <p><b>This config is only used when this Component is rendered by a Container which has been configured to use the <a ext:cls="Ext.form.FormLayout" href="output/Ext.form.FormLayout.html">FormLayout</a> layout manager.</b></p> Example use:<pre><code>new Ext.FormPanel({
789     height: 100,
790     renderTo: Ext.getBody(),
791     items: [{
792         xtype: <em>'textfield'</em>
793         hideLabel: true
794     }]
795 });</code></pre>            </div>\r
796                         </div>\r
797         </td>\r
798         <td class="msource"><a ext:cls="Ext.Component" ext:member="#hideLabel" href="output/Ext.Component.html#hideLabel">Component</a></td>\r
799     </tr>\r
800         <tr class="config-row inherited expandable">\r
801         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
802         <td class="sig">\r
803         <a id="Ext.grid.PropertyGrid-hideMode"></a>\r
804             <b>hideMode</b> : String            <div class="mdesc">\r
805                         <div class="short">How this component should be hidden. Supported values are "visibility" (css visibility), "offsets" (negative offset p...</div>\r
806             <div class="long">\r
807                 <p>How this component should be hidden. Supported values are "visibility" (css visibility), "offsets" (negative offset position) and "display" (css display) - defaults to "display".</p> <p>For Containers which may be hidden and shown as part of a <a ext:cls="Ext.layout.CardLayout" href="output/Ext.layout.CardLayout.html">card layout</a> Container such as a <a ext:cls="Ext.TabPanel" href="output/Ext.TabPanel.html">TabPanel</a>, it is recommended that hideMode is configured as "offsets". This ensures that hidden Components still have height and width so that layout managers can perform measurements when calculating layouts.</p>            </div>\r
808                         </div>\r
809         </td>\r
810         <td class="msource"><a ext:cls="Ext.Component" ext:member="#hideMode" href="output/Ext.Component.html#hideMode">Component</a></td>\r
811     </tr>\r
812         <tr class="config-row inherited alt expandable">\r
813         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
814         <td class="sig">\r
815         <a id="Ext.grid.PropertyGrid-hideParent"></a>\r
816             <b>hideParent</b> : Boolean            <div class="mdesc">\r
817                         <div class="short">True to hide and show the component's container when hide/show is called on the component, false to hide and show the...</div>\r
818             <div class="long">\r
819                 True to hide and show the component's container when hide/show is called on the component, false to hide and show the component itself (defaults to false). For example, this can be used as a shortcut for a hide button on a window by setting hide:true on the button when adding it to its parent container.            </div>\r
820                         </div>\r
821         </td>\r
822         <td class="msource"><a ext:cls="Ext.Component" ext:member="#hideParent" href="output/Ext.Component.html#hideParent">Component</a></td>\r
823     </tr>\r
824         <tr class="config-row inherited expandable">\r
825         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
826         <td class="sig">\r
827         <a id="Ext.grid.PropertyGrid-html"></a>\r
828             <b>html</b> : String/Object            <div class="mdesc">\r
829                         <div class="short">An HTML fragment, or a DomHelper specification to use as the panel's body content (defaults to ''). The HTML content ...</div>\r
830             <div class="long">\r
831                 An HTML fragment, or a <a ext:cls="Ext.DomHelper" href="output/Ext.DomHelper.html">DomHelper</a> specification to use as the panel's body content (defaults to ''). The HTML content is added by the Panel's afterRender method, and so the document will not contain this HTML at the time the render event is fired. This content is inserted into the body <i>before</i> any configured <a ext:cls="Ext.Panel" ext:member="contentEl" href="output/Ext.Panel.html#contentEl">contentEl</a> is appended.            </div>\r
832                         </div>\r
833         </td>\r
834         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#html" href="output/Ext.Panel.html#html">Panel</a></td>\r
835     </tr>\r
836         <tr class="config-row inherited alt expandable">\r
837         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
838         <td class="sig">\r
839         <a id="Ext.grid.PropertyGrid-iconCls"></a>\r
840             <b>iconCls</b> : String            <div class="mdesc">\r
841                         <div class="short">A CSS class that will provide a background image to be used as the header icon (defaults to ''). An example custom ic...</div>\r
842             <div class="long">\r
843                 A CSS class that will provide a background image to be used as the header icon (defaults to ''). An example custom icon class would be something like: .my-icon { background: url(../images/my-icon.gif) 0 6px no-repeat !important;}            </div>\r
844                         </div>\r
845         </td>\r
846         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#iconCls" href="output/Ext.Panel.html#iconCls">Panel</a></td>\r
847     </tr>\r
848         <tr class="config-row inherited expandable">\r
849         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
850         <td class="sig">\r
851         <a id="Ext.grid.PropertyGrid-id"></a>\r
852             <b>id</b> : String            <div class="mdesc">\r
853                         <div class="short">The unique id of this component (defaults to an auto-assigned id). You should assign an id if you need to be able to ...</div>\r
854             <div class="long">\r
855                 The unique id of this component (defaults to an auto-assigned id). You should assign an id if you need to be able to access the component later and you do not have an object reference available (e.g., using <a ext:cls="Ext.ComponentMgr" ext:member="getCmp" href="output/Ext.ComponentMgr.html#getCmp">Ext.ComponentMgr.getCmp</a>). Note that this id will also be used as the element id for the containing HTML element that is rendered to the page for this component. This allows you to write id-based CSS rules to style the specific instance of this component uniquely, and also to select sub-elements using this component's id as the parent.            </div>\r
856                         </div>\r
857         </td>\r
858         <td class="msource"><a ext:cls="Ext.Component" ext:member="#id" href="output/Ext.Component.html#id">Component</a></td>\r
859     </tr>\r
860         <tr class="config-row inherited alt expandable">\r
861         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
862         <td class="sig">\r
863         <a id="Ext.grid.PropertyGrid-itemCls"></a>\r
864             <b>itemCls</b> : String            <div class="mdesc">\r
865                         <div class="short">An additional CSS class to apply to the wrapper's form item element of this field (defaults to the container's itemCl...</div>\r
866             <div class="long">\r
867                 An additional CSS class to apply to the wrapper's form item element of this field (defaults to the container's itemCls value if set, or ''). Since it is applied to the item wrapper, it allows you to write standard CSS rules that can apply to the field, the label (if specified) or any other element within the markup for the field. <p><b>This config is only used when this Component is rendered by a Container which has been configured to use the <a ext:cls="Ext.form.FormLayout" href="output/Ext.form.FormLayout.html">FormLayout</a> layout manager.</b></p> Example use:<pre><code><i>// Apply a style to the field's label:</i>
868 &lt;style>
869     .required .x-form-item-label {font-weight:bold;color:red;}
870 &lt;/style>
871
872 <b>new</b> Ext.FormPanel({
873     height: 100,
874     renderTo: Ext.getBody(),
875     items: [{
876         xtype: <em>'textfield'</em>,
877         fieldLabel: <em>'Name'</em>,
878         itemCls: <em>'required'</em> <i>//<b>this</b> label will be styled</i>
879     },{
880         xtype: <em>'textfield'</em>,
881         fieldLabel: <em>'Favorite Color'</em>
882     }]
883 });</code></pre>            </div>\r
884                         </div>\r
885         </td>\r
886         <td class="msource"><a ext:cls="Ext.Component" ext:member="#itemCls" href="output/Ext.Component.html#itemCls">Component</a></td>\r
887     </tr>\r
888         <tr class="config-row inherited expandable">\r
889         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
890         <td class="sig">\r
891         <a id="Ext.grid.PropertyGrid-items"></a>\r
892             <b>items</b> : Mixed            <div class="mdesc">\r
893                         <div class="short">A single item, or an array of child Components to be added to this container. Each item can be any type of object bas...</div>\r
894             <div class="long">\r
895                 A single item, or an array of child Components to be added to this container. Each item can be any type of object based on <a ext:cls="Ext.Component" href="output/Ext.Component.html">Ext.Component</a>.<br><br> Component config objects may also be specified in order to avoid the overhead of constructing a real Component object if lazy rendering might mean that the added Component will not be rendered immediately. To take advantage of this "lazy instantiation", set the <a ext:cls="Ext.Component" ext:member="xtype" href="output/Ext.Component.html#xtype">Ext.Component.xtype</a> config property to the registered type of the Component wanted.<br><br> For a list of all available xtypes, see <a ext:cls="Ext.Component" href="output/Ext.Component.html">Ext.Component</a>. If a single item is being passed, it should be passed directly as an object reference (e.g., items: {...}). Multiple items should be passed as an array of objects (e.g., items: [{...}, {...}]).            </div>\r
896                         </div>\r
897         </td>\r
898         <td class="msource"><a ext:cls="Ext.Container" ext:member="#items" href="output/Ext.Container.html#items">Container</a></td>\r
899     </tr>\r
900         <tr class="config-row inherited alt expandable">\r
901         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
902         <td class="sig">\r
903         <a id="Ext.grid.PropertyGrid-keys"></a>\r
904             <b>keys</b> : Object/Array            <div class="mdesc">\r
905                         <div class="short">A KeyMap config object (in the format expected by Ext.KeyMap.addBinding used to assign custom key handling to this pa...</div>\r
906             <div class="long">\r
907                 A KeyMap config object (in the format expected by <a ext:cls="Ext.KeyMap" ext:member="addBinding" href="output/Ext.KeyMap.html#addBinding">Ext.KeyMap.addBinding</a> used to assign custom key handling to this panel (defaults to null).            </div>\r
908                         </div>\r
909         </td>\r
910         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#keys" href="output/Ext.Panel.html#keys">Panel</a></td>\r
911     </tr>\r
912         <tr class="config-row inherited expandable">\r
913         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
914         <td class="sig">\r
915         <a id="Ext.grid.PropertyGrid-labelSeparator"></a>\r
916             <b>labelSeparator</b> : String            <div class="mdesc">\r
917                         <div class="short">The standard separator to display after the text of each form label (defaults to the value of Ext.layout.FormLayout.l...</div>\r
918             <div class="long">\r
919                 The standard separator to display after the text of each form label (defaults to the value of <a ext:cls="Ext.layout.FormLayout" ext:member="labelSeparator" href="output/Ext.layout.FormLayout.html#labelSeparator">Ext.layout.FormLayout.labelSeparator</a>, which is a colon ':' by default). To display no separator for this field's label specify empty string ''. <p><b>This config is only used when this Component is rendered by a Container which has been configured to use the <a ext:cls="Ext.form.FormLayout" href="output/Ext.form.FormLayout.html">FormLayout</a> layout manager.</b></p> Example use:<pre><code>new Ext.FormPanel({
920     height: 100,
921     renderTo: Ext.getBody(),
922     items: [{
923         xtype: <em>'textfield'</em>,
924         fieldLabel: <em>'Name'</em>,
925         labelSeparator: <em>'...'</em>
926     }]
927 });</code></pre>            </div>\r
928                         </div>\r
929         </td>\r
930         <td class="msource"><a ext:cls="Ext.Component" ext:member="#labelSeparator" href="output/Ext.Component.html#labelSeparator">Component</a></td>\r
931     </tr>\r
932         <tr class="config-row inherited alt expandable">\r
933         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
934         <td class="sig">\r
935         <a id="Ext.grid.PropertyGrid-labelStyle"></a>\r
936             <b>labelStyle</b> : String            <div class="mdesc">\r
937                         <div class="short">A CSS style specification to apply directly to this field's label (defaults to the container's labelStyle value if se...</div>\r
938             <div class="long">\r
939                 A CSS style specification to apply directly to this field's label (defaults to the container's labelStyle value if set, or '').<code></code>. <p><b>This config is only used when this Component is rendered by a Container which has been configured to use the <a ext:cls="Ext.form.FormLayout" href="output/Ext.form.FormLayout.html">FormLayout</a> layout manager.</b></p> Example use:<pre><code>new Ext.FormPanel({
940     height: 100,
941     renderTo: Ext.getBody(),
942     items: [{
943         xtype: <em>'textfield'</em>,
944         fieldLabel: <em>'Name'</em>,
945         labelStyle: <em>'font-weight:bold;'</em>
946     }]
947 });</code></pre>            </div>\r
948                         </div>\r
949         </td>\r
950         <td class="msource"><a ext:cls="Ext.Component" ext:member="#labelStyle" href="output/Ext.Component.html#labelStyle">Component</a></td>\r
951     </tr>\r
952         <tr class="config-row inherited expandable">\r
953         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
954         <td class="sig">\r
955         <a id="Ext.grid.PropertyGrid-layout"></a>\r
956             <b>layout</b> : String            <div class="mdesc">\r
957                         <div class="short">The layout type to be used in this container. If not specified, a default Ext.layout.ContainerLayout will be created ...</div>\r
958             <div class="long">\r
959                 The layout type to be used in this container. If not specified, a default <a ext:cls="Ext.layout.ContainerLayout" href="output/Ext.layout.ContainerLayout.html">Ext.layout.ContainerLayout</a> will be created and used. Specific config values for the chosen layout type can be specified using <a ext:cls="Ext.Container" ext:member="layoutConfig" href="output/Ext.Container.html#layoutConfig">layoutConfig</a>. Valid values are:<ul class="mdetail-params"> <li>absolute</li> <li>accordion</li> <li>anchor</li> <li>border</li> <li>card</li> <li>column</li> <li>fit</li> <li>form</li> <li>table</li></ul>            </div>\r
960                         </div>\r
961         </td>\r
962         <td class="msource"><a ext:cls="Ext.Container" ext:member="#layout" href="output/Ext.Container.html#layout">Container</a></td>\r
963     </tr>\r
964         <tr class="config-row inherited alt expandable">\r
965         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
966         <td class="sig">\r
967         <a id="Ext.grid.PropertyGrid-layoutConfig"></a>\r
968             <b>layoutConfig</b> : Object            <div class="mdesc">\r
969                         <div class="short">This is a config object containing properties specific to the chosen layout (to be used in conjunction with the layou...</div>\r
970             <div class="long">\r
971                 This is a config object containing properties specific to the chosen layout (to be used in conjunction with the <a ext:cls="Ext.Container" ext:member="layout" href="output/Ext.Container.html#layout">layout</a> config value). For complete details regarding the valid config options for each layout type, see the layout class corresponding to the type specified:<ul class="mdetail-params"> <li><a ext:cls="Ext.layout.Absolute" href="output/Ext.layout.Absolute.html">Ext.layout.Absolute</a></li> <li><a ext:cls="Ext.layout.Accordion" href="output/Ext.layout.Accordion.html">Ext.layout.Accordion</a></li> <li><a ext:cls="Ext.layout.AnchorLayout" href="output/Ext.layout.AnchorLayout.html">Ext.layout.AnchorLayout</a></li> <li><a ext:cls="Ext.layout.BorderLayout" href="output/Ext.layout.BorderLayout.html">Ext.layout.BorderLayout</a></li> <li><a ext:cls="Ext.layout.CardLayout" href="output/Ext.layout.CardLayout.html">Ext.layout.CardLayout</a></li> <li><a ext:cls="Ext.layout.ColumnLayout" href="output/Ext.layout.ColumnLayout.html">Ext.layout.ColumnLayout</a></li> <li><a ext:cls="Ext.layout.FitLayout" href="output/Ext.layout.FitLayout.html">Ext.layout.FitLayout</a></li> <li><a ext:cls="Ext.layout.FormLayout" href="output/Ext.layout.FormLayout.html">Ext.layout.FormLayout</a></li> <li><a ext:cls="Ext.layout.TableLayout" href="output/Ext.layout.TableLayout.html">Ext.layout.TableLayout</a></li></ul>            </div>\r
972                         </div>\r
973         </td>\r
974         <td class="msource"><a ext:cls="Ext.Container" ext:member="#layoutConfig" href="output/Ext.Container.html#layoutConfig">Container</a></td>\r
975     </tr>\r
976         <tr class="config-row inherited expandable">\r
977         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
978         <td class="sig">\r
979         <a id="Ext.grid.PropertyGrid-listeners"></a>\r
980             <b>listeners</b> : Object            <div class="mdesc">\r
981                         <div class="short">(optional) A config object containing one or more event handlers to be added to this object during initialization. Th...</div>\r
982             <div class="long">\r
983                 (optional) A config object containing one or more event handlers to be added to this object during initialization. This should be a valid listeners config object as specified in the <a ext:cls="Ext.util.Observable" ext:member="addListener" href="output/Ext.util.Observable.html#addListener">addListener</a> example for attaching multiple handlers at once.            </div>\r
984                         </div>\r
985         </td>\r
986         <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#listeners" href="output/Ext.util.Observable.html#listeners">Observable</a></td>\r
987     </tr>\r
988         <tr class="config-row inherited alt">\r
989         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
990         <td class="sig">\r
991         <a id="Ext.grid.PropertyGrid-loadMask"></a>\r
992             <b>loadMask</b> : Object            <div class="mdesc">\r
993                             An <a ext:cls="Ext.LoadMask" href="output/Ext.LoadMask.html">Ext.LoadMask</a> config or true to mask the grid while loading (defaults to false).                        </div>\r
994         </td>\r
995         <td class="msource"><a ext:cls="Ext.grid.GridPanel" ext:member="#loadMask" href="output/Ext.grid.GridPanel.html#loadMask">GridPanel</a></td>\r
996     </tr>\r
997         <tr class="config-row inherited expandable">\r
998         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
999         <td class="sig">\r
1000         <a id="Ext.grid.PropertyGrid-maskDisabled"></a>\r
1001             <b>maskDisabled</b> : Boolean            <div class="mdesc">\r
1002                         <div class="short">True to mask the panel when it is disabled, false to not mask it (defaults to true). Either way, the panel will alway...</div>\r
1003             <div class="long">\r
1004                 True to mask the panel when it is disabled, false to not mask it (defaults to true). Either way, the panel will always tell its contained elements to disable themselves when it is disabled, but masking the panel can provide an additional visual cue that the panel is disabled.            </div>\r
1005                         </div>\r
1006         </td>\r
1007         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#maskDisabled" href="output/Ext.Panel.html#maskDisabled">Panel</a></td>\r
1008     </tr>\r
1009         <tr class="config-row inherited alt">\r
1010         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1011         <td class="sig">\r
1012         <a id="Ext.grid.PropertyGrid-maxHeight"></a>\r
1013             <b>maxHeight</b> : Number            <div class="mdesc">\r
1014                             Sets the maximum height of the grid - ignored if autoHeight is not on.                        </div>\r
1015         </td>\r
1016         <td class="msource"><a ext:cls="Ext.grid.GridPanel" ext:member="#maxHeight" href="output/Ext.grid.GridPanel.html#maxHeight">GridPanel</a></td>\r
1017     </tr>\r
1018         <tr class="config-row inherited">\r
1019         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1020         <td class="sig">\r
1021         <a id="Ext.grid.PropertyGrid-minButtonWidth"></a>\r
1022             <b>minButtonWidth</b> : Number            <div class="mdesc">\r
1023                             Minimum width in pixels of all buttons in this panel (defaults to 75)                        </div>\r
1024         </td>\r
1025         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#minButtonWidth" href="output/Ext.Panel.html#minButtonWidth">Panel</a></td>\r
1026     </tr>\r
1027         <tr class="config-row inherited alt">\r
1028         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1029         <td class="sig">\r
1030         <a id="Ext.grid.PropertyGrid-minColumnWidth"></a>\r
1031             <b>minColumnWidth</b> : Number            <div class="mdesc">\r
1032                             The minimum width a column can be resized to. Defaults to 25.                        </div>\r
1033         </td>\r
1034         <td class="msource"><a ext:cls="Ext.grid.GridPanel" ext:member="#minColumnWidth" href="output/Ext.grid.GridPanel.html#minColumnWidth">GridPanel</a></td>\r
1035     </tr>\r
1036         <tr class="config-row inherited expandable">\r
1037         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1038         <td class="sig">\r
1039         <a id="Ext.grid.PropertyGrid-monitorResize"></a>\r
1040             <b>monitorResize</b> : Boolean            <div class="mdesc">\r
1041                         <div class="short">True to automatically monitor window resize events to handle anything that is sensitive to the current size of the vi...</div>\r
1042             <div class="long">\r
1043                 True to automatically monitor window resize events to handle anything that is sensitive to the current size of the viewport. This value is typically managed by the chosen <a ext:cls="Ext.Container" ext:member="layout" href="output/Ext.Container.html#layout">layout</a> and should not need to be set manually.            </div>\r
1044                         </div>\r
1045         </td>\r
1046         <td class="msource"><a ext:cls="Ext.Container" ext:member="#monitorResize" href="output/Ext.Container.html#monitorResize">Container</a></td>\r
1047     </tr>\r
1048         <tr class="config-row inherited alt expandable">\r
1049         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1050         <td class="sig">\r
1051         <a id="Ext.grid.PropertyGrid-overCls"></a>\r
1052             <b>overCls</b> : String            <div class="mdesc">\r
1053                         <div class="short">An optional extra CSS class that will be added to this component's Element when the mouse moves over the Element, and...</div>\r
1054             <div class="long">\r
1055                 An optional extra CSS class that will be added to this component's Element when the mouse moves over the Element, and removed when the mouse moves out. (defaults to ''). This can be useful for adding customized "active" or "hover" styles to the component or any of its children using standard CSS rules.            </div>\r
1056                         </div>\r
1057         </td>\r
1058         <td class="msource"><a ext:cls="Ext.Component" ext:member="#overCls" href="output/Ext.Component.html#overCls">Component</a></td>\r
1059     </tr>\r
1060         <tr class="config-row inherited">\r
1061         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1062         <td class="sig">\r
1063         <a id="Ext.grid.PropertyGrid-pageX"></a>\r
1064             <b>pageX</b> : Number            <div class="mdesc">\r
1065                             The page level x coordinate for this component if contained within a positioning container.                        </div>\r
1066         </td>\r
1067         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#pageX" href="output/Ext.BoxComponent.html#pageX">BoxComponent</a></td>\r
1068     </tr>\r
1069         <tr class="config-row inherited alt">\r
1070         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1071         <td class="sig">\r
1072         <a id="Ext.grid.PropertyGrid-pageY"></a>\r
1073             <b>pageY</b> : Number            <div class="mdesc">\r
1074                             The page level y coordinate for this component if contained within a positioning container.                        </div>\r
1075         </td>\r
1076         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#pageY" href="output/Ext.BoxComponent.html#pageY">BoxComponent</a></td>\r
1077     </tr>\r
1078         <tr class="config-row inherited expandable">\r
1079         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1080         <td class="sig">\r
1081         <a id="Ext.grid.PropertyGrid-plugins"></a>\r
1082             <b>plugins</b> : Object/Array            <div class="mdesc">\r
1083                         <div class="short">An object or array of objects that will provide custom functionality for this component. The only requirement for a v...</div>\r
1084             <div class="long">\r
1085                 An object or array of objects that will provide custom functionality for this component. The only requirement for a valid plugin is that it contain an init method that accepts a reference of type Ext.Component. When a component is created, if any plugins are available, the component will call the init method on each plugin, passing a reference to itself. Each plugin can then call methods or respond to events on the component as needed to provide its functionality.            </div>\r
1086                         </div>\r
1087         </td>\r
1088         <td class="msource"><a ext:cls="Ext.Component" ext:member="#plugins" href="output/Ext.Component.html#plugins">Component</a></td>\r
1089     </tr>\r
1090         <tr class="config-row alt expandable">\r
1091         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1092         <td class="sig">\r
1093         <a id="Ext.grid.PropertyGrid-propertyNames"></a>\r
1094             <b>propertyNames</b> : Object            <div class="mdesc">\r
1095                         <div class="short">An object containing property name/display name pairs. If specified, the display name will be shown in the name colum...</div>\r
1096             <div class="long">\r
1097                 An object containing property name/display name pairs. If specified, the display name will be shown in the name column instead of the property name.            </div>\r
1098                         </div>\r
1099         </td>\r
1100         <td class="msource">PropertyGrid</td>\r
1101     </tr>\r
1102         <tr class="config-row inherited expandable">\r
1103         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1104         <td class="sig">\r
1105         <a id="Ext.grid.PropertyGrid-renderTo"></a>\r
1106             <b>renderTo</b> : Mixed            <div class="mdesc">\r
1107                         <div class="short">The id of the node, a DOM node or an existing Element that will be the container to render this component into. Using...</div>\r
1108             <div class="long">\r
1109                 The id of the node, a DOM node or an existing Element that will be the container to render this component into. Using this config, a call to render() is not required.            </div>\r
1110                         </div>\r
1111         </td>\r
1112         <td class="msource"><a ext:cls="Ext.Component" ext:member="#renderTo" href="output/Ext.Component.html#renderTo">Component</a></td>\r
1113     </tr>\r
1114         <tr class="config-row inherited alt expandable">\r
1115         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1116         <td class="sig">\r
1117         <a id="Ext.grid.PropertyGrid-selModel"></a>\r
1118             <b>selModel</b> : Object            <div class="mdesc">\r
1119                         <div class="short">Any subclass of Ext.grid.AbstractSelectionModel that will provide the selection model for the grid (defaults to Ext.g...</div>\r
1120             <div class="long">\r
1121                 Any subclass of <a ext:cls="Ext.grid.AbstractSelectionModel" href="output/Ext.grid.AbstractSelectionModel.html">Ext.grid.AbstractSelectionModel</a> that will provide the selection model for the grid (defaults to <a ext:cls="Ext.grid.RowSelectionModel" href="output/Ext.grid.RowSelectionModel.html">Ext.grid.RowSelectionModel</a> if not specified).            </div>\r
1122                         </div>\r
1123         </td>\r
1124         <td class="msource"><a ext:cls="Ext.grid.GridPanel" ext:member="#selModel" href="output/Ext.grid.GridPanel.html#selModel">GridPanel</a></td>\r
1125     </tr>\r
1126         <tr class="config-row inherited expandable">\r
1127         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1128         <td class="sig">\r
1129         <a id="Ext.grid.PropertyGrid-shadow"></a>\r
1130             <b>shadow</b> : Boolean/String            <div class="mdesc">\r
1131                         <div class="short">True (or a valid Ext.Shadow Ext.Shadow.mode value) to display a shadow behind the panel, false to display no shadow (...</div>\r
1132             <div class="long">\r
1133                 True (or a valid Ext.Shadow <a ext:cls="Ext.Shadow" ext:member="mode" href="output/Ext.Shadow.html#mode">Ext.Shadow.mode</a> value) to display a shadow behind the panel, false to display no shadow (defaults to 'sides'). Note that this option only applies when floating = true.            </div>\r
1134                         </div>\r
1135         </td>\r
1136         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#shadow" href="output/Ext.Panel.html#shadow">Panel</a></td>\r
1137     </tr>\r
1138         <tr class="config-row inherited alt expandable">\r
1139         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1140         <td class="sig">\r
1141         <a id="Ext.grid.PropertyGrid-shadowOffset"></a>\r
1142             <b>shadowOffset</b> : Number            <div class="mdesc">\r
1143                         <div class="short">The number of pixels to offset the shadow if displayed (defaults to 4). Note that this option only applies when float...</div>\r
1144             <div class="long">\r
1145                 The number of pixels to offset the shadow if displayed (defaults to 4). Note that this option only applies when floating = true.            </div>\r
1146                         </div>\r
1147         </td>\r
1148         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#shadowOffset" href="output/Ext.Panel.html#shadowOffset">Panel</a></td>\r
1149     </tr>\r
1150         <tr class="config-row inherited expandable">\r
1151         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1152         <td class="sig">\r
1153         <a id="Ext.grid.PropertyGrid-shim"></a>\r
1154             <b>shim</b> : Boolean            <div class="mdesc">\r
1155                         <div class="short">False to disable the iframe shim in browsers which need one (defaults to true). Note that this option only applies wh...</div>\r
1156             <div class="long">\r
1157                 False to disable the iframe shim in browsers which need one (defaults to true). Note that this option only applies when floating = true.            </div>\r
1158                         </div>\r
1159         </td>\r
1160         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#shim" href="output/Ext.Panel.html#shim">Panel</a></td>\r
1161     </tr>\r
1162         <tr class="config-row inherited alt">\r
1163         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1164         <td class="sig">\r
1165         <a id="Ext.grid.PropertyGrid-sm"></a>\r
1166             <b>sm</b> : Object            <div class="mdesc">\r
1167                             Shorthand for <a ext:cls="Ext.grid.GridPanel" ext:member="selModel" href="output/Ext.grid.GridPanel.html#selModel">selModel</a>.                        </div>\r
1168         </td>\r
1169         <td class="msource"><a ext:cls="Ext.grid.GridPanel" ext:member="#sm" href="output/Ext.grid.GridPanel.html#sm">GridPanel</a></td>\r
1170     </tr>\r
1171         <tr class="config-row">\r
1172         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1173         <td class="sig">\r
1174         <a id="Ext.grid.PropertyGrid-source"></a>\r
1175             <b>source</b> : Object            <div class="mdesc">\r
1176                             A data object to use as the data source of the grid (see <a ext:cls="Ext.grid.PropertyGrid" ext:member="setSource" href="output/Ext.grid.PropertyGrid.html#setSource">setSource</a> for details).                        </div>\r
1177         </td>\r
1178         <td class="msource">PropertyGrid</td>\r
1179     </tr>\r
1180         <tr class="config-row inherited alt expandable">\r
1181         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1182         <td class="sig">\r
1183         <a id="Ext.grid.PropertyGrid-stateEvents"></a>\r
1184             <b>stateEvents</b> : Array            <div class="mdesc">\r
1185                         <div class="short">An array of events that, when fired, should trigger this component to save its state (defaults to none). These can be...</div>\r
1186             <div class="long">\r
1187                 An array of events that, when fired, should trigger this component to save its state (defaults to none). These can be any types of events supported by this component, including browser or custom events (e.g., ['click', 'customerchange']). <p>See <a ext:cls="Ext.Component" ext:member="stateful" href="output/Ext.Component.html#stateful">stateful</a> for an explanation of saving and restoring Component state.</p>            </div>\r
1188                         </div>\r
1189         </td>\r
1190         <td class="msource"><a ext:cls="Ext.Component" ext:member="#stateEvents" href="output/Ext.Component.html#stateEvents">Component</a></td>\r
1191     </tr>\r
1192         <tr class="config-row inherited expandable">\r
1193         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1194         <td class="sig">\r
1195         <a id="Ext.grid.PropertyGrid-stateId"></a>\r
1196             <b>stateId</b> : String            <div class="mdesc">\r
1197                         <div class="short">The unique id for this component to use for state management purposes (defaults to the component id if one was set, o...</div>\r
1198             <div class="long">\r
1199                 The unique id for this component to use for state management purposes (defaults to the component id if one was set, otherwise null if the component is using a generated id). <p>See <a ext:cls="Ext.Component" ext:member="stateful" href="output/Ext.Component.html#stateful">stateful</a> for an explanation of saving and restoring Component state.</p>            </div>\r
1200                         </div>\r
1201         </td>\r
1202         <td class="msource"><a ext:cls="Ext.Component" ext:member="#stateId" href="output/Ext.Component.html#stateId">Component</a></td>\r
1203     </tr>\r
1204         <tr class="config-row inherited alt expandable">\r
1205         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1206         <td class="sig">\r
1207         <a id="Ext.grid.PropertyGrid-stateful"></a>\r
1208             <b>stateful</b> : Boolean            <div class="mdesc">\r
1209                         <div class="short">A flag which causes the Component to attempt to restore the state of internal properties from a saved state on startu...</div>\r
1210             <div class="long">\r
1211                 <p>A flag which causes the Component to attempt to restore the state of internal properties from a saved state on startup. The component must have either a <a ext:cls="Ext.Component" ext:member="stateId" href="output/Ext.Component.html#stateId">stateId</a> or <a ext:cls="Ext.Component" ext:member="id" href="output/Ext.Component.html#id">id</a> assigned for state to be managed. Auto-generated ids are not guaranteed to be stable across page loads and cannot be relied upon to save and restore the same state for a component.<p> For state saving to work, the state manager's provider must have been set to an implementation of <a ext:cls="Ext.state.Provider" href="output/Ext.state.Provider.html">Ext.state.Provider</a> which overrides the <a ext:cls="Ext.state.Provider" ext:member="set" href="output/Ext.state.Provider.html#set">set</a> and <a ext:cls="Ext.state.Provider" ext:member="get" href="output/Ext.state.Provider.html#get">get</a> methods to save and recall name/value pairs. A built-in implementation, <a ext:cls="Ext.state.CookieProvider" href="output/Ext.state.CookieProvider.html">Ext.state.CookieProvider</a> is available.</p> <p>To set the state provider for the current page:</p> <pre><code>Ext.state.Manager.setProvider(<b>new</b> Ext.state.CookieProvider());</code></pre> <p>Components attempt to save state when one of the events listed in the <a ext:cls="Ext.Component" ext:member="stateEvents" href="output/Ext.Component.html#stateEvents">stateEvents</a> configuration fires.</p> <p>You can perform extra processing on state save and restore by attaching handlers to the <a ext:cls="Ext.Component" ext:member="beforestaterestore" href="output/Ext.Component.html#beforestaterestore">beforestaterestore</a>, <a ext:cls="Ext.Component" ext:member="staterestore" href="output/Ext.Component.html#staterestore">staterestore</a>, <a ext:cls="Ext.Component" ext:member="beforestatesave" href="output/Ext.Component.html#beforestatesave">beforestatesave</a> and <a ext:cls="Ext.Component" ext:member="statesave" href="output/Ext.Component.html#statesave">statesave</a> events</p>            </div>\r
1212                         </div>\r
1213         </td>\r
1214         <td class="msource"><a ext:cls="Ext.Component" ext:member="#stateful" href="output/Ext.Component.html#stateful">Component</a></td>\r
1215     </tr>\r
1216         <tr class="config-row inherited">\r
1217         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1218         <td class="sig">\r
1219         <a id="Ext.grid.PropertyGrid-store"></a>\r
1220             <b>store</b> : Ext.data.Store            <div class="mdesc">\r
1221                             The <a ext:cls="Ext.data.Store" href="output/Ext.data.Store.html">Ext.data.Store</a> the grid should use as its data source (required).                        </div>\r
1222         </td>\r
1223         <td class="msource"><a ext:cls="Ext.grid.GridPanel" ext:member="#store" href="output/Ext.grid.GridPanel.html#store">GridPanel</a></td>\r
1224     </tr>\r
1225         <tr class="config-row inherited alt expandable">\r
1226         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1227         <td class="sig">\r
1228         <a id="Ext.grid.PropertyGrid-stripeRows"></a>\r
1229             <b>stripeRows</b> : Boolean            <div class="mdesc">\r
1230                         <div class="short">True to stripe the rows. Default is false. This causes the CSS class x-grid3-row-alt to be added to alternate rows of...</div>\r
1231             <div class="long">\r
1232                 True to stripe the rows. Default is false. <p>This causes the CSS class <tt><b>x-grid3-row-alt</b></tt> to be added to alternate rows of the grid. A default CSS rule is provided which sets a background colour, but you can override this with a rule which either overrides the <b>background-color</b> style using the "!important" modifier, or which uses a CSS selector of higher specificity.            </div>\r
1233                         </div>\r
1234         </td>\r
1235         <td class="msource"><a ext:cls="Ext.grid.GridPanel" ext:member="#stripeRows" href="output/Ext.grid.GridPanel.html#stripeRows">GridPanel</a></td>\r
1236     </tr>\r
1237         <tr class="config-row inherited expandable">\r
1238         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1239         <td class="sig">\r
1240         <a id="Ext.grid.PropertyGrid-style"></a>\r
1241             <b>style</b> : String            <div class="mdesc">\r
1242                         <div class="short">A custom style specification to be applied to this component's Element. Should be a valid argument to Ext.Element.app...</div>\r
1243             <div class="long">\r
1244                 A custom style specification to be applied to this component's Element. Should be a valid argument to <a ext:cls="Ext.Element" ext:member="applyStyles" href="output/Ext.Element.html#applyStyles">Ext.Element.applyStyles</a>.            </div>\r
1245                         </div>\r
1246         </td>\r
1247         <td class="msource"><a ext:cls="Ext.Component" ext:member="#style" href="output/Ext.Component.html#style">Component</a></td>\r
1248     </tr>\r
1249         <tr class="config-row inherited alt expandable">\r
1250         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1251         <td class="sig">\r
1252         <a id="Ext.grid.PropertyGrid-tabTip"></a>\r
1253             <b>tabTip</b> : String            <div class="mdesc">\r
1254                         <div class="short">Adds a tooltip when mousing over the tab of a Ext.Panel which is an item of a Ext.TabPanel. Ext.QuickTips.init() must...</div>\r
1255             <div class="long">\r
1256                 Adds a tooltip when mousing over the tab of a Ext.Panel which is an item of a Ext.TabPanel. Ext.QuickTips.init() must be called in order for the tips to render.            </div>\r
1257                         </div>\r
1258         </td>\r
1259         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#tabTip" href="output/Ext.Panel.html#tabTip">Panel</a></td>\r
1260     </tr>\r
1261         <tr class="config-row inherited expandable">\r
1262         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1263         <td class="sig">\r
1264         <a id="Ext.grid.PropertyGrid-tbar"></a>\r
1265             <b>tbar</b> : Object/Array            <div class="mdesc">\r
1266                         <div class="short">The top toolbar of the panel. This can be either an Ext.Toolbar object or an array of buttons/button configs to be ad...</div>\r
1267             <div class="long">\r
1268                 The top toolbar of the panel. This can be either an <a ext:cls="Ext.Toolbar" href="output/Ext.Toolbar.html">Ext.Toolbar</a> object or an array of buttons/button configs to be added to the toolbar. Note that this is not available as a property after render. To access the top toolbar after render, use <a ext:cls="Ext.Panel" ext:member="getTopToolbar" href="output/Ext.Panel.html#getTopToolbar">getTopToolbar</a>.            </div>\r
1269                         </div>\r
1270         </td>\r
1271         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#tbar" href="output/Ext.Panel.html#tbar">Panel</a></td>\r
1272     </tr>\r
1273         <tr class="config-row inherited alt expandable">\r
1274         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1275         <td class="sig">\r
1276         <a id="Ext.grid.PropertyGrid-title"></a>\r
1277             <b>title</b> : String            <div class="mdesc">\r
1278                         <div class="short">The title text to display in the panel header (defaults to ''). When a title is specified the header element will aut...</div>\r
1279             <div class="long">\r
1280                 The title text to display in the panel header (defaults to ''). When a title is specified the header element will automatically be created and displayed unless <a ext:cls="Ext.Panel" ext:member="header" href="output/Ext.Panel.html#header">header</a> is explicitly set to false. If you don't want to specify a title at config time, but you may want one later, you must either specify a non-empty title (a blank space ' ' will do) or header:true so that the container element will get created.            </div>\r
1281                         </div>\r
1282         </td>\r
1283         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#title" href="output/Ext.Panel.html#title">Panel</a></td>\r
1284     </tr>\r
1285         <tr class="config-row inherited expandable">\r
1286         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1287         <td class="sig">\r
1288         <a id="Ext.grid.PropertyGrid-titleCollapse"></a>\r
1289             <b>titleCollapse</b> : Boolean            <div class="mdesc">\r
1290                         <div class="short">True to allow expanding and collapsing the panel (when collapsible = true) by clicking anywhere in the header bar, fa...</div>\r
1291             <div class="long">\r
1292                 True to allow expanding and collapsing the panel (when <a ext:cls="Ext.Panel" ext:member="collapsible" href="output/Ext.Panel.html#collapsible">collapsible</a> = true) by clicking anywhere in the header bar, false to allow it only by clicking to tool button (defaults to false).            </div>\r
1293                         </div>\r
1294         </td>\r
1295         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#titleCollapse" href="output/Ext.Panel.html#titleCollapse">Panel</a></td>\r
1296     </tr>\r
1297         <tr class="config-row inherited alt expandable">\r
1298         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1299         <td class="sig">\r
1300         <a id="Ext.grid.PropertyGrid-tools"></a>\r
1301             <b>tools</b> : Array            <div class="mdesc">\r
1302                         <div class="short">An array of tool button configs to be added to the header tool area. When rendered, each tool is stored as an Element...</div>\r
1303             <div class="long">\r
1304                 An array of tool button configs to be added to the header tool area. When rendered, each tool is stored as an <a ext:cls="Ext.Element" href="output/Ext.Element.html">Element</a> referenced by a public property called <tt><b></b>tools.<i>&lt;tool-type&gt;</i></tt> <p>Each tool config may contain the following properties: <div class="mdetail-params"><ul> <li><b>id</b> : String<div class="sub-desc"><b>Required.</b> The type of tool to create. Values may be<ul> <li><tt>toggle</tt> (Created by default when <a ext:cls="Ext.Panel" ext:member="collapsible" href="output/Ext.Panel.html#collapsible">collapsible</a> is <tt>true</tt>)</li> <li><tt>close</tt></li> <li><tt>minimize</tt></li> <li><tt>maximize</tt></li> <li><tt>restore</tt></li> <li><tt>gear</tt></li> <li><tt>pin</tt></li> <li><tt>unpin</tt></li> <li><tt>right</tt></li> <li><tt>left</tt></li> <li><tt>up</tt></li> <li><tt>down</tt></li> <li><tt>refresh</tt></li> <li><tt>minus</tt></li> <li><tt>plus</tt></li> <li><tt>help</tt></li> <li><tt>search</tt></li> <li><tt>save</tt></li> <li><tt>print</tt></li> </ul></div></li> <li><b>handler</b> : Function<div class="sub-desc"><b>Required.</b> The function to call when clicked. Arguments passed are:<ul> <li><b>event</b> : Ext.EventObject<div class="sub-desc">The click event.</div></li> <li><b>toolEl</b> : Ext.Element<div class="sub-desc">The tool Element.</div></li> <li><b>Panel</b> : Ext.Panel<div class="sub-desc">The host Panel</div></li> </ul></div></li> <li><b>scope</b> : Object<div class="sub-desc">The scope in which to call the handler.</div></li> <li><b>qtip</b> : String/Object<div class="sub-desc">A tip string, or a config argument to <a ext:cls="Ext.QuickTip" ext:member="register" href="output/Ext.QuickTip.html#register">Ext.QuickTip.register</a></div></li> <li><b>hidden</b> : Boolean<div class="sub-desc">True to initially render hidden.</div></li> <li><b>on</b> : Object<div class="sub-desc">A listener config object specifiying event listeners in the format of an argument to <a ext:cls="Ext.Panel" ext:member="addListener" href="output/Ext.Panel.html#addListener">addListener</a></div></li> </ul></div> Example usage: <pre><code>tools:[{
1305     id:<em>'refresh'</em>,
1306     qtip: <em>'Refresh form Data'</em>,
1307     <i>// hidden:true,</i>
1308     handler: <b>function</b>(event, toolEl, panel){
1309         <i>// refresh logic</i>
1310     }
1311 }]</code></pre> Note that apart from the toggle tool which is provided when a panel is collapsible, these tools only provide the visual button. Any required functionality must be provided by adding handlers that implement the necessary behavior.            </div>\r
1312                         </div>\r
1313         </td>\r
1314         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#tools" href="output/Ext.Panel.html#tools">Panel</a></td>\r
1315     </tr>\r
1316         <tr class="config-row inherited">\r
1317         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1318         <td class="sig">\r
1319         <a id="Ext.grid.PropertyGrid-trackMouseOver"></a>\r
1320             <b>trackMouseOver</b> : Boolean            <div class="mdesc">\r
1321                             True to highlight rows when the mouse is over. Default is true.                        </div>\r
1322         </td>\r
1323         <td class="msource"><a ext:cls="Ext.grid.GridPanel" ext:member="#trackMouseOver" href="output/Ext.grid.GridPanel.html#trackMouseOver">GridPanel</a></td>\r
1324     </tr>\r
1325         <tr class="config-row inherited alt">\r
1326         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1327         <td class="sig">\r
1328         <a id="Ext.grid.PropertyGrid-view"></a>\r
1329             <b>view</b> : Object            <div class="mdesc">\r
1330                             The <a ext:cls="Ext.grid.GridView" href="output/Ext.grid.GridView.html">Ext.grid.GridView</a> used by the grid. This can be set before a call to render().                        </div>\r
1331         </td>\r
1332         <td class="msource"><a ext:cls="Ext.grid.GridPanel" ext:member="#view" href="output/Ext.grid.GridPanel.html#view">GridPanel</a></td>\r
1333     </tr>\r
1334         <tr class="config-row inherited expandable">\r
1335         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1336         <td class="sig">\r
1337         <a id="Ext.grid.PropertyGrid-viewConfig"></a>\r
1338             <b>viewConfig</b> : Object            <div class="mdesc">\r
1339                         <div class="short">A config object that will be used to create the grid's UI view. Any of the config options available for Ext.grid.Grid...</div>\r
1340             <div class="long">\r
1341                 A config object that will be used to create the grid's UI view. Any of the config options available for <a ext:cls="Ext.grid.GridView" href="output/Ext.grid.GridView.html">Ext.grid.GridView</a> can be specified here. This option is ignored if <a ext:cls="Ext.grid.GridPanel" ext:member="view" href="output/Ext.grid.GridPanel.html#view">view</a> is xpecified.            </div>\r
1342                         </div>\r
1343         </td>\r
1344         <td class="msource"><a ext:cls="Ext.grid.GridPanel" ext:member="#viewConfig" href="output/Ext.grid.GridPanel.html#viewConfig">GridPanel</a></td>\r
1345     </tr>\r
1346         <tr class="config-row inherited alt">\r
1347         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1348         <td class="sig">\r
1349         <a id="Ext.grid.PropertyGrid-width"></a>\r
1350             <b>width</b> : Number            <div class="mdesc">\r
1351                             The width of this component in pixels (defaults to auto).                        </div>\r
1352         </td>\r
1353         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#width" href="output/Ext.BoxComponent.html#width">BoxComponent</a></td>\r
1354     </tr>\r
1355         <tr class="config-row inherited">\r
1356         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1357         <td class="sig">\r
1358         <a id="Ext.grid.PropertyGrid-x"></a>\r
1359             <b>x</b> : Number            <div class="mdesc">\r
1360                             The local x (left) coordinate for this component if contained within a positioning container.                        </div>\r
1361         </td>\r
1362         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#x" href="output/Ext.BoxComponent.html#x">BoxComponent</a></td>\r
1363     </tr>\r
1364         <tr class="config-row inherited alt expandable">\r
1365         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1366         <td class="sig">\r
1367         <a id="Ext.grid.PropertyGrid-xtype"></a>\r
1368             <b>xtype</b> : String            <div class="mdesc">\r
1369                         <div class="short">The registered xtype to create. This config option is not used when passing a config object into a constructor. This ...</div>\r
1370             <div class="long">\r
1371                 The registered xtype to create. This config option is not used when passing a config object into a constructor. This config option is used only when lazy instantiation is being used, and a child item of a Container is being specified not as a fully instantiated Component, but as a <i>Component config object</i>. The xtype will be looked up at render time up to determine what type of child Component to create.<br><br> The predefined xtypes are listed <a ext:cls="Ext.Component" href="output/Ext.Component.html">here</a>. <br><br> If you subclass Components to create your own Components, you may register them using <a ext:cls="Ext.ComponentMgr" ext:member="registerType" href="output/Ext.ComponentMgr.html#registerType">Ext.ComponentMgr.registerType</a> in order to be able to take advantage of lazy instantiation and rendering.            </div>\r
1372                         </div>\r
1373         </td>\r
1374         <td class="msource"><a ext:cls="Ext.Component" ext:member="#xtype" href="output/Ext.Component.html#xtype">Component</a></td>\r
1375     </tr>\r
1376         <tr class="config-row inherited">\r
1377         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1378         <td class="sig">\r
1379         <a id="Ext.grid.PropertyGrid-y"></a>\r
1380             <b>y</b> : Number            <div class="mdesc">\r
1381                             The local y (top) coordinate for this component if contained within a positioning container.                        </div>\r
1382         </td>\r
1383         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#y" href="output/Ext.BoxComponent.html#y">BoxComponent</a></td>\r
1384     </tr>\r
1385             </table>
1386                 <a id="Ext.grid.PropertyGrid-props"></a>
1387         <h2>Public Properties</h2>
1388                 <table cellspacing="0" class="member-table">
1389             <tr>
1390                 <th class="sig-header" colspan="2">Property</th>
1391                 <th class="msource-header">Defined By</th>
1392             </tr>
1393                 <tr class="property-row inherited">\r
1394         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1395         <td class="sig">\r
1396         <a id="Ext.grid.PropertyGrid-activeEditor"></a>\r
1397             <b>activeEditor</b> : Ext.Editor            <div class="mdesc">\r
1398                             The currently active editor or null                        </div>\r
1399         </td>\r
1400         <td class="msource"><a ext:cls="Ext.grid.EditorGridPanel" ext:member="#activeEditor" href="output/Ext.grid.EditorGridPanel.html#activeEditor">EditorGridPanel</a></td>\r
1401     </tr>\r
1402         <tr class="property-row inherited alt expandable">\r
1403         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1404         <td class="sig">\r
1405         <a id="Ext.grid.PropertyGrid-body"></a>\r
1406             <b>body</b> : Ext.Element            <div class="mdesc">\r
1407                         <div class="short">
1408 The Panel's body Element which may be used to contain HTML content.
1409 The content may be specified in the html config,...</div>\r
1410             <div class="long">\r
1411                 
1412 The Panel's body <a ext:cls="Ext.Element" href="output/Ext.Element.html">Element</a> which may be used to contain HTML content.
1413 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
1414 <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.
1415 <p>If this is used to load visible HTML elements in either way, then
1416 the Panel may not be used as a Layout for hosting nested Panels.</p>
1417 <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>
1418 then the body Element must not be loaded or changed - it is under the control
1419 of the Panel's Layout.            </div>\r
1420                         </div>\r
1421         </td>\r
1422         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#body" href="output/Ext.Panel.html#body">Panel</a></td>\r
1423     </tr>\r
1424         <tr class="property-row inherited">\r
1425         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1426         <td class="sig">\r
1427         <a id="Ext.grid.PropertyGrid-buttons"></a>\r
1428             <b>buttons</b> : Array            <div class="mdesc">\r
1429                             This Panel's Array of buttons as created from the <tt>buttons</tt>
1430 config property. Read only.                        </div>\r
1431         </td>\r
1432         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#buttons" href="output/Ext.Panel.html#buttons">Panel</a></td>\r
1433     </tr>\r
1434         <tr class="property-row inherited alt expandable">\r
1435         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1436         <td class="sig">\r
1437         <a id="Ext.grid.PropertyGrid-dd"></a>\r
1438             <b>dd</b> : Ext.dd.DragSource.            <div class="mdesc">\r
1439                         <div class="short">If this Panel is configured draggable, this property will contain
1440 an instance of Ext.dd.DragSource which handles drag...</div>\r
1441             <div class="long">\r
1442                 <p>If this Panel is configured <a ext:cls="Ext.Panel" ext:member="draggable" href="output/Ext.Panel.html#draggable">draggable</a>, this property will contain
1443 an instance of <a ext:cls="Ext.dd.DragSource" href="output/Ext.dd.DragSource.html">Ext.dd.DragSource</a> which handles dragging the Panel.</p>
1444 The developer must provide implementations of the abstract methods of <a ext:cls="Ext.dd.DragSource" href="output/Ext.dd.DragSource.html">Ext.dd.DragSource</a>
1445 in order to supply behaviour for each stage of the drag/drop process. See <a ext:cls="Ext.Panel" ext:member="draggable" href="output/Ext.Panel.html#draggable">draggable</a>.            </div>\r
1446                         </div>\r
1447         </td>\r
1448         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#dd" href="output/Ext.Panel.html#dd">Panel</a></td>\r
1449     </tr>\r
1450         <tr class="property-row inherited expandable">\r
1451         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1452         <td class="sig">\r
1453         <a id="Ext.grid.PropertyGrid-ddText"></a>\r
1454             <b>ddText</b> : String            <div class="mdesc">\r
1455                         <div class="short">
1456 Configures the text in the drag proxy (defaults to "{0} selected row(s)").
1457 {0} is replaced with the number of select...</div>\r
1458             <div class="long">\r
1459                 
1460 Configures the text in the drag proxy (defaults to "{0} selected row(s)").
1461 {0} is replaced with the number of selected rows.            </div>\r
1462                         </div>\r
1463         </td>\r
1464         <td class="msource"><a ext:cls="Ext.grid.GridPanel" ext:member="#ddText" href="output/Ext.grid.GridPanel.html#ddText">GridPanel</a></td>\r
1465     </tr>\r
1466         <tr class="property-row inherited alt">\r
1467         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1468         <td class="sig">\r
1469         <a id="Ext.grid.PropertyGrid-disabled"></a>\r
1470             <b>disabled</b> : Boolean            <div class="mdesc">\r
1471                             True if this component is disabled. Read-only.                        </div>\r
1472         </td>\r
1473         <td class="msource"><a ext:cls="Ext.Component" ext:member="#disabled" href="output/Ext.Component.html#disabled">Component</a></td>\r
1474     </tr>\r
1475         <tr class="property-row inherited">\r
1476         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1477         <td class="sig">\r
1478         <a id="Ext.grid.PropertyGrid-footer"></a>\r
1479             <b>footer</b> : Ext.Element            <div class="mdesc">\r
1480                             
1481 The Panel's footer <a ext:cls="Ext.Element" href="output/Ext.Element.html">Element</a>. Read-only.
1482 <p>This Element is used to house the Panel's <a ext:cls="Ext.Panel" ext:member="buttons" href="output/Ext.Panel.html#buttons">buttons</a>.</p>                        </div>\r
1483         </td>\r
1484         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#footer" href="output/Ext.Panel.html#footer">Panel</a></td>\r
1485     </tr>\r
1486         <tr class="property-row inherited alt">\r
1487         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1488         <td class="sig">\r
1489         <a id="Ext.grid.PropertyGrid-header"></a>\r
1490             <b>header</b> : Ext.Element            <div class="mdesc">\r
1491                             The Panel's header <a ext:cls="Ext.Element" href="output/Ext.Element.html">Element</a>. Read-only.
1492 <p>This Element is used to house the <a ext:cls="Ext.Panel" ext:member="title" href="output/Ext.Panel.html#title">title</a> and <a ext:cls="Ext.Panel" ext:member="tools" href="output/Ext.Panel.html#tools">tools</a></p>                        </div>\r
1493         </td>\r
1494         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#header" href="output/Ext.Panel.html#header">Panel</a></td>\r
1495     </tr>\r
1496         <tr class="property-row inherited">\r
1497         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1498         <td class="sig">\r
1499         <a id="Ext.grid.PropertyGrid-hidden"></a>\r
1500             <b>hidden</b> : Boolean            <div class="mdesc">\r
1501                             
1502 True if this component is hidden. Read-only.                        </div>\r
1503         </td>\r
1504         <td class="msource"><a ext:cls="Ext.Component" ext:member="#hidden" href="output/Ext.Component.html#hidden">Component</a></td>\r
1505     </tr>\r
1506         <tr class="property-row inherited alt">\r
1507         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1508         <td class="sig">\r
1509         <a id="Ext.grid.PropertyGrid-initialConfig"></a>\r
1510             <b>initialConfig</b> : Object            <div class="mdesc">\r
1511                             This Component's initial configuration specification. Read-only.                        </div>\r
1512         </td>\r
1513         <td class="msource"><a ext:cls="Ext.Component" ext:member="#initialConfig" href="output/Ext.Component.html#initialConfig">Component</a></td>\r
1514     </tr>\r
1515         <tr class="property-row inherited">\r
1516         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1517         <td class="sig">\r
1518         <a id="Ext.grid.PropertyGrid-items"></a>\r
1519             <b>items</b> : MixedCollection            <div class="mdesc">\r
1520                             The collection of components in this container as a <a ext:cls="Ext.util.MixedCollection" href="output/Ext.util.MixedCollection.html">Ext.util.MixedCollection</a>                        </div>\r
1521         </td>\r
1522         <td class="msource"><a ext:cls="Ext.Container" ext:member="#items" href="output/Ext.Container.html#items">Container</a></td>\r
1523     </tr>\r
1524         <tr class="property-row inherited alt expandable">\r
1525         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1526         <td class="sig">\r
1527         <a id="Ext.grid.PropertyGrid-ownerCt"></a>\r
1528             <b>ownerCt</b> : Ext.Container            <div class="mdesc">\r
1529                         <div class="short">The component's owner Ext.Container (defaults to undefined, and is set automatically when
1530 the component is added to a...</div>\r
1531             <div class="long">\r
1532                 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
1533 the component is added to a container).  Read-only.            </div>\r
1534                         </div>\r
1535         </td>\r
1536         <td class="msource"><a ext:cls="Ext.Component" ext:member="#ownerCt" href="output/Ext.Component.html#ownerCt">Component</a></td>\r
1537     </tr>\r
1538         <tr class="property-row inherited">\r
1539         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1540         <td class="sig">\r
1541         <a id="Ext.grid.PropertyGrid-rendered"></a>\r
1542             <b>rendered</b> : Boolean            <div class="mdesc">\r
1543                             True if this component has been rendered. Read-only.                        </div>\r
1544         </td>\r
1545         <td class="msource"><a ext:cls="Ext.Component" ext:member="#rendered" href="output/Ext.Component.html#rendered">Component</a></td>\r
1546     </tr>\r
1547             </table>
1548                 <a id="Ext.grid.PropertyGrid-methods"></a>
1549         <h2>Public Methods</h2>
1550                 <table cellspacing="0" class="member-table">
1551             <tr>
1552                 <th class="sig-header" colspan="2">Method</th>
1553                 <th class="msource-header">Defined By</th>
1554             </tr>
1555                 <tr class="method-row expandable">\r
1556         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1557         <td class="sig">\r
1558         <a id="Ext.grid.PropertyGrid-PropertyGrid"></a>\r
1559             <b>PropertyGrid</b>(&nbsp;<code>Object config</code>&nbsp;)            <div class="mdesc">\r
1560                         <div class="short"></div>\r
1561             <div class="long">\r
1562                     <div class="mdetail-params">\r
1563         <strong>Parameters:</strong>\r
1564         <ul><li><code>config</code> : Object<div class="sub-desc">The grid config object</div></li>        </ul>\r
1565         <strong>Returns:</strong>\r
1566         <ul>\r
1567             <li><code></code></li>\r
1568         </ul>\r
1569     </div>\r
1570                 </div>\r
1571                         </div>\r
1572         </td>\r
1573         <td class="msource">PropertyGrid</td>\r
1574     </tr>\r
1575         <tr class="method-row inherited alt expandable">\r
1576         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1577         <td class="sig">\r
1578         <a id="Ext.grid.PropertyGrid-add"></a>\r
1579             <b>add</b>(&nbsp;<code>Ext.Component/Object component</code>&nbsp;) : Ext.Component            <div class="mdesc">\r
1580                         <div class="short">Adds a Component to this Container. Fires the beforeadd event before
1581 adding, then fires the add event after the compo...</div>\r
1582             <div class="long">\r
1583                 <p>Adds a <a ext:cls="Ext.Component" href="output/Ext.Component.html">Component</a> to this Container. Fires the <a ext:cls="Ext.Container" ext:member="beforeadd" href="output/Ext.Container.html#beforeadd">beforeadd</a> event before
1584 adding, then fires the <a ext:cls="Ext.Container" ext:member="add" href="output/Ext.Container.html#add">add</a> event after the component has been added.</p>
1585 <p>You will never call the render method of a child Component when using a Container.
1586 Child Components are rendered by this Container's <a ext:cls="Ext.Container" ext:member="layout" href="output/Ext.Container.html#layout">layout</a> manager when
1587 this Container is first rendered.</p>
1588 <p>Certain layout managers allow dynamic addition of child components. Those that do
1589 include <a ext:cls="Ext.layout.CardLayout" href="output/Ext.layout.CardLayout.html">Ext.layout.CardLayout</a>, <a ext:cls="Ext.layout.AnchorLayout" href="output/Ext.layout.AnchorLayout.html">Ext.layout.AnchorLayout</a>,
1590 <a ext:cls="Ext.layout.FormLayout" href="output/Ext.layout.FormLayout.html">Ext.layout.FormLayout</a>, <a ext:cls="Ext.layout.TableLayout" href="output/Ext.layout.TableLayout.html">Ext.layout.TableLayout</a>.</p>
1591 <p>If the Container is already rendered when add is called, you may need to call
1592 <a ext:cls="Ext.Container" ext:member="doLayout" href="output/Ext.Container.html#doLayout">doLayout</a> to refresh the view which causes any unrendered child Components
1593 to be rendered. This is required so that you can add multiple child components if needed
1594 while only refreshing the layout once.</p>
1595 <p>When creating complex UIs, it is important to remember that sizing and positioning
1596 of child items is the responsibility of the Container's <a ext:cls="Ext.Container" ext:member="layout" href="output/Ext.Container.html#layout">layout</a> manager. If
1597 you expect child items to be sized in response to user interactions, you must
1598 specify a layout manager which creates and manages the type of layout you have in mind.</p>
1599 <p><b>Omitting the <a ext:cls="Ext.Container" ext:member="layout" href="output/Ext.Container.html#layout">layout</a> config means that a basic layout manager is
1600 used which does nothnig but render child components sequentially into the Container.
1601 No sizing or positioning will be performed in this situation.</b></p>    <div class="mdetail-params">\r
1602         <strong>Parameters:</strong>\r
1603         <ul><li><code>component</code> : Ext.Component/Object<div class="sub-desc">The Component to add.<br><br>
1604 Ext uses lazy rendering, and will only render the added Component should
1605 it become necessary, that is: when the Container is layed out either on first render
1606 or in response to a <a ext:cls="Ext.Container" ext:member="doLayout" href="output/Ext.Container.html#doLayout">doLayout</a> call.<br><br>
1607 A Component config object may be passed instead of an instantiated Component object.
1608 The type of Component created from a config object is determined by the <a ext:cls="Ext.Component" ext:member="xtype" href="output/Ext.Component.html#xtype">xtype</a>
1609 config property. If no xtype is configured, the Container's <a ext:cls="Ext.Container" ext:member="defaultType" href="output/Ext.Container.html#defaultType">defaultType</a>
1610 is used.<br><br>
1611 For a list of all available xtypes, see <a ext:cls="Ext.Component" href="output/Ext.Component.html">Ext.Component</a>.</div></li>        </ul>\r
1612         <strong>Returns:</strong>\r
1613         <ul>\r
1614             <li><code>Ext.Component</code><div class="sub-desc">component The Component (or config object) that was added with the Container's default config values applied. <p>example:</p><pre><code> var myNewGrid = new Ext.grid.GridPanel({ store: myStore, colModel: myColModel }); myTabPanel.add(myNewGrid); myTabPanel.setActiveTab(myNewGrid); </code></pre></div></li>\r
1615         </ul>\r
1616     </div>\r
1617                 </div>\r
1618                         </div>\r
1619         </td>\r
1620         <td class="msource"><a ext:cls="Ext.Container" ext:member="#add" href="output/Ext.Container.html#add">Container</a></td>\r
1621     </tr>\r
1622         <tr class="method-row inherited expandable">\r
1623         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1624         <td class="sig">\r
1625         <a id="Ext.grid.PropertyGrid-addButton"></a>\r
1626             <b>addButton</b>(&nbsp;<code>String/Object config</code>, <code>Function handler</code>, <code>Object scope</code>&nbsp;) : Ext.Button            <div class="mdesc">\r
1627                         <div class="short">Adds a button to this panel.  Note that this method must be called prior to rendering.  The preferred
1628 approach is to ...</div>\r
1629             <div class="long">\r
1630                 Adds a button to this panel.  Note that this method must be called prior to rendering.  The preferred
1631 approach is to add buttons via the <a ext:cls="Ext.Panel" ext:member="buttons" href="output/Ext.Panel.html#buttons">buttons</a> config.    <div class="mdetail-params">\r
1632         <strong>Parameters:</strong>\r
1633         <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
1634 button config, an object will be treated as a button config object.</div></li><li><code>handler</code> : Function<div class="sub-desc">The function to be called on button <a ext:cls="Ext.Button" ext:member="click" href="output/Ext.Button.html#click">Ext.Button.click</a></div></li><li><code>scope</code> : Object<div class="sub-desc">The scope to use for the button handler function</div></li>        </ul>\r
1635         <strong>Returns:</strong>\r
1636         <ul>\r
1637             <li><code>Ext.Button</code><div class="sub-desc">The button that was added</div></li>\r
1638         </ul>\r
1639     </div>\r
1640                 </div>\r
1641                         </div>\r
1642         </td>\r
1643         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#addButton" href="output/Ext.Panel.html#addButton">Panel</a></td>\r
1644     </tr>\r
1645         <tr class="method-row inherited alt expandable">\r
1646         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1647         <td class="sig">\r
1648         <a id="Ext.grid.PropertyGrid-addClass"></a>\r
1649             <b>addClass</b>(&nbsp;<code>string cls</code>&nbsp;) : void            <div class="mdesc">\r
1650                         <div class="short">Adds a CSS class to the component's underlying element.</div>\r
1651             <div class="long">\r
1652                 Adds a CSS class to the component's underlying element.    <div class="mdetail-params">\r
1653         <strong>Parameters:</strong>\r
1654         <ul><li><code>cls</code> : string<div class="sub-desc">The CSS class name to add</div></li>        </ul>\r
1655         <strong>Returns:</strong>\r
1656         <ul>\r
1657             <li><code>void</code></li>\r
1658         </ul>\r
1659     </div>\r
1660                 </div>\r
1661                         </div>\r
1662         </td>\r
1663         <td class="msource"><a ext:cls="Ext.Component" ext:member="#addClass" href="output/Ext.Component.html#addClass">Component</a></td>\r
1664     </tr>\r
1665         <tr class="method-row inherited expandable">\r
1666         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1667         <td class="sig">\r
1668         <a id="Ext.grid.PropertyGrid-addEvents"></a>\r
1669             <b>addEvents</b>(&nbsp;<code>Object object</code>&nbsp;) : void            <div class="mdesc">\r
1670                         <div class="short">Used to define events on this Observable</div>\r
1671             <div class="long">\r
1672                 Used to define events on this Observable    <div class="mdetail-params">\r
1673         <strong>Parameters:</strong>\r
1674         <ul><li><code>object</code> : Object<div class="sub-desc">The object with the events defined</div></li>        </ul>\r
1675         <strong>Returns:</strong>\r
1676         <ul>\r
1677             <li><code>void</code></li>\r
1678         </ul>\r
1679     </div>\r
1680                 </div>\r
1681                         </div>\r
1682         </td>\r
1683         <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#addEvents" href="output/Ext.util.Observable.html#addEvents">Observable</a></td>\r
1684     </tr>\r
1685         <tr class="method-row inherited alt expandable">\r
1686         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1687         <td class="sig">\r
1688         <a id="Ext.grid.PropertyGrid-addListener"></a>\r
1689             <b>addListener</b>(&nbsp;<code>String eventName</code>, <code>Function handler</code>, <span class="optional" title="Optional">[<code>Object scope</code>]</span>, <span class="optional" title="Optional">[<code>Object options</code>]</span>&nbsp;) : void            <div class="mdesc">\r
1690                         <div class="short">Appends an event handler to this component</div>\r
1691             <div class="long">\r
1692                 Appends an event handler to this component    <div class="mdetail-params">\r
1693         <strong>Parameters:</strong>\r
1694         <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
1695 function. The handler function's "this" context.</div></li><li><code>options</code> : Object<div class="sub-desc">(optional) An object containing handler configuration
1696 properties. This may contain any of the following properties:<ul>
1697 <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>
1698 <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>
1699 <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>
1700 <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
1701 by the specified number of milliseconds. If the event fires again within that time, the original
1702 handler is <em>not</em> invoked, but the new handler is scheduled in its place.</p></li>
1703 </ul><br>
1704 <p>
1705 <b>Combining Options</b><br>
1706 Using the options argument, it is possible to combine different types of listeners:<br>
1707 <br>
1708 A normalized, delayed, one-time listener that auto stops the event and passes a custom argument (forumId)
1709 <pre><code>el.on(<em>'click'</em>, <b>this</b>.onClick, <b>this</b>, {
1710     single: true,
1711     delay: 100,
1712     forumId: 4
1713 });</code></pre>
1714 <p>
1715 <b>Attaching multiple handlers in 1 call</b><br>
1716 The method also allows for a single argument to be passed which is a config object containing properties
1717 which specify multiple handlers.
1718 <p>
1719 <pre><code>foo.on({
1720     <em>'click'</em> : {
1721         fn: <b>this</b>.onClick,
1722         scope: <b>this</b>,
1723         delay: 100
1724     },
1725     <em>'mouseover'</em> : {
1726         fn: <b>this</b>.onMouseOver,
1727         scope: <b>this</b>
1728     },
1729     <em>'mouseout'</em> : {
1730         fn: <b>this</b>.onMouseOut,
1731         scope: <b>this</b>
1732     }
1733 });</code></pre>
1734 <p>
1735 Or a shorthand syntax:<br>
1736 <pre><code>foo.on({
1737     <em>'click'</em> : <b>this</b>.onClick,
1738     <em>'mouseover'</em> : <b>this</b>.onMouseOver,
1739     <em>'mouseout'</em> : <b>this</b>.onMouseOut,
1740      scope: <b>this</b>
1741 });</code></pre></div></li>        </ul>\r
1742         <strong>Returns:</strong>\r
1743         <ul>\r
1744             <li><code>void</code></li>\r
1745         </ul>\r
1746     </div>\r
1747                 </div>\r
1748                         </div>\r
1749         </td>\r
1750         <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#addListener" href="output/Ext.util.Observable.html#addListener">Observable</a></td>\r
1751     </tr>\r
1752         <tr class="method-row inherited expandable">\r
1753         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1754         <td class="sig">\r
1755         <a id="Ext.grid.PropertyGrid-applyToMarkup"></a>\r
1756             <b>applyToMarkup</b>(&nbsp;<code>String/HTMLElement el</code>&nbsp;) : void            <div class="mdesc">\r
1757                         <div class="short">Apply this component to existing markup that is valid. With this function, no call to render() is required.</div>\r
1758             <div class="long">\r
1759                 Apply this component to existing markup that is valid. With this function, no call to render() is required.    <div class="mdetail-params">\r
1760         <strong>Parameters:</strong>\r
1761         <ul><li><code>el</code> : String/HTMLElement<div class="sub-desc"></div></li>        </ul>\r
1762         <strong>Returns:</strong>\r
1763         <ul>\r
1764             <li><code>void</code></li>\r
1765         </ul>\r
1766     </div>\r
1767                 </div>\r
1768                         </div>\r
1769         </td>\r
1770         <td class="msource"><a ext:cls="Ext.Component" ext:member="#applyToMarkup" href="output/Ext.Component.html#applyToMarkup">Component</a></td>\r
1771     </tr>\r
1772         <tr class="method-row inherited alt expandable">\r
1773         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1774         <td class="sig">\r
1775         <a id="Ext.grid.PropertyGrid-bubble"></a>\r
1776             <b>bubble</b>(&nbsp;<code>Function fn</code>, <span class="optional" title="Optional">[<code>Object scope</code>]</span>, <span class="optional" title="Optional">[<code>Array args</code>]</span>&nbsp;) : void            <div class="mdesc">\r
1777                         <div class="short">Bubbles up the component/container heirarchy, calling the specified function with each component. The scope (this) of...</div>\r
1778             <div class="long">\r
1779                 Bubbles up the component/container heirarchy, calling the specified function with each component. The scope (<i>this</i>) of
1780 function call will be the scope provided or the current component. The arguments to the function
1781 will be the args provided or the current component. If the function returns false at any point,
1782 the bubble is stopped.    <div class="mdetail-params">\r
1783         <strong>Parameters:</strong>\r
1784         <ul><li><code>fn</code> : Function<div class="sub-desc">The function to call</div></li><li><code>scope</code> : Object<div class="sub-desc">(optional) The scope of the function (defaults to current node)</div></li><li><code>args</code> : Array<div class="sub-desc">(optional) The args to call the function with (default to passing the current component)</div></li>        </ul>\r
1785         <strong>Returns:</strong>\r
1786         <ul>\r
1787             <li><code>void</code></li>\r
1788         </ul>\r
1789     </div>\r
1790                 </div>\r
1791                         </div>\r
1792         </td>\r
1793         <td class="msource"><a ext:cls="Ext.Container" ext:member="#bubble" href="output/Ext.Container.html#bubble">Container</a></td>\r
1794     </tr>\r
1795         <tr class="method-row inherited expandable">\r
1796         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1797         <td class="sig">\r
1798         <a id="Ext.grid.PropertyGrid-cascade"></a>\r
1799             <b>cascade</b>(&nbsp;<code>Function fn</code>, <span class="optional" title="Optional">[<code>Object scope</code>]</span>, <span class="optional" title="Optional">[<code>Array args</code>]</span>&nbsp;) : void            <div class="mdesc">\r
1800                         <div class="short">Cascades down the component/container heirarchy from this component (called first), calling the specified function wi...</div>\r
1801             <div class="long">\r
1802                 Cascades down the component/container heirarchy from this component (called first), calling the specified function with
1803 each component. The scope (<i>this</i>) of
1804 function call will be the scope provided or the current component. The arguments to the function
1805 will be the args provided or the current component. If the function returns false at any point,
1806 the cascade is stopped on that branch.    <div class="mdetail-params">\r
1807         <strong>Parameters:</strong>\r
1808         <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 component)</div></li><li><code>args</code> : Array<div class="sub-desc">(optional) The args to call the function with (defaults to passing the current component)</div></li>        </ul>\r
1809         <strong>Returns:</strong>\r
1810         <ul>\r
1811             <li><code>void</code></li>\r
1812         </ul>\r
1813     </div>\r
1814                 </div>\r
1815                         </div>\r
1816         </td>\r
1817         <td class="msource"><a ext:cls="Ext.Container" ext:member="#cascade" href="output/Ext.Container.html#cascade">Container</a></td>\r
1818     </tr>\r
1819         <tr class="method-row inherited alt expandable">\r
1820         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1821         <td class="sig">\r
1822         <a id="Ext.grid.PropertyGrid-cloneConfig"></a>\r
1823             <b>cloneConfig</b>(&nbsp;<code>Object overrides</code>&nbsp;) : Ext.Component            <div class="mdesc">\r
1824                         <div class="short">Clone the current component using the original config values passed into this instance by default.</div>\r
1825             <div class="long">\r
1826                 Clone the current component using the original config values passed into this instance by default.    <div class="mdetail-params">\r
1827         <strong>Parameters:</strong>\r
1828         <ul><li><code>overrides</code> : Object<div class="sub-desc">A new config containing any properties to override in the cloned version.
1829 An id property can be passed on this object, otherwise one will be generated to avoid duplicates.</div></li>        </ul>\r
1830         <strong>Returns:</strong>\r
1831         <ul>\r
1832             <li><code>Ext.Component</code><div class="sub-desc">clone The cloned copy of this component</div></li>\r
1833         </ul>\r
1834     </div>\r
1835                 </div>\r
1836                         </div>\r
1837         </td>\r
1838         <td class="msource"><a ext:cls="Ext.Component" ext:member="#cloneConfig" href="output/Ext.Component.html#cloneConfig">Component</a></td>\r
1839     </tr>\r
1840         <tr class="method-row inherited expandable">\r
1841         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1842         <td class="sig">\r
1843         <a id="Ext.grid.PropertyGrid-collapse"></a>\r
1844             <b>collapse</b>(&nbsp;<code>Boolean animate</code>&nbsp;) : Ext.Panel            <div class="mdesc">\r
1845                         <div class="short">Collapses the panel body so that it becomes hidden.  Fires the beforecollapse event which will
1846 cancel the collapse ac...</div>\r
1847             <div class="long">\r
1848                 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
1849 cancel the collapse action if it returns false.    <div class="mdetail-params">\r
1850         <strong>Parameters:</strong>\r
1851         <ul><li><code>animate</code> : Boolean<div class="sub-desc">True to animate the transition, else false (defaults to the value of the
1852 <a ext:cls="Ext.Panel" ext:member="animCollapse" href="output/Ext.Panel.html#animCollapse">animCollapse</a> panel config)</div></li>        </ul>\r
1853         <strong>Returns:</strong>\r
1854         <ul>\r
1855             <li><code>Ext.Panel</code><div class="sub-desc">this</div></li>\r
1856         </ul>\r
1857     </div>\r
1858                 </div>\r
1859                         </div>\r
1860         </td>\r
1861         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#collapse" href="output/Ext.Panel.html#collapse">Panel</a></td>\r
1862     </tr>\r
1863         <tr class="method-row inherited alt expandable">\r
1864         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1865         <td class="sig">\r
1866         <a id="Ext.grid.PropertyGrid-destroy"></a>\r
1867             <b>destroy</b>() : void            <div class="mdesc">\r
1868                         <div class="short">Destroys this component by purging any event listeners, removing the component's element from the DOM,
1869 removing the c...</div>\r
1870             <div class="long">\r
1871                 Destroys this component by purging any event listeners, removing the component's element from the DOM,
1872 removing the component from its <a ext:cls="Ext.Container" href="output/Ext.Container.html">Ext.Container</a> (if applicable) and unregistering it from
1873 <a ext:cls="Ext.ComponentMgr" href="output/Ext.ComponentMgr.html">Ext.ComponentMgr</a>.  Destruction is generally handled automatically by the framework and this method
1874 should usually not need to be called directly.    <div class="mdetail-params">\r
1875         <strong>Parameters:</strong>\r
1876         <ul><li>None.</li>        </ul>\r
1877         <strong>Returns:</strong>\r
1878         <ul>\r
1879             <li><code>void</code></li>\r
1880         </ul>\r
1881     </div>\r
1882                 </div>\r
1883                         </div>\r
1884         </td>\r
1885         <td class="msource"><a ext:cls="Ext.Component" ext:member="#destroy" href="output/Ext.Component.html#destroy">Component</a></td>\r
1886     </tr>\r
1887         <tr class="method-row inherited expandable">\r
1888         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1889         <td class="sig">\r
1890         <a id="Ext.grid.PropertyGrid-disable"></a>\r
1891             <b>disable</b>() : Ext.Component            <div class="mdesc">\r
1892                         <div class="short">Disable this component.</div>\r
1893             <div class="long">\r
1894                 Disable this component.    <div class="mdetail-params">\r
1895         <strong>Parameters:</strong>\r
1896         <ul><li>None.</li>        </ul>\r
1897         <strong>Returns:</strong>\r
1898         <ul>\r
1899             <li><code>Ext.Component</code><div class="sub-desc">this</div></li>\r
1900         </ul>\r
1901     </div>\r
1902                 </div>\r
1903                         </div>\r
1904         </td>\r
1905         <td class="msource"><a ext:cls="Ext.Component" ext:member="#disable" href="output/Ext.Component.html#disable">Component</a></td>\r
1906     </tr>\r
1907         <tr class="method-row inherited alt expandable">\r
1908         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1909         <td class="sig">\r
1910         <a id="Ext.grid.PropertyGrid-doLayout"></a>\r
1911             <b>doLayout</b>(&nbsp;<span class="optional" title="Optional">[<code>Boolean shallow</code>]</span>&nbsp;) : void            <div class="mdesc">\r
1912                         <div class="short">Force this container's layout to be recalculated. A call to this function is required after adding a new component
1913 to...</div>\r
1914             <div class="long">\r
1915                 Force this container's layout to be recalculated. A call to this function is required after adding a new component
1916 to an already rendered container, or possibly after changing sizing/position properties of child components.    <div class="mdetail-params">\r
1917         <strong>Parameters:</strong>\r
1918         <ul><li><code>shallow</code> : Boolean<div class="sub-desc">(optional) True to only calc the layout of this component, and let child components auto
1919 calc layouts as required (defaults to false, which calls doLayout recursively for each subcontainer)</div></li>        </ul>\r
1920         <strong>Returns:</strong>\r
1921         <ul>\r
1922             <li><code>void</code></li>\r
1923         </ul>\r
1924     </div>\r
1925                 </div>\r
1926                         </div>\r
1927         </td>\r
1928         <td class="msource"><a ext:cls="Ext.Container" ext:member="#doLayout" href="output/Ext.Container.html#doLayout">Container</a></td>\r
1929     </tr>\r
1930         <tr class="method-row inherited expandable">\r
1931         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1932         <td class="sig">\r
1933         <a id="Ext.grid.PropertyGrid-enable"></a>\r
1934             <b>enable</b>() : Ext.Component            <div class="mdesc">\r
1935                         <div class="short">Enable this component.</div>\r
1936             <div class="long">\r
1937                 Enable this component.    <div class="mdetail-params">\r
1938         <strong>Parameters:</strong>\r
1939         <ul><li>None.</li>        </ul>\r
1940         <strong>Returns:</strong>\r
1941         <ul>\r
1942             <li><code>Ext.Component</code><div class="sub-desc">this</div></li>\r
1943         </ul>\r
1944     </div>\r
1945                 </div>\r
1946                         </div>\r
1947         </td>\r
1948         <td class="msource"><a ext:cls="Ext.Component" ext:member="#enable" href="output/Ext.Component.html#enable">Component</a></td>\r
1949     </tr>\r
1950         <tr class="method-row inherited alt expandable">\r
1951         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1952         <td class="sig">\r
1953         <a id="Ext.grid.PropertyGrid-expand"></a>\r
1954             <b>expand</b>(&nbsp;<code>Boolean animate</code>&nbsp;) : Ext.Panel            <div class="mdesc">\r
1955                         <div class="short">Expands the panel body so that it becomes visible.  Fires the beforeexpand event which will
1956 cancel the expand action ...</div>\r
1957             <div class="long">\r
1958                 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
1959 cancel the expand action if it returns false.    <div class="mdetail-params">\r
1960         <strong>Parameters:</strong>\r
1961         <ul><li><code>animate</code> : Boolean<div class="sub-desc">True to animate the transition, else false (defaults to the value of the
1962 <a ext:cls="Ext.Panel" ext:member="animCollapse" href="output/Ext.Panel.html#animCollapse">animCollapse</a> panel config)</div></li>        </ul>\r
1963         <strong>Returns:</strong>\r
1964         <ul>\r
1965             <li><code>Ext.Panel</code><div class="sub-desc">this</div></li>\r
1966         </ul>\r
1967     </div>\r
1968                 </div>\r
1969                         </div>\r
1970         </td>\r
1971         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#expand" href="output/Ext.Panel.html#expand">Panel</a></td>\r
1972     </tr>\r
1973         <tr class="method-row inherited expandable">\r
1974         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1975         <td class="sig">\r
1976         <a id="Ext.grid.PropertyGrid-find"></a>\r
1977             <b>find</b>(&nbsp;<code>String prop</code>, <code>String value</code>&nbsp;) : Array            <div class="mdesc">\r
1978                         <div class="short">Find a component under this container at any level by property</div>\r
1979             <div class="long">\r
1980                 Find a component under this container at any level by property    <div class="mdetail-params">\r
1981         <strong>Parameters:</strong>\r
1982         <ul><li><code>prop</code> : String<div class="sub-desc"></div></li><li><code>value</code> : String<div class="sub-desc"></div></li>        </ul>\r
1983         <strong>Returns:</strong>\r
1984         <ul>\r
1985             <li><code>Array</code><div class="sub-desc">Array of Ext.Components</div></li>\r
1986         </ul>\r
1987     </div>\r
1988                 </div>\r
1989                         </div>\r
1990         </td>\r
1991         <td class="msource"><a ext:cls="Ext.Container" ext:member="#find" href="output/Ext.Container.html#find">Container</a></td>\r
1992     </tr>\r
1993         <tr class="method-row inherited alt expandable">\r
1994         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
1995         <td class="sig">\r
1996         <a id="Ext.grid.PropertyGrid-findBy"></a>\r
1997             <b>findBy</b>(&nbsp;<code>Function fcn</code>, <span class="optional" title="Optional">[<code>Object scope</code>]</span>&nbsp;) : Array            <div class="mdesc">\r
1998                         <div class="short">Find a component under this container at any level by a custom function. If the passed function returns
1999 true, the com...</div>\r
2000             <div class="long">\r
2001                 Find a component under this container at any level by a custom function. If the passed function returns
2002 true, the component will be included in the results. The passed function is called with the arguments (component, this container).    <div class="mdetail-params">\r
2003         <strong>Parameters:</strong>\r
2004         <ul><li><code>fcn</code> : Function<div class="sub-desc"></div></li><li><code>scope</code> : Object<div class="sub-desc">(optional)</div></li>        </ul>\r
2005         <strong>Returns:</strong>\r
2006         <ul>\r
2007             <li><code>Array</code><div class="sub-desc">Array of Ext.Components</div></li>\r
2008         </ul>\r
2009     </div>\r
2010                 </div>\r
2011                         </div>\r
2012         </td>\r
2013         <td class="msource"><a ext:cls="Ext.Container" ext:member="#findBy" href="output/Ext.Container.html#findBy">Container</a></td>\r
2014     </tr>\r
2015         <tr class="method-row inherited expandable">\r
2016         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2017         <td class="sig">\r
2018         <a id="Ext.grid.PropertyGrid-findById"></a>\r
2019             <b>findById</b>(&nbsp;<code>String id</code>&nbsp;) : Ext.Component            <div class="mdesc">\r
2020                         <div class="short">Find a component under this container at any level by id</div>\r
2021             <div class="long">\r
2022                 Find a component under this container at any level by id    <div class="mdetail-params">\r
2023         <strong>Parameters:</strong>\r
2024         <ul><li><code>id</code> : String<div class="sub-desc"></div></li>        </ul>\r
2025         <strong>Returns:</strong>\r
2026         <ul>\r
2027             <li><code>Ext.Component</code></li>\r
2028         </ul>\r
2029     </div>\r
2030                 </div>\r
2031                         </div>\r
2032         </td>\r
2033         <td class="msource"><a ext:cls="Ext.Container" ext:member="#findById" href="output/Ext.Container.html#findById">Container</a></td>\r
2034     </tr>\r
2035         <tr class="method-row inherited alt expandable">\r
2036         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2037         <td class="sig">\r
2038         <a id="Ext.grid.PropertyGrid-findByType"></a>\r
2039             <b>findByType</b>(&nbsp;<code>String/Class xtype</code>, <span class="optional" title="Optional">[<code>Boolean shallow</code>]</span>&nbsp;) : Array            <div class="mdesc">\r
2040                         <div class="short">Find a component under this container at any level by xtype or class</div>\r
2041             <div class="long">\r
2042                 Find a component under this container at any level by xtype or class    <div class="mdetail-params">\r
2043         <strong>Parameters:</strong>\r
2044         <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><li><code>shallow</code> : Boolean<div class="sub-desc">(optional) False to check whether this Component is descended from the xtype (this is
2045 the default), or true to check whether this Component is directly of the specified xtype.</div></li>        </ul>\r
2046         <strong>Returns:</strong>\r
2047         <ul>\r
2048             <li><code>Array</code><div class="sub-desc">Array of Ext.Components</div></li>\r
2049         </ul>\r
2050     </div>\r
2051                 </div>\r
2052                         </div>\r
2053         </td>\r
2054         <td class="msource"><a ext:cls="Ext.Container" ext:member="#findByType" href="output/Ext.Container.html#findByType">Container</a></td>\r
2055     </tr>\r
2056         <tr class="method-row inherited expandable">\r
2057         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2058         <td class="sig">\r
2059         <a id="Ext.grid.PropertyGrid-findParentBy"></a>\r
2060             <b>findParentBy</b>(&nbsp;<code>Function fcn</code>, <span class="optional" title="Optional">[<code>Object scope</code>]</span>&nbsp;) : Ext.Container            <div class="mdesc">\r
2061                         <div class="short">Find a container above this component at any level by a custom function. If the passed function returns
2062 true, the con...</div>\r
2063             <div class="long">\r
2064                 Find a container above this component at any level by a custom function. If the passed function returns
2065 true, the container will be returned. The passed function is called with the arguments (container, this component).    <div class="mdetail-params">\r
2066         <strong>Parameters:</strong>\r
2067         <ul><li><code>fcn</code> : Function<div class="sub-desc"></div></li><li><code>scope</code> : Object<div class="sub-desc">(optional)</div></li>        </ul>\r
2068         <strong>Returns:</strong>\r
2069         <ul>\r
2070             <li><code>Ext.Container</code><div class="sub-desc">The first Container for which the custom function returns true</div></li>\r
2071         </ul>\r
2072     </div>\r
2073                 </div>\r
2074                         </div>\r
2075         </td>\r
2076         <td class="msource"><a ext:cls="Ext.Component" ext:member="#findParentBy" href="output/Ext.Component.html#findParentBy">Component</a></td>\r
2077     </tr>\r
2078         <tr class="method-row inherited alt expandable">\r
2079         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2080         <td class="sig">\r
2081         <a id="Ext.grid.PropertyGrid-findParentByType"></a>\r
2082             <b>findParentByType</b>(&nbsp;<code>String/Class xtype</code>&nbsp;) : Ext.Container            <div class="mdesc">\r
2083                         <div class="short">Find a container above this component at any level by xtype or class</div>\r
2084             <div class="long">\r
2085                 Find a container above this component at any level by xtype or class    <div class="mdetail-params">\r
2086         <strong>Parameters:</strong>\r
2087         <ul><li><code>xtype</code> : String/Class<div class="sub-desc">The xtype string for a component, or the class of the component directly</div></li>        </ul>\r
2088         <strong>Returns:</strong>\r
2089         <ul>\r
2090             <li><code>Ext.Container</code><div class="sub-desc">The first Container which matches the given xtype or class</div></li>\r
2091         </ul>\r
2092     </div>\r
2093                 </div>\r
2094                         </div>\r
2095         </td>\r
2096         <td class="msource"><a ext:cls="Ext.Component" ext:member="#findParentByType" href="output/Ext.Component.html#findParentByType">Component</a></td>\r
2097     </tr>\r
2098         <tr class="method-row inherited expandable">\r
2099         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2100         <td class="sig">\r
2101         <a id="Ext.grid.PropertyGrid-fireEvent"></a>\r
2102             <b>fireEvent</b>(&nbsp;<code>String eventName</code>, <code>Object... args</code>&nbsp;) : Boolean            <div class="mdesc">\r
2103                         <div class="short">Fires the specified event with the passed parameters (minus the event name).</div>\r
2104             <div class="long">\r
2105                 Fires the specified event with the passed parameters (minus the event name).    <div class="mdetail-params">\r
2106         <strong>Parameters:</strong>\r
2107         <ul><li><code>eventName</code> : String<div class="sub-desc"></div></li><li><code>args</code> : Object...<div class="sub-desc">Variable number of parameters are passed to handlers</div></li>        </ul>\r
2108         <strong>Returns:</strong>\r
2109         <ul>\r
2110             <li><code>Boolean</code><div class="sub-desc">returns false if any of the handlers return false otherwise it returns true</div></li>\r
2111         </ul>\r
2112     </div>\r
2113                 </div>\r
2114                         </div>\r
2115         </td>\r
2116         <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#fireEvent" href="output/Ext.util.Observable.html#fireEvent">Observable</a></td>\r
2117     </tr>\r
2118         <tr class="method-row inherited alt expandable">\r
2119         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2120         <td class="sig">\r
2121         <a id="Ext.grid.PropertyGrid-focus"></a>\r
2122             <b>focus</b>(&nbsp;<span class="optional" title="Optional">[<code>Boolean selectText</code>]</span>, <span class="optional" title="Optional">[<code>Boolean/Number delay</code>]</span>&nbsp;) : Ext.Component            <div class="mdesc">\r
2123                         <div class="short">Try to focus this component.</div>\r
2124             <div class="long">\r
2125                 Try to focus this component.    <div class="mdetail-params">\r
2126         <strong>Parameters:</strong>\r
2127         <ul><li><code>selectText</code> : Boolean<div class="sub-desc">(optional) If applicable, true to also select the text in this component</div></li><li><code>delay</code> : Boolean/Number<div class="sub-desc">(optional) Delay the focus this number of milliseconds (true for 10 milliseconds)</div></li>        </ul>\r
2128         <strong>Returns:</strong>\r
2129         <ul>\r
2130             <li><code>Ext.Component</code><div class="sub-desc">this</div></li>\r
2131         </ul>\r
2132     </div>\r
2133                 </div>\r
2134                         </div>\r
2135         </td>\r
2136         <td class="msource"><a ext:cls="Ext.Component" ext:member="#focus" href="output/Ext.Component.html#focus">Component</a></td>\r
2137     </tr>\r
2138         <tr class="method-row inherited expandable">\r
2139         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2140         <td class="sig">\r
2141         <a id="Ext.grid.PropertyGrid-getBottomToolbar"></a>\r
2142             <b>getBottomToolbar</b>() : Ext.Toolbar            <div class="mdesc">\r
2143                         <div class="short">Returns the toolbar from the bottom (bbar) section of the panel.</div>\r
2144             <div class="long">\r
2145                 Returns the toolbar from the bottom (bbar) section of the panel.    <div class="mdetail-params">\r
2146         <strong>Parameters:</strong>\r
2147         <ul><li>None.</li>        </ul>\r
2148         <strong>Returns:</strong>\r
2149         <ul>\r
2150             <li><code>Ext.Toolbar</code><div class="sub-desc">The toolbar</div></li>\r
2151         </ul>\r
2152     </div>\r
2153                 </div>\r
2154                         </div>\r
2155         </td>\r
2156         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#getBottomToolbar" href="output/Ext.Panel.html#getBottomToolbar">Panel</a></td>\r
2157     </tr>\r
2158         <tr class="method-row inherited alt expandable">\r
2159         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2160         <td class="sig">\r
2161         <a id="Ext.grid.PropertyGrid-getBox"></a>\r
2162             <b>getBox</b>(&nbsp;<span class="optional" title="Optional">[<code>Boolean local</code>]</span>&nbsp;) : Object            <div class="mdesc">\r
2163                         <div class="short">Gets the current box measurements of the component's underlying element.</div>\r
2164             <div class="long">\r
2165                 Gets the current box measurements of the component's underlying element.    <div class="mdetail-params">\r
2166         <strong>Parameters:</strong>\r
2167         <ul><li><code>local</code> : Boolean<div class="sub-desc">(optional) If true the element's left and top are returned instead of page XY (defaults to false)</div></li>        </ul>\r
2168         <strong>Returns:</strong>\r
2169         <ul>\r
2170             <li><code>Object</code><div class="sub-desc">box An object in the format {x, y, width, height}</div></li>\r
2171         </ul>\r
2172     </div>\r
2173                 </div>\r
2174                         </div>\r
2175         </td>\r
2176         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#getBox" href="output/Ext.BoxComponent.html#getBox">BoxComponent</a></td>\r
2177     </tr>\r
2178         <tr class="method-row inherited expandable">\r
2179         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2180         <td class="sig">\r
2181         <a id="Ext.grid.PropertyGrid-getColumnModel"></a>\r
2182             <b>getColumnModel</b>() : Ext.grid.ColumnModel            <div class="mdesc">\r
2183                         <div class="short">Returns the grid's ColumnModel.</div>\r
2184             <div class="long">\r
2185                 Returns the grid's ColumnModel.    <div class="mdetail-params">\r
2186         <strong>Parameters:</strong>\r
2187         <ul><li>None.</li>        </ul>\r
2188         <strong>Returns:</strong>\r
2189         <ul>\r
2190             <li><code>Ext.grid.ColumnModel</code><div class="sub-desc">The column model</div></li>\r
2191         </ul>\r
2192     </div>\r
2193                 </div>\r
2194                         </div>\r
2195         </td>\r
2196         <td class="msource"><a ext:cls="Ext.grid.GridPanel" ext:member="#getColumnModel" href="output/Ext.grid.GridPanel.html#getColumnModel">GridPanel</a></td>\r
2197     </tr>\r
2198         <tr class="method-row inherited alt expandable">\r
2199         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2200         <td class="sig">\r
2201         <a id="Ext.grid.PropertyGrid-getComponent"></a>\r
2202             <b>getComponent</b>(&nbsp;<code>String/Number id</code>&nbsp;) : Ext.Component            <div class="mdesc">\r
2203                         <div class="short">Gets a direct child Component by id, or by index.</div>\r
2204             <div class="long">\r
2205                 Gets a direct child Component by id, or by index.    <div class="mdetail-params">\r
2206         <strong>Parameters:</strong>\r
2207         <ul><li><code>id</code> : String/Number<div class="sub-desc">or index of child Component to return.</div></li>        </ul>\r
2208         <strong>Returns:</strong>\r
2209         <ul>\r
2210             <li><code>Ext.Component</code></li>\r
2211         </ul>\r
2212     </div>\r
2213                 </div>\r
2214                         </div>\r
2215         </td>\r
2216         <td class="msource"><a ext:cls="Ext.Container" ext:member="#getComponent" href="output/Ext.Container.html#getComponent">Container</a></td>\r
2217     </tr>\r
2218         <tr class="method-row inherited expandable">\r
2219         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2220         <td class="sig">\r
2221         <a id="Ext.grid.PropertyGrid-getDragDropText"></a>\r
2222             <b>getDragDropText</b>() : String            <div class="mdesc">\r
2223                         <div class="short">Called to get grid's drag proxy text, by default returns this.ddText.</div>\r
2224             <div class="long">\r
2225                 Called to get grid's drag proxy text, by default returns this.ddText.    <div class="mdetail-params">\r
2226         <strong>Parameters:</strong>\r
2227         <ul><li>None.</li>        </ul>\r
2228         <strong>Returns:</strong>\r
2229         <ul>\r
2230             <li><code>String</code><div class="sub-desc">The text</div></li>\r
2231         </ul>\r
2232     </div>\r
2233                 </div>\r
2234                         </div>\r
2235         </td>\r
2236         <td class="msource"><a ext:cls="Ext.grid.GridPanel" ext:member="#getDragDropText" href="output/Ext.grid.GridPanel.html#getDragDropText">GridPanel</a></td>\r
2237     </tr>\r
2238         <tr class="method-row inherited alt expandable">\r
2239         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2240         <td class="sig">\r
2241         <a id="Ext.grid.PropertyGrid-getEl"></a>\r
2242             <b>getEl</b>() : Ext.Element            <div class="mdesc">\r
2243                         <div class="short">Returns the underlying <a ext:cls="Ext.Element" href="output/Ext.Element.html">Ext.Element</a>.</div>\r
2244             <div class="long">\r
2245                 Returns the underlying <a ext:cls="Ext.Element" href="output/Ext.Element.html">Ext.Element</a>.    <div class="mdetail-params">\r
2246         <strong>Parameters:</strong>\r
2247         <ul><li>None.</li>        </ul>\r
2248         <strong>Returns:</strong>\r
2249         <ul>\r
2250             <li><code>Ext.Element</code><div class="sub-desc">The element</div></li>\r
2251         </ul>\r
2252     </div>\r
2253                 </div>\r
2254                         </div>\r
2255         </td>\r
2256         <td class="msource"><a ext:cls="Ext.Component" ext:member="#getEl" href="output/Ext.Component.html#getEl">Component</a></td>\r
2257     </tr>\r
2258         <tr class="method-row inherited expandable">\r
2259         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2260         <td class="sig">\r
2261         <a id="Ext.grid.PropertyGrid-getFrameHeight"></a>\r
2262             <b>getFrameHeight</b>() : Number            <div class="mdesc">\r
2263                         <div class="short">Returns the height in pixels of the framing elements of this panel (including any top and bottom bars and
2264 header and ...</div>\r
2265             <div class="long">\r
2266                 Returns the height in pixels of the framing elements of this panel (including any top and bottom bars and
2267 header and footer elements, but not including the body height).  To retrieve the body height see <a ext:cls="Ext.Panel" ext:member="getInnerHeight" href="output/Ext.Panel.html#getInnerHeight">getInnerHeight</a>.    <div class="mdetail-params">\r
2268         <strong>Parameters:</strong>\r
2269         <ul><li>None.</li>        </ul>\r
2270         <strong>Returns:</strong>\r
2271         <ul>\r
2272             <li><code>Number</code><div class="sub-desc">The frame height</div></li>\r
2273         </ul>\r
2274     </div>\r
2275                 </div>\r
2276                         </div>\r
2277         </td>\r
2278         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#getFrameHeight" href="output/Ext.Panel.html#getFrameHeight">Panel</a></td>\r
2279     </tr>\r
2280         <tr class="method-row inherited alt expandable">\r
2281         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2282         <td class="sig">\r
2283         <a id="Ext.grid.PropertyGrid-getFrameWidth"></a>\r
2284             <b>getFrameWidth</b>() : Number            <div class="mdesc">\r
2285                         <div class="short">Returns the width in pixels of the framing elements of this panel (not including the body width).  To
2286 retrieve the bo...</div>\r
2287             <div class="long">\r
2288                 Returns the width in pixels of the framing elements of this panel (not including the body width).  To
2289 retrieve the body width see <a ext:cls="Ext.Panel" ext:member="getInnerWidth" href="output/Ext.Panel.html#getInnerWidth">getInnerWidth</a>.    <div class="mdetail-params">\r
2290         <strong>Parameters:</strong>\r
2291         <ul><li>None.</li>        </ul>\r
2292         <strong>Returns:</strong>\r
2293         <ul>\r
2294             <li><code>Number</code><div class="sub-desc">The frame width</div></li>\r
2295         </ul>\r
2296     </div>\r
2297                 </div>\r
2298                         </div>\r
2299         </td>\r
2300         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#getFrameWidth" href="output/Ext.Panel.html#getFrameWidth">Panel</a></td>\r
2301     </tr>\r
2302         <tr class="method-row inherited expandable">\r
2303         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2304         <td class="sig">\r
2305         <a id="Ext.grid.PropertyGrid-getGridEl"></a>\r
2306             <b>getGridEl</b>() : Element            <div class="mdesc">\r
2307                         <div class="short">Returns the grid's underlying element.</div>\r
2308             <div class="long">\r
2309                 Returns the grid's underlying element.    <div class="mdetail-params">\r
2310         <strong>Parameters:</strong>\r
2311         <ul><li>None.</li>        </ul>\r
2312         <strong>Returns:</strong>\r
2313         <ul>\r
2314             <li><code>Element</code><div class="sub-desc">The element</div></li>\r
2315         </ul>\r
2316     </div>\r
2317                 </div>\r
2318                         </div>\r
2319         </td>\r
2320         <td class="msource"><a ext:cls="Ext.grid.GridPanel" ext:member="#getGridEl" href="output/Ext.grid.GridPanel.html#getGridEl">GridPanel</a></td>\r
2321     </tr>\r
2322         <tr class="method-row inherited alt expandable">\r
2323         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2324         <td class="sig">\r
2325         <a id="Ext.grid.PropertyGrid-getId"></a>\r
2326             <b>getId</b>() : String            <div class="mdesc">\r
2327                         <div class="short">Returns the id of this component.</div>\r
2328             <div class="long">\r
2329                 Returns the id of this component.    <div class="mdetail-params">\r
2330         <strong>Parameters:</strong>\r
2331         <ul><li>None.</li>        </ul>\r
2332         <strong>Returns:</strong>\r
2333         <ul>\r
2334             <li><code>String</code></li>\r
2335         </ul>\r
2336     </div>\r
2337                 </div>\r
2338                         </div>\r
2339         </td>\r
2340         <td class="msource"><a ext:cls="Ext.Component" ext:member="#getId" href="output/Ext.Component.html#getId">Component</a></td>\r
2341     </tr>\r
2342         <tr class="method-row inherited expandable">\r
2343         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2344         <td class="sig">\r
2345         <a id="Ext.grid.PropertyGrid-getInnerHeight"></a>\r
2346             <b>getInnerHeight</b>() : Number            <div class="mdesc">\r
2347                         <div class="short">Returns the height in pixels of the body element (not including the height of any framing elements).
2348 For the frame he...</div>\r
2349             <div class="long">\r
2350                 Returns the height in pixels of the body element (not including the height of any framing elements).
2351 For the frame height see <a ext:cls="Ext.Panel" ext:member="getFrameHeight" href="output/Ext.Panel.html#getFrameHeight">getFrameHeight</a>.    <div class="mdetail-params">\r
2352         <strong>Parameters:</strong>\r
2353         <ul><li>None.</li>        </ul>\r
2354         <strong>Returns:</strong>\r
2355         <ul>\r
2356             <li><code>Number</code><div class="sub-desc">The body height</div></li>\r
2357         </ul>\r
2358     </div>\r
2359                 </div>\r
2360                         </div>\r
2361         </td>\r
2362         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#getInnerHeight" href="output/Ext.Panel.html#getInnerHeight">Panel</a></td>\r
2363     </tr>\r
2364         <tr class="method-row inherited alt expandable">\r
2365         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2366         <td class="sig">\r
2367         <a id="Ext.grid.PropertyGrid-getInnerWidth"></a>\r
2368             <b>getInnerWidth</b>() : Number            <div class="mdesc">\r
2369                         <div class="short">Returns the width in pixels of the body element (not including the width of any framing elements).
2370 For the frame widt...</div>\r
2371             <div class="long">\r
2372                 Returns the width in pixels of the body element (not including the width of any framing elements).
2373 For the frame width see <a ext:cls="Ext.Panel" ext:member="getFrameWidth" href="output/Ext.Panel.html#getFrameWidth">getFrameWidth</a>.    <div class="mdetail-params">\r
2374         <strong>Parameters:</strong>\r
2375         <ul><li>None.</li>        </ul>\r
2376         <strong>Returns:</strong>\r
2377         <ul>\r
2378             <li><code>Number</code><div class="sub-desc">The body width</div></li>\r
2379         </ul>\r
2380     </div>\r
2381                 </div>\r
2382                         </div>\r
2383         </td>\r
2384         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#getInnerWidth" href="output/Ext.Panel.html#getInnerWidth">Panel</a></td>\r
2385     </tr>\r
2386         <tr class="method-row inherited expandable">\r
2387         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2388         <td class="sig">\r
2389         <a id="Ext.grid.PropertyGrid-getItemId"></a>\r
2390             <b>getItemId</b>() : String            <div class="mdesc">\r
2391                         <div class="short">Returns the item id of this component.</div>\r
2392             <div class="long">\r
2393                 Returns the item id of this component.    <div class="mdetail-params">\r
2394         <strong>Parameters:</strong>\r
2395         <ul><li>None.</li>        </ul>\r
2396         <strong>Returns:</strong>\r
2397         <ul>\r
2398             <li><code>String</code></li>\r
2399         </ul>\r
2400     </div>\r
2401                 </div>\r
2402                         </div>\r
2403         </td>\r
2404         <td class="msource"><a ext:cls="Ext.Component" ext:member="#getItemId" href="output/Ext.Component.html#getItemId">Component</a></td>\r
2405     </tr>\r
2406         <tr class="method-row inherited alt expandable">\r
2407         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2408         <td class="sig">\r
2409         <a id="Ext.grid.PropertyGrid-getLayout"></a>\r
2410             <b>getLayout</b>() : ContainerLayout            <div class="mdesc">\r
2411                         <div class="short">Returns the layout currently in use by the container.  If the container does not currently have a layout
2412 set, a defau...</div>\r
2413             <div class="long">\r
2414                 Returns the layout currently in use by the container.  If the container does not currently have a layout
2415 set, a default <a ext:cls="Ext.layout.ContainerLayout" href="output/Ext.layout.ContainerLayout.html">Ext.layout.ContainerLayout</a> will be created and set as the container's layout.    <div class="mdetail-params">\r
2416         <strong>Parameters:</strong>\r
2417         <ul><li>None.</li>        </ul>\r
2418         <strong>Returns:</strong>\r
2419         <ul>\r
2420             <li><code>ContainerLayout</code><div class="sub-desc">layout The container's layout</div></li>\r
2421         </ul>\r
2422     </div>\r
2423                 </div>\r
2424                         </div>\r
2425         </td>\r
2426         <td class="msource"><a ext:cls="Ext.Container" ext:member="#getLayout" href="output/Ext.Container.html#getLayout">Container</a></td>\r
2427     </tr>\r
2428         <tr class="method-row inherited expandable">\r
2429         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2430         <td class="sig">\r
2431         <a id="Ext.grid.PropertyGrid-getLayoutTarget"></a>\r
2432             <b>getLayoutTarget</b>() : Ext.Element            <div class="mdesc">\r
2433                         <div class="short">Returns the Element to be used to contain the child Components of this Container.
2434 An implementation is provided which...</div>\r
2435             <div class="long">\r
2436                 <p>Returns the Element to be used to contain the child Components of this Container.</p>
2437 <p>An implementation is provided which returns the Container's <a ext:cls="Ext.Container" ext:member="getEl" href="output/Ext.Container.html#getEl">Element</a>, but
2438 if there is a more complex structure to a Container, this may be overridden to return
2439 the element into which the <a ext:cls="Ext.Container" ext:member="layout" href="output/Ext.Container.html#layout">layout</a> renders child Components.</p>    <div class="mdetail-params">\r
2440         <strong>Parameters:</strong>\r
2441         <ul><li>None.</li>        </ul>\r
2442         <strong>Returns:</strong>\r
2443         <ul>\r
2444             <li><code>Ext.Element</code><div class="sub-desc">The Element to render child Components into.</div></li>\r
2445         </ul>\r
2446     </div>\r
2447                 </div>\r
2448                         </div>\r
2449         </td>\r
2450         <td class="msource"><a ext:cls="Ext.Container" ext:member="#getLayoutTarget" href="output/Ext.Container.html#getLayoutTarget">Container</a></td>\r
2451     </tr>\r
2452         <tr class="method-row inherited alt expandable">\r
2453         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2454         <td class="sig">\r
2455         <a id="Ext.grid.PropertyGrid-getPosition"></a>\r
2456             <b>getPosition</b>(&nbsp;<span class="optional" title="Optional">[<code>Boolean local</code>]</span>&nbsp;) : Array            <div class="mdesc">\r
2457                         <div class="short">Gets the current XY position of the component's underlying element.</div>\r
2458             <div class="long">\r
2459                 Gets the current XY position of the component's underlying element.    <div class="mdetail-params">\r
2460         <strong>Parameters:</strong>\r
2461         <ul><li><code>local</code> : Boolean<div class="sub-desc">(optional) If true the element's left and top are returned instead of page XY (defaults to false)</div></li>        </ul>\r
2462         <strong>Returns:</strong>\r
2463         <ul>\r
2464             <li><code>Array</code><div class="sub-desc">The XY position of the element (e.g., [100, 200])</div></li>\r
2465         </ul>\r
2466     </div>\r
2467                 </div>\r
2468                         </div>\r
2469         </td>\r
2470         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#getPosition" href="output/Ext.BoxComponent.html#getPosition">BoxComponent</a></td>\r
2471     </tr>\r
2472         <tr class="method-row inherited expandable">\r
2473         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2474         <td class="sig">\r
2475         <a id="Ext.grid.PropertyGrid-getSelectionModel"></a>\r
2476             <b>getSelectionModel</b>() : Ext.grid.AbstractSelectionModel            <div class="mdesc">\r
2477                         <div class="short">Returns the grid's SelectionModel.</div>\r
2478             <div class="long">\r
2479                 Returns the grid's SelectionModel.    <div class="mdetail-params">\r
2480         <strong>Parameters:</strong>\r
2481         <ul><li>None.</li>        </ul>\r
2482         <strong>Returns:</strong>\r
2483         <ul>\r
2484             <li><code>Ext.grid.AbstractSelectionModel</code><div class="sub-desc">SelectionModel} The selection model configured by the @link (#selModel} configuration option. This will be a subclass of {Ext.grid.AbstractSelectionModel} which provides either cell or row selectability.</div></li>\r
2485         </ul>\r
2486     </div>\r
2487                 </div>\r
2488                         </div>\r
2489         </td>\r
2490         <td class="msource"><a ext:cls="Ext.grid.GridPanel" ext:member="#getSelectionModel" href="output/Ext.grid.GridPanel.html#getSelectionModel">GridPanel</a></td>\r
2491     </tr>\r
2492         <tr class="method-row inherited alt expandable">\r
2493         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2494         <td class="sig">\r
2495         <a id="Ext.grid.PropertyGrid-getSize"></a>\r
2496             <b>getSize</b>() : Object            <div class="mdesc">\r
2497                         <div class="short">Gets the current size of the component's underlying element.</div>\r
2498             <div class="long">\r
2499                 Gets the current size of the component's underlying element.    <div class="mdetail-params">\r
2500         <strong>Parameters:</strong>\r
2501         <ul><li>None.</li>        </ul>\r
2502         <strong>Returns:</strong>\r
2503         <ul>\r
2504             <li><code>Object</code><div class="sub-desc">An object containing the element's size {width: (element width), height: (element height)}</div></li>\r
2505         </ul>\r
2506     </div>\r
2507                 </div>\r
2508                         </div>\r
2509         </td>\r
2510         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#getSize" href="output/Ext.BoxComponent.html#getSize">BoxComponent</a></td>\r
2511     </tr>\r
2512         <tr class="method-row expandable">\r
2513         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2514         <td class="sig">\r
2515         <a id="Ext.grid.PropertyGrid-getSource"></a>\r
2516             <b>getSource</b>() : Object            <div class="mdesc">\r
2517                         <div class="short">Gets the source data object containing the property data.  See setSource for details regarding the
2518 format of the data...</div>\r
2519             <div class="long">\r
2520                 Gets the source data object containing the property data.  See <a ext:cls="Ext.grid.PropertyGrid" ext:member="setSource" href="output/Ext.grid.PropertyGrid.html#setSource">setSource</a> for details regarding the
2521 format of the data object.    <div class="mdetail-params">\r
2522         <strong>Parameters:</strong>\r
2523         <ul><li>None.</li>        </ul>\r
2524         <strong>Returns:</strong>\r
2525         <ul>\r
2526             <li><code>Object</code><div class="sub-desc">The data object</div></li>\r
2527         </ul>\r
2528     </div>\r
2529                 </div>\r
2530                         </div>\r
2531         </td>\r
2532         <td class="msource">PropertyGrid</td>\r
2533     </tr>\r
2534         <tr class="method-row inherited alt expandable">\r
2535         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2536         <td class="sig">\r
2537         <a id="Ext.grid.PropertyGrid-getStore"></a>\r
2538             <b>getStore</b>() : Ext.data.Store            <div class="mdesc">\r
2539                         <div class="short">Returns the grid's data store.</div>\r
2540             <div class="long">\r
2541                 Returns the grid's data store.    <div class="mdetail-params">\r
2542         <strong>Parameters:</strong>\r
2543         <ul><li>None.</li>        </ul>\r
2544         <strong>Returns:</strong>\r
2545         <ul>\r
2546             <li><code>Ext.data.Store</code><div class="sub-desc">The store</div></li>\r
2547         </ul>\r
2548     </div>\r
2549                 </div>\r
2550                         </div>\r
2551         </td>\r
2552         <td class="msource"><a ext:cls="Ext.grid.GridPanel" ext:member="#getStore" href="output/Ext.grid.GridPanel.html#getStore">GridPanel</a></td>\r
2553     </tr>\r
2554         <tr class="method-row inherited expandable">\r
2555         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2556         <td class="sig">\r
2557         <a id="Ext.grid.PropertyGrid-getTool"></a>\r
2558             <b>getTool</b>(&nbsp;<code>String id</code>&nbsp;) : Object            <div class="mdesc">\r
2559                         <div class="short">Retrieve a tool by id.</div>\r
2560             <div class="long">\r
2561                 Retrieve a tool by id.    <div class="mdetail-params">\r
2562         <strong>Parameters:</strong>\r
2563         <ul><li><code>id</code> : String<div class="sub-desc"></div></li>        </ul>\r
2564         <strong>Returns:</strong>\r
2565         <ul>\r
2566             <li><code>Object</code><div class="sub-desc">tool</div></li>\r
2567         </ul>\r
2568     </div>\r
2569                 </div>\r
2570                         </div>\r
2571         </td>\r
2572         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#getTool" href="output/Ext.Panel.html#getTool">Panel</a></td>\r
2573     </tr>\r
2574         <tr class="method-row inherited alt expandable">\r
2575         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2576         <td class="sig">\r
2577         <a id="Ext.grid.PropertyGrid-getTopToolbar"></a>\r
2578             <b>getTopToolbar</b>() : Ext.Toolbar            <div class="mdesc">\r
2579                         <div class="short">Returns the toolbar from the top (tbar) section of the panel.</div>\r
2580             <div class="long">\r
2581                 Returns the toolbar from the top (tbar) section of the panel.    <div class="mdetail-params">\r
2582         <strong>Parameters:</strong>\r
2583         <ul><li>None.</li>        </ul>\r
2584         <strong>Returns:</strong>\r
2585         <ul>\r
2586             <li><code>Ext.Toolbar</code><div class="sub-desc">The toolbar</div></li>\r
2587         </ul>\r
2588     </div>\r
2589                 </div>\r
2590                         </div>\r
2591         </td>\r
2592         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#getTopToolbar" href="output/Ext.Panel.html#getTopToolbar">Panel</a></td>\r
2593     </tr>\r
2594         <tr class="method-row inherited expandable">\r
2595         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2596         <td class="sig">\r
2597         <a id="Ext.grid.PropertyGrid-getUpdater"></a>\r
2598             <b>getUpdater</b>() : Ext.Updater            <div class="mdesc">\r
2599                         <div class="short">Get the <a ext:cls="Ext.Updater" href="output/Ext.Updater.html">Ext.Updater</a> for this panel. Enables you to perform Ajax updates of this panel's body.</div>\r
2600             <div class="long">\r
2601                 Get the <a ext:cls="Ext.Updater" href="output/Ext.Updater.html">Ext.Updater</a> for this panel. Enables you to perform Ajax updates of this panel's body.    <div class="mdetail-params">\r
2602         <strong>Parameters:</strong>\r
2603         <ul><li>None.</li>        </ul>\r
2604         <strong>Returns:</strong>\r
2605         <ul>\r
2606             <li><code>Ext.Updater</code><div class="sub-desc">The Updater</div></li>\r
2607         </ul>\r
2608     </div>\r
2609                 </div>\r
2610                         </div>\r
2611         </td>\r
2612         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#getUpdater" href="output/Ext.Panel.html#getUpdater">Panel</a></td>\r
2613     </tr>\r
2614         <tr class="method-row inherited alt expandable">\r
2615         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2616         <td class="sig">\r
2617         <a id="Ext.grid.PropertyGrid-getView"></a>\r
2618             <b>getView</b>() : Ext.grid.GridView            <div class="mdesc">\r
2619                         <div class="short">Returns the grid's GridView object.</div>\r
2620             <div class="long">\r
2621                 Returns the grid's GridView object.    <div class="mdetail-params">\r
2622         <strong>Parameters:</strong>\r
2623         <ul><li>None.</li>        </ul>\r
2624         <strong>Returns:</strong>\r
2625         <ul>\r
2626             <li><code>Ext.grid.GridView</code><div class="sub-desc">The grid view</div></li>\r
2627         </ul>\r
2628     </div>\r
2629                 </div>\r
2630                         </div>\r
2631         </td>\r
2632         <td class="msource"><a ext:cls="Ext.grid.GridPanel" ext:member="#getView" href="output/Ext.grid.GridPanel.html#getView">GridPanel</a></td>\r
2633     </tr>\r
2634         <tr class="method-row inherited expandable">\r
2635         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2636         <td class="sig">\r
2637         <a id="Ext.grid.PropertyGrid-getXType"></a>\r
2638             <b>getXType</b>() : String            <div class="mdesc">\r
2639                         <div class="short">Gets the xtype for this component as registered with Ext.ComponentMgr. For a list of all
2640 available xtypes, see the Ex...</div>\r
2641             <div class="long">\r
2642                 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
2643 available xtypes, see the <a ext:cls="Ext.Component" href="output/Ext.Component.html">Ext.Component</a> header. Example usage:
2644 <pre><code>var t = <b>new</b> Ext.form.TextField();
2645 alert(t.getXType());  // alerts <em>'textfield'</em></code></pre>    <div class="mdetail-params">\r
2646         <strong>Parameters:</strong>\r
2647         <ul><li>None.</li>        </ul>\r
2648         <strong>Returns:</strong>\r
2649         <ul>\r
2650             <li><code>String</code><div class="sub-desc">The xtype</div></li>\r
2651         </ul>\r
2652     </div>\r
2653                 </div>\r
2654                         </div>\r
2655         </td>\r
2656         <td class="msource"><a ext:cls="Ext.Component" ext:member="#getXType" href="output/Ext.Component.html#getXType">Component</a></td>\r
2657     </tr>\r
2658         <tr class="method-row inherited alt expandable">\r
2659         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2660         <td class="sig">\r
2661         <a id="Ext.grid.PropertyGrid-getXTypes"></a>\r
2662             <b>getXTypes</b>() : String            <div class="mdesc">\r
2663                         <div class="short">Returns this Component's xtype hierarchy as a slash-delimited string. For a list of all
2664 available xtypes, see the Ext...</div>\r
2665             <div class="long">\r
2666                 <p>Returns this Component's xtype hierarchy as a slash-delimited string. For a list of all
2667 available xtypes, see the <a ext:cls="Ext.Component" href="output/Ext.Component.html">Ext.Component</a> header.</p>
2668 <p><b>If using your own subclasses, be aware that a Component must register its own xtype
2669 to participate in determination of inherited xtypes.</b></p>
2670 <p>Example usage:</p>
2671 <pre><code>\r
2672 var t = new Ext.form.TextField();\r
2673 alert(t.getXTypes());  // alerts 'component/box/field/textfield'</pre></code>    <div class="mdetail-params">\r
2674         <strong>Parameters:</strong>\r
2675         <ul><li>None.</li>        </ul>\r
2676         <strong>Returns:</strong>\r
2677         <ul>\r
2678             <li><code>String</code><div class="sub-desc">The xtype hierarchy string</div></li>\r
2679         </ul>\r
2680     </div>\r
2681                 </div>\r
2682                         </div>\r
2683         </td>\r
2684         <td class="msource"><a ext:cls="Ext.Component" ext:member="#getXTypes" href="output/Ext.Component.html#getXTypes">Component</a></td>\r
2685     </tr>\r
2686         <tr class="method-row inherited expandable">\r
2687         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2688         <td class="sig">\r
2689         <a id="Ext.grid.PropertyGrid-hasListener"></a>\r
2690             <b>hasListener</b>(&nbsp;<code>String eventName</code>&nbsp;) : Boolean            <div class="mdesc">\r
2691                         <div class="short">Checks to see if this object has any listeners for a specified event</div>\r
2692             <div class="long">\r
2693                 Checks to see if this object has any listeners for a specified event    <div class="mdetail-params">\r
2694         <strong>Parameters:</strong>\r
2695         <ul><li><code>eventName</code> : String<div class="sub-desc">The name of the event to check for</div></li>        </ul>\r
2696         <strong>Returns:</strong>\r
2697         <ul>\r
2698             <li><code>Boolean</code><div class="sub-desc">True if the event is being listened for, else false</div></li>\r
2699         </ul>\r
2700     </div>\r
2701                 </div>\r
2702                         </div>\r
2703         </td>\r
2704         <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#hasListener" href="output/Ext.util.Observable.html#hasListener">Observable</a></td>\r
2705     </tr>\r
2706         <tr class="method-row inherited alt expandable">\r
2707         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2708         <td class="sig">\r
2709         <a id="Ext.grid.PropertyGrid-hide"></a>\r
2710             <b>hide</b>() : Ext.Component            <div class="mdesc">\r
2711                         <div class="short">Hide this component.</div>\r
2712             <div class="long">\r
2713                 Hide this component.    <div class="mdetail-params">\r
2714         <strong>Parameters:</strong>\r
2715         <ul><li>None.</li>        </ul>\r
2716         <strong>Returns:</strong>\r
2717         <ul>\r
2718             <li><code>Ext.Component</code><div class="sub-desc">this</div></li>\r
2719         </ul>\r
2720     </div>\r
2721                 </div>\r
2722                         </div>\r
2723         </td>\r
2724         <td class="msource"><a ext:cls="Ext.Component" ext:member="#hide" href="output/Ext.Component.html#hide">Component</a></td>\r
2725     </tr>\r
2726         <tr class="method-row inherited expandable">\r
2727         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2728         <td class="sig">\r
2729         <a id="Ext.grid.PropertyGrid-insert"></a>\r
2730             <b>insert</b>(&nbsp;<code>Number index</code>, <code>Ext.Component component</code>&nbsp;) : Ext.Component            <div class="mdesc">\r
2731                         <div class="short">Inserts a Component into this Container at a specified index. Fires the
2732 beforeadd event before inserting, then fires ...</div>\r
2733             <div class="long">\r
2734                 Inserts a Component into this Container at a specified index. Fires the
2735 <a ext:cls="Ext.Container" ext:member="beforeadd" href="output/Ext.Container.html#beforeadd">beforeadd</a> event before inserting, then fires the <a ext:cls="Ext.Container" ext:member="add" href="output/Ext.Container.html#add">add</a> event after the
2736 Component has been inserted.    <div class="mdetail-params">\r
2737         <strong>Parameters:</strong>\r
2738         <ul><li><code>index</code> : Number<div class="sub-desc">The index at which the Component will be inserted
2739 into the Container's items collection</div></li><li><code>component</code> : Ext.Component<div class="sub-desc">The child Component to insert.<br><br>
2740 Ext uses lazy rendering, and will only render the inserted Component should
2741 it become necessary.<br><br>
2742 A Component config object may be passed in order to avoid the overhead of
2743 constructing a real Component object if lazy rendering might mean that the
2744 inserted Component will not be rendered immediately. To take advantage of
2745 this "lazy instantiation", set the <a ext:cls="Ext.Component" ext:member="xtype" href="output/Ext.Component.html#xtype">Ext.Component.xtype</a> config
2746 property to the registered type of the Component wanted.<br><br>
2747 For a list of all available xtypes, see <a ext:cls="Ext.Component" href="output/Ext.Component.html">Ext.Component</a>.</div></li>        </ul>\r
2748         <strong>Returns:</strong>\r
2749         <ul>\r
2750             <li><code>Ext.Component</code><div class="sub-desc">component The Component (or config object) that was inserted with the Container's default config values applied.</div></li>\r
2751         </ul>\r
2752     </div>\r
2753                 </div>\r
2754                         </div>\r
2755         </td>\r
2756         <td class="msource"><a ext:cls="Ext.Container" ext:member="#insert" href="output/Ext.Container.html#insert">Container</a></td>\r
2757     </tr>\r
2758         <tr class="method-row inherited alt expandable">\r
2759         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2760         <td class="sig">\r
2761         <a id="Ext.grid.PropertyGrid-isVisible"></a>\r
2762             <b>isVisible</b>() : void            <div class="mdesc">\r
2763                         <div class="short">Returns true if this component is visible.</div>\r
2764             <div class="long">\r
2765                 Returns true if this component is visible.    <div class="mdetail-params">\r
2766         <strong>Parameters:</strong>\r
2767         <ul><li>None.</li>        </ul>\r
2768         <strong>Returns:</strong>\r
2769         <ul>\r
2770             <li><code>void</code></li>\r
2771         </ul>\r
2772     </div>\r
2773                 </div>\r
2774                         </div>\r
2775         </td>\r
2776         <td class="msource"><a ext:cls="Ext.Component" ext:member="#isVisible" href="output/Ext.Component.html#isVisible">Component</a></td>\r
2777     </tr>\r
2778         <tr class="method-row inherited expandable">\r
2779         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2780         <td class="sig">\r
2781         <a id="Ext.grid.PropertyGrid-isXType"></a>\r
2782             <b>isXType</b>(&nbsp;<code>String xtype</code>, <span class="optional" title="Optional">[<code>Boolean shallow</code>]</span>&nbsp;) : void            <div class="mdesc">\r
2783                         <div class="short">Tests whether or not this Component is of a specific xtype. This can test whether this Component is descended
2784 from th...</div>\r
2785             <div class="long">\r
2786                 <p>Tests whether or not this Component is of a specific xtype. This can test whether this Component is descended
2787 from the xtype (default) or whether it is directly of the xtype specified (shallow = true).</p>
2788 <p><b>If using your own subclasses, be aware that a Component must register its own xtype
2789 to participate in determination of inherited xtypes.</b></p>
2790 <p>For a list of all available xtypes, see the <a ext:cls="Ext.Component" href="output/Ext.Component.html">Ext.Component</a> header.</p>
2791 <p>Example usage:</p>
2792 <pre><code>var t = <b>new</b> Ext.form.TextField();
2793 <b>var</b> isText = t.isXType(<em>'textfield'</em>);        <i>// true</i>
2794 <b>var</b> isBoxSubclass = t.isXType(<em>'box'</em>);       <i>// true, descended from BoxComponent</i>
2795 <b>var</b> isBoxInstance = t.isXType(<em>'box'</em>, true); // false, not a direct BoxComponent instance</code></pre>    <div class="mdetail-params">\r
2796         <strong>Parameters:</strong>\r
2797         <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
2798 the default), or true to check whether this Component is directly of the specified xtype.</div></li>        </ul>\r
2799         <strong>Returns:</strong>\r
2800         <ul>\r
2801             <li><code>void</code></li>\r
2802         </ul>\r
2803     </div>\r
2804                 </div>\r
2805                         </div>\r
2806         </td>\r
2807         <td class="msource"><a ext:cls="Ext.Component" ext:member="#isXType" href="output/Ext.Component.html#isXType">Component</a></td>\r
2808     </tr>\r
2809         <tr class="method-row inherited alt expandable">\r
2810         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2811         <td class="sig">\r
2812         <a id="Ext.grid.PropertyGrid-load"></a>\r
2813             <b>load</b>(&nbsp;<code>Object/String/Function config</code>&nbsp;) : Ext.Panel            <div class="mdesc">\r
2814                         <div class="short">Loads this content panel immediately with content returned from an XHR call.</div>\r
2815             <div class="long">\r
2816                 Loads this content panel immediately with content returned from an XHR call.    <div class="mdetail-params">\r
2817         <strong>Parameters:</strong>\r
2818         <ul><li><code>config</code> : Object/String/Function<div class="sub-desc">A config object containing any of the following options:\r
2819 <pre><code>panel.load({
2820     url: <em>"your-url.php"</em>,
2821     params: {param1: <em>"foo"</em>, param2: <em>"bar"</em>}, <i>// or a URL encoded string</i>
2822     callback: yourFunction,
2823     scope: yourObject, <i>// optional scope <b>for</b> the callback</i>
2824     discardUrl: false,
2825     nocache: false,
2826     text: <em>"Loading..."</em>,
2827     timeout: 30,
2828     scripts: false
2829 });</code></pre>
2830 The only required property is url. The optional properties nocache, text and scripts
2831 are shorthand for disableCaching, indicatorText and loadScripts and are used to set their
2832 associated property on this panel Updater instance.</div></li>        </ul>\r
2833         <strong>Returns:</strong>\r
2834         <ul>\r
2835             <li><code>Ext.Panel</code><div class="sub-desc">this</div></li>\r
2836         </ul>\r
2837     </div>\r
2838                 </div>\r
2839                         </div>\r
2840         </td>\r
2841         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#load" href="output/Ext.Panel.html#load">Panel</a></td>\r
2842     </tr>\r
2843         <tr class="method-row inherited expandable">\r
2844         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2845         <td class="sig">\r
2846         <a id="Ext.grid.PropertyGrid-on"></a>\r
2847             <b>on</b>(&nbsp;<code>String eventName</code>, <code>Function handler</code>, <span class="optional" title="Optional">[<code>Object scope</code>]</span>, <span class="optional" title="Optional">[<code>Object options</code>]</span>&nbsp;) : void            <div class="mdesc">\r
2848                         <div class="short">Appends an event handler to this element (shorthand for addListener)</div>\r
2849             <div class="long">\r
2850                 Appends an event handler to this element (shorthand for addListener)    <div class="mdetail-params">\r
2851         <strong>Parameters:</strong>\r
2852         <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
2853 function. The handler function's "this" context.</div></li><li><code>options</code> : Object<div class="sub-desc">(optional)</div></li>        </ul>\r
2854         <strong>Returns:</strong>\r
2855         <ul>\r
2856             <li><code>void</code></li>\r
2857         </ul>\r
2858     </div>\r
2859                 </div>\r
2860                         </div>\r
2861         </td>\r
2862         <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#on" href="output/Ext.util.Observable.html#on">Observable</a></td>\r
2863     </tr>\r
2864         <tr class="method-row inherited alt expandable">\r
2865         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2866         <td class="sig">\r
2867         <a id="Ext.grid.PropertyGrid-purgeListeners"></a>\r
2868             <b>purgeListeners</b>() : void            <div class="mdesc">\r
2869                         <div class="short">Removes all listeners for this object</div>\r
2870             <div class="long">\r
2871                 Removes all listeners for this object    <div class="mdetail-params">\r
2872         <strong>Parameters:</strong>\r
2873         <ul><li>None.</li>        </ul>\r
2874         <strong>Returns:</strong>\r
2875         <ul>\r
2876             <li><code>void</code></li>\r
2877         </ul>\r
2878     </div>\r
2879                 </div>\r
2880                         </div>\r
2881         </td>\r
2882         <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#purgeListeners" href="output/Ext.util.Observable.html#purgeListeners">Observable</a></td>\r
2883     </tr>\r
2884         <tr class="method-row inherited expandable">\r
2885         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2886         <td class="sig">\r
2887         <a id="Ext.grid.PropertyGrid-reconfigure"></a>\r
2888             <b>reconfigure</b>(&nbsp;<code>Ext.data.Store store</code>, <code>Ext.grid.ColumnModel colModel</code>&nbsp;) : void            <div class="mdesc">\r
2889                         <div class="short">Reconfigures the grid to use a different Store and Column Model.
2890 The View will be bound to the new objects and refres...</div>\r
2891             <div class="long">\r
2892                 <p>Reconfigures the grid to use a different Store and Column Model.
2893 The View will be bound to the new objects and refreshed.</p>
2894 <p>Be aware that upon reconfiguring a GridPanel, certain existing settings <i>may</i> become
2895 invalidated. For example the configured <a ext:cls="Ext.grid.GridPanel" ext:member="autoExpandColumn" href="output/Ext.grid.GridPanel.html#autoExpandColumn">autoExpandColumn</a> may no longer exist in the
2896 new ColumnModel. Also, an existing <a ext:cls="Ext.PagingToolbar" href="output/Ext.PagingToolbar.html">PagingToolbar</a> will still be bound
2897 to the old Store, and will need rebinding. Any <a ext:cls="Ext.grid.GridPanel" ext:member="plugins" href="output/Ext.grid.GridPanel.html#plugins">plugins</a> might also need reconfiguring
2898 with the new data.</p>    <div class="mdetail-params">\r
2899         <strong>Parameters:</strong>\r
2900         <ul><li><code>store</code> : Ext.data.Store<div class="sub-desc">The new <a ext:cls="Ext.data.Store" href="output/Ext.data.Store.html">Ext.data.Store</a> object</div></li><li><code>colModel</code> : Ext.grid.ColumnModel<div class="sub-desc">The new <a ext:cls="Ext.grid.ColumnModel" href="output/Ext.grid.ColumnModel.html">Ext.grid.ColumnModel</a> object</div></li>        </ul>\r
2901         <strong>Returns:</strong>\r
2902         <ul>\r
2903             <li><code>void</code></li>\r
2904         </ul>\r
2905     </div>\r
2906                 </div>\r
2907                         </div>\r
2908         </td>\r
2909         <td class="msource"><a ext:cls="Ext.grid.GridPanel" ext:member="#reconfigure" href="output/Ext.grid.GridPanel.html#reconfigure">GridPanel</a></td>\r
2910     </tr>\r
2911         <tr class="method-row inherited alt expandable">\r
2912         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2913         <td class="sig">\r
2914         <a id="Ext.grid.PropertyGrid-relayEvents"></a>\r
2915             <b>relayEvents</b>(&nbsp;<code>Object o</code>, <code>Array events</code>&nbsp;) : void            <div class="mdesc">\r
2916                         <div class="short">Relays selected events from the specified Observable as if the events were fired by <tt><b>this</b></tt>.</div>\r
2917             <div class="long">\r
2918                 Relays selected events from the specified Observable as if the events were fired by <tt><b>this</b></tt>.    <div class="mdetail-params">\r
2919         <strong>Parameters:</strong>\r
2920         <ul><li><code>o</code> : Object<div class="sub-desc">The Observable whose events this object is to relay.</div></li><li><code>events</code> : Array<div class="sub-desc">Array of event names to relay.</div></li>        </ul>\r
2921         <strong>Returns:</strong>\r
2922         <ul>\r
2923             <li><code>void</code></li>\r
2924         </ul>\r
2925     </div>\r
2926                 </div>\r
2927                         </div>\r
2928         </td>\r
2929         <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#relayEvents" href="output/Ext.util.Observable.html#relayEvents">Observable</a></td>\r
2930     </tr>\r
2931         <tr class="method-row inherited expandable">\r
2932         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2933         <td class="sig">\r
2934         <a id="Ext.grid.PropertyGrid-remove"></a>\r
2935             <b>remove</b>(&nbsp;<code>Component/String component</code>, <span class="optional" title="Optional">[<code>Boolean autoDestroy</code>]</span>&nbsp;) : Ext.Component            <div class="mdesc">\r
2936                         <div class="short">Removes a component from this container.  Fires the beforeremove event before removing, then fires
2937 the remove event a...</div>\r
2938             <div class="long">\r
2939                 Removes a component from this container.  Fires the <a ext:cls="Ext.Container" ext:member="beforeremove" href="output/Ext.Container.html#beforeremove">beforeremove</a> event before removing, then fires
2940 the <a ext:cls="Ext.Container" ext:member="remove" href="output/Ext.Container.html#remove">remove</a> event after the component has been removed.    <div class="mdetail-params">\r
2941         <strong>Parameters:</strong>\r
2942         <ul><li><code>component</code> : Component/String<div class="sub-desc">The component reference or id to remove.</div></li><li><code>autoDestroy</code> : Boolean<div class="sub-desc">(optional) True to automatically invoke the removed Component's <a ext:cls="Ext.Component" ext:member="destroy" href="output/Ext.Component.html#destroy">Ext.Component.destroy</a> function.
2943 Defaults to the value of this Container's <a ext:cls="Ext.Container" ext:member="autoDestroy" href="output/Ext.Container.html#autoDestroy">autoDestroy</a> config.</div></li>        </ul>\r
2944         <strong>Returns:</strong>\r
2945         <ul>\r
2946             <li><code>Ext.Component</code><div class="sub-desc">component The Component that was removed.</div></li>\r
2947         </ul>\r
2948     </div>\r
2949                 </div>\r
2950                         </div>\r
2951         </td>\r
2952         <td class="msource"><a ext:cls="Ext.Container" ext:member="#remove" href="output/Ext.Container.html#remove">Container</a></td>\r
2953     </tr>\r
2954         <tr class="method-row inherited alt expandable">\r
2955         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2956         <td class="sig">\r
2957         <a id="Ext.grid.PropertyGrid-removeAll"></a>\r
2958             <b>removeAll</b>(&nbsp;<span class="optional" title="Optional">[<code>Boolean autoDestroy</code>]</span>&nbsp;) : Array            <div class="mdesc">\r
2959                         <div class="short">Removes all components from this container.</div>\r
2960             <div class="long">\r
2961                 Removes all components from this container.    <div class="mdetail-params">\r
2962         <strong>Parameters:</strong>\r
2963         <ul><li><code>autoDestroy</code> : Boolean<div class="sub-desc">(optional) True to automatically invoke the removed Component's <a ext:cls="Ext.Component" ext:member="destroy" href="output/Ext.Component.html#destroy">Ext.Component.destroy</a> function.
2964 Defaults to the value of this Container's <a ext:cls="Ext.Container" ext:member="autoDestroy" href="output/Ext.Container.html#autoDestroy">autoDestroy</a> config.</div></li>        </ul>\r
2965         <strong>Returns:</strong>\r
2966         <ul>\r
2967             <li><code>Array</code><div class="sub-desc">Array of the destroyed components</div></li>\r
2968         </ul>\r
2969     </div>\r
2970                 </div>\r
2971                         </div>\r
2972         </td>\r
2973         <td class="msource"><a ext:cls="Ext.Container" ext:member="#removeAll" href="output/Ext.Container.html#removeAll">Container</a></td>\r
2974     </tr>\r
2975         <tr class="method-row inherited expandable">\r
2976         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2977         <td class="sig">\r
2978         <a id="Ext.grid.PropertyGrid-removeClass"></a>\r
2979             <b>removeClass</b>(&nbsp;<code>string cls</code>&nbsp;) : void            <div class="mdesc">\r
2980                         <div class="short">Removes a CSS class from the component's underlying element.</div>\r
2981             <div class="long">\r
2982                 Removes a CSS class from the component's underlying element.    <div class="mdetail-params">\r
2983         <strong>Parameters:</strong>\r
2984         <ul><li><code>cls</code> : string<div class="sub-desc">The CSS class name to remove</div></li>        </ul>\r
2985         <strong>Returns:</strong>\r
2986         <ul>\r
2987             <li><code>void</code></li>\r
2988         </ul>\r
2989     </div>\r
2990                 </div>\r
2991                         </div>\r
2992         </td>\r
2993         <td class="msource"><a ext:cls="Ext.Component" ext:member="#removeClass" href="output/Ext.Component.html#removeClass">Component</a></td>\r
2994     </tr>\r
2995         <tr class="method-row inherited alt expandable">\r
2996         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
2997         <td class="sig">\r
2998         <a id="Ext.grid.PropertyGrid-removeListener"></a>\r
2999             <b>removeListener</b>(&nbsp;<code>String eventName</code>, <code>Function handler</code>, <span class="optional" title="Optional">[<code>Object scope</code>]</span>&nbsp;) : void            <div class="mdesc">\r
3000                         <div class="short">Removes a listener</div>\r
3001             <div class="long">\r
3002                 Removes a listener    <div class="mdetail-params">\r
3003         <strong>Parameters:</strong>\r
3004         <ul><li><code>eventName</code> : String<div class="sub-desc">The type of event to listen for</div></li><li><code>handler</code> : Function<div class="sub-desc">The handler to remove</div></li><li><code>scope</code> : Object<div class="sub-desc">(optional) The scope (this object) for the handler</div></li>        </ul>\r
3005         <strong>Returns:</strong>\r
3006         <ul>\r
3007             <li><code>void</code></li>\r
3008         </ul>\r
3009     </div>\r
3010                 </div>\r
3011                         </div>\r
3012         </td>\r
3013         <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#removeListener" href="output/Ext.util.Observable.html#removeListener">Observable</a></td>\r
3014     </tr>\r
3015         <tr class="method-row inherited expandable">\r
3016         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3017         <td class="sig">\r
3018         <a id="Ext.grid.PropertyGrid-render"></a>\r
3019             <b>render</b>(&nbsp;<span class="optional" title="Optional">[<code>Element/HTMLElement/String container</code>]</span>, <span class="optional" title="Optional">[<code>String/Number position</code>]</span>&nbsp;) : void            <div class="mdesc">\r
3020                         <div class="short">Render this Component into the passed HTML element.
3021 If you are using a Container object to house this Component, then...</div>\r
3022             <div class="long">\r
3023                 <p>Render this Component into the passed HTML element.</p>
3024 <p><b>If you are using a <a ext:cls="Ext.Container" href="output/Ext.Container.html">Container</a> object to house this Component, then
3025 do not use the render method.</b></p>
3026 <p>A Container's child Components are rendered by that Container's
3027 <a ext:cls="Ext.Container" ext:member="layout" href="output/Ext.Container.html#layout">layout</a> manager when the Container is first rendered.</p>
3028 <p>Certain layout managers allow dynamic addition of child components. Those that do
3029 include <a ext:cls="Ext.layout.CardLayout" href="output/Ext.layout.CardLayout.html">Ext.layout.CardLayout</a>, <a ext:cls="Ext.layout.AnchorLayout" href="output/Ext.layout.AnchorLayout.html">Ext.layout.AnchorLayout</a>,
3030 <a ext:cls="Ext.layout.FormLayout" href="output/Ext.layout.FormLayout.html">Ext.layout.FormLayout</a>, <a ext:cls="Ext.layout.TableLayout" href="output/Ext.layout.TableLayout.html">Ext.layout.TableLayout</a>.</p>
3031 <p>If the Container is already rendered when a new child Component is added, you may need to call
3032 the Container's <a ext:cls="Ext.Container" ext:member="doLayout" href="output/Ext.Container.html#doLayout">doLayout</a> to refresh the view which causes any
3033 unrendered child Components to be rendered. This is required so that you can add multiple
3034 child components if needed while only refreshing the layout once.</p>
3035 <p>When creating complex UIs, it is important to remember that sizing and positioning
3036 of child items is the responsibility of the Container's <a ext:cls="Ext.Container" ext:member="layout" href="output/Ext.Container.html#layout">layout</a> manager.
3037 If you expect child items to be sized in response to user interactions, you must
3038 configure the Container with a layout manager which creates and manages the type of layout you
3039 have in mind.</p>
3040 <p><b>Omitting the Container's <a ext:cls="Ext.Container" ext:member="layout" href="output/Ext.Container.html#layout">layout</a> config means that a basic
3041 layout manager is used which does nothing but render child components sequentially into the
3042 Container. No sizing or positioning will be performed in this situation.</b></p>    <div class="mdetail-params">\r
3043         <strong>Parameters:</strong>\r
3044         <ul><li><code>container</code> : Element/HTMLElement/String<div class="sub-desc">(optional) The element this Component should be
3045 rendered into. If it is being created from existing markup, this should be omitted.</div></li><li><code>position</code> : String/Number<div class="sub-desc">(optional) The element ID or DOM node index within the container <b>before</b>
3046 which this component will be inserted (defaults to appending to the end of the container)</div></li>        </ul>\r
3047         <strong>Returns:</strong>\r
3048         <ul>\r
3049             <li><code>void</code></li>\r
3050         </ul>\r
3051     </div>\r
3052                 </div>\r
3053                         </div>\r
3054         </td>\r
3055         <td class="msource"><a ext:cls="Ext.Component" ext:member="#render" href="output/Ext.Component.html#render">Component</a></td>\r
3056     </tr>\r
3057         <tr class="method-row inherited alt expandable">\r
3058         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3059         <td class="sig">\r
3060         <a id="Ext.grid.PropertyGrid-resumeEvents"></a>\r
3061             <b>resumeEvents</b>() : void            <div class="mdesc">\r
3062                         <div class="short">Resume firing events. (see <a ext:cls="Ext.util.Observable" ext:member="suspendEvents" href="output/Ext.util.Observable.html#suspendEvents">suspendEvents</a>)</div>\r
3063             <div class="long">\r
3064                 Resume firing events. (see <a ext:cls="Ext.util.Observable" ext:member="suspendEvents" href="output/Ext.util.Observable.html#suspendEvents">suspendEvents</a>)    <div class="mdetail-params">\r
3065         <strong>Parameters:</strong>\r
3066         <ul><li>None.</li>        </ul>\r
3067         <strong>Returns:</strong>\r
3068         <ul>\r
3069             <li><code>void</code></li>\r
3070         </ul>\r
3071     </div>\r
3072                 </div>\r
3073                         </div>\r
3074         </td>\r
3075         <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#resumeEvents" href="output/Ext.util.Observable.html#resumeEvents">Observable</a></td>\r
3076     </tr>\r
3077         <tr class="method-row inherited expandable">\r
3078         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3079         <td class="sig">\r
3080         <a id="Ext.grid.PropertyGrid-setDisabled"></a>\r
3081             <b>setDisabled</b>(&nbsp;<code>Boolean disabled</code>&nbsp;) : void            <div class="mdesc">\r
3082                         <div class="short">Convenience function for setting disabled/enabled by boolean.</div>\r
3083             <div class="long">\r
3084                 Convenience function for setting disabled/enabled by boolean.    <div class="mdetail-params">\r
3085         <strong>Parameters:</strong>\r
3086         <ul><li><code>disabled</code> : Boolean<div class="sub-desc"></div></li>        </ul>\r
3087         <strong>Returns:</strong>\r
3088         <ul>\r
3089             <li><code>void</code></li>\r
3090         </ul>\r
3091     </div>\r
3092                 </div>\r
3093                         </div>\r
3094         </td>\r
3095         <td class="msource"><a ext:cls="Ext.Component" ext:member="#setDisabled" href="output/Ext.Component.html#setDisabled">Component</a></td>\r
3096     </tr>\r
3097         <tr class="method-row inherited alt expandable">\r
3098         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3099         <td class="sig">\r
3100         <a id="Ext.grid.PropertyGrid-setHeight"></a>\r
3101             <b>setHeight</b>(&nbsp;<code>Number height</code>&nbsp;) : Ext.BoxComponent            <div class="mdesc">\r
3102                         <div class="short">Sets the height of the component.  This method fires the <a ext:cls="Ext.BoxComponent" ext:member="resize" href="output/Ext.BoxComponent.html#resize">resize</a> event.</div>\r
3103             <div class="long">\r
3104                 Sets the height of the component.  This method fires the <a ext:cls="Ext.BoxComponent" ext:member="resize" href="output/Ext.BoxComponent.html#resize">resize</a> event.    <div class="mdetail-params">\r
3105         <strong>Parameters:</strong>\r
3106         <ul><li><code>height</code> : Number<div class="sub-desc">The new height to set</div></li>        </ul>\r
3107         <strong>Returns:</strong>\r
3108         <ul>\r
3109             <li><code>Ext.BoxComponent</code><div class="sub-desc">this</div></li>\r
3110         </ul>\r
3111     </div>\r
3112                 </div>\r
3113                         </div>\r
3114         </td>\r
3115         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#setHeight" href="output/Ext.BoxComponent.html#setHeight">BoxComponent</a></td>\r
3116     </tr>\r
3117         <tr class="method-row inherited expandable">\r
3118         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3119         <td class="sig">\r
3120         <a id="Ext.grid.PropertyGrid-setIconClass"></a>\r
3121             <b>setIconClass</b>(&nbsp;<code>String cls</code>&nbsp;) : void            <div class="mdesc">\r
3122                         <div class="short">Sets the CSS class that provides the icon image for this panel.  This method will replace any existing
3123 icon class if ...</div>\r
3124             <div class="long">\r
3125                 Sets the CSS class that provides the icon image for this panel.  This method will replace any existing
3126 icon class if one has already been set.    <div class="mdetail-params">\r
3127         <strong>Parameters:</strong>\r
3128         <ul><li><code>cls</code> : String<div class="sub-desc">The new CSS class name</div></li>        </ul>\r
3129         <strong>Returns:</strong>\r
3130         <ul>\r
3131             <li><code>void</code></li>\r
3132         </ul>\r
3133     </div>\r
3134                 </div>\r
3135                         </div>\r
3136         </td>\r
3137         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#setIconClass" href="output/Ext.Panel.html#setIconClass">Panel</a></td>\r
3138     </tr>\r
3139         <tr class="method-row inherited alt expandable">\r
3140         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3141         <td class="sig">\r
3142         <a id="Ext.grid.PropertyGrid-setPagePosition"></a>\r
3143             <b>setPagePosition</b>(&nbsp;<code>Number x</code>, <code>Number y</code>&nbsp;) : Ext.BoxComponent            <div class="mdesc">\r
3144                         <div class="short">Sets the page XY position of the component.  To set the left and top instead, use setPosition.
3145 This method fires the ...</div>\r
3146             <div class="long">\r
3147                 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>.
3148 This method fires the <a ext:cls="Ext.BoxComponent" ext:member="move" href="output/Ext.BoxComponent.html#move">move</a> event.    <div class="mdetail-params">\r
3149         <strong>Parameters:</strong>\r
3150         <ul><li><code>x</code> : Number<div class="sub-desc">The new x position</div></li><li><code>y</code> : Number<div class="sub-desc">The new y position</div></li>        </ul>\r
3151         <strong>Returns:</strong>\r
3152         <ul>\r
3153             <li><code>Ext.BoxComponent</code><div class="sub-desc">this</div></li>\r
3154         </ul>\r
3155     </div>\r
3156                 </div>\r
3157                         </div>\r
3158         </td>\r
3159         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#setPagePosition" href="output/Ext.BoxComponent.html#setPagePosition">BoxComponent</a></td>\r
3160     </tr>\r
3161         <tr class="method-row inherited expandable">\r
3162         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3163         <td class="sig">\r
3164         <a id="Ext.grid.PropertyGrid-setPosition"></a>\r
3165             <b>setPosition</b>(&nbsp;<code>Number left</code>, <code>Number top</code>&nbsp;) : Ext.BoxComponent            <div class="mdesc">\r
3166                         <div class="short">Sets the left and top of the component.  To set the page XY position instead, use setPagePosition.
3167 This method fires ...</div>\r
3168             <div class="long">\r
3169                 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>.
3170 This method fires the <a ext:cls="Ext.BoxComponent" ext:member="move" href="output/Ext.BoxComponent.html#move">move</a> event.    <div class="mdetail-params">\r
3171         <strong>Parameters:</strong>\r
3172         <ul><li><code>left</code> : Number<div class="sub-desc">The new left</div></li><li><code>top</code> : Number<div class="sub-desc">The new top</div></li>        </ul>\r
3173         <strong>Returns:</strong>\r
3174         <ul>\r
3175             <li><code>Ext.BoxComponent</code><div class="sub-desc">this</div></li>\r
3176         </ul>\r
3177     </div>\r
3178                 </div>\r
3179                         </div>\r
3180         </td>\r
3181         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#setPosition" href="output/Ext.BoxComponent.html#setPosition">BoxComponent</a></td>\r
3182     </tr>\r
3183         <tr class="method-row inherited alt expandable">\r
3184         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3185         <td class="sig">\r
3186         <a id="Ext.grid.PropertyGrid-setSize"></a>\r
3187             <b>setSize</b>(&nbsp;<code>Number/Object width</code>, <code>Number height</code>&nbsp;) : Ext.BoxComponent            <div class="mdesc">\r
3188                         <div class="short">Sets the width and height of the component.  This method fires the resize event.  This method can accept
3189 either width...</div>\r
3190             <div class="long">\r
3191                 Sets the width and height of the component.  This method fires the <a ext:cls="Ext.BoxComponent" ext:member="resize" href="output/Ext.BoxComponent.html#resize">resize</a> event.  This method can accept
3192 either width and height as separate numeric arguments, or you can pass a size object like {width:10, height:20}.    <div class="mdetail-params">\r
3193         <strong>Parameters:</strong>\r
3194         <ul><li><code>width</code> : Number/Object<div class="sub-desc">The new width to set, or a size object in the format {width, height}</div></li><li><code>height</code> : Number<div class="sub-desc">The new height to set (not required if a size object is passed as the first arg)</div></li>        </ul>\r
3195         <strong>Returns:</strong>\r
3196         <ul>\r
3197             <li><code>Ext.BoxComponent</code><div class="sub-desc">this</div></li>\r
3198         </ul>\r
3199     </div>\r
3200                 </div>\r
3201                         </div>\r
3202         </td>\r
3203         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#setSize" href="output/Ext.BoxComponent.html#setSize">BoxComponent</a></td>\r
3204     </tr>\r
3205         <tr class="method-row expandable">\r
3206         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3207         <td class="sig">\r
3208         <a id="Ext.grid.PropertyGrid-setSource"></a>\r
3209             <b>setSource</b>(&nbsp;<code>Object source</code>&nbsp;) : void            <div class="mdesc">\r
3210                         <div class="short">Sets the source data object containing the property data.  The data object can contain one or more name/value
3211 pairs r...</div>\r
3212             <div class="long">\r
3213                 Sets the source data object containing the property data.  The data object can contain one or more name/value
3214 pairs representing all of the properties of an object to display in the grid, and this data will automatically
3215 be loaded into the grid's <a ext:cls="Ext.grid.PropertyGrid" ext:member="store" href="output/Ext.grid.PropertyGrid.html#store">store</a>.  The values should be supplied in the proper data type if needed,
3216 otherwise string type will be assumed.  If the grid already contains data, this method will replace any
3217 existing data.  See also the <a ext:cls="Ext.grid.PropertyGrid" ext:member="source" href="output/Ext.grid.PropertyGrid.html#source">source</a> config value.  Example usage:
3218 <pre><code>grid.setSource({
3219     <em>"(name)"</em>: <em>"My Object"</em>,
3220     <em>"Created"</em>: <b>new</b> Date(Date.parse(<em>'10/15/2006'</em>)),  <i>// date type</i>
3221     <em>"Available"</em>: false,  <i>// boolean type</i>
3222     <em>"Version"</em>: .01,      <i>// decimal type</i>
3223     <em>"Description"</em>: <em>"A test object"</em>
3224 });</code></pre>    <div class="mdetail-params">\r
3225         <strong>Parameters:</strong>\r
3226         <ul><li><code>source</code> : Object<div class="sub-desc">The data object</div></li>        </ul>\r
3227         <strong>Returns:</strong>\r
3228         <ul>\r
3229             <li><code>void</code></li>\r
3230         </ul>\r
3231     </div>\r
3232                 </div>\r
3233                         </div>\r
3234         </td>\r
3235         <td class="msource">PropertyGrid</td>\r
3236     </tr>\r
3237         <tr class="method-row inherited alt expandable">\r
3238         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3239         <td class="sig">\r
3240         <a id="Ext.grid.PropertyGrid-setTitle"></a>\r
3241             <b>setTitle</b>(&nbsp;<code>String title</code>, <span class="optional" title="Optional">[<code>String iconCls</code>]</span>&nbsp;) : void            <div class="mdesc">\r
3242                         <div class="short">Sets the title text for the panel and optionally the icon class.
3243 In order to be able to set the title, a header eleme...</div>\r
3244             <div class="long">\r
3245                 <p>Sets the title text for the panel and optionally the icon class.</p>
3246 <p>In order to be able to set the title, a header element must have been created
3247 for the Panel. This is triggered either by configuring the Panel with a non-blank title,
3248 or configuring it with <tt><b><a ext:cls="Ext.Panel" ext:member="header" href="output/Ext.Panel.html#header">header</a>: true</b></tt>.</p>    <div class="mdetail-params">\r
3249         <strong>Parameters:</strong>\r
3250         <ul><li><code>title</code> : String<div class="sub-desc">The title text to set</div></li><li><code>iconCls</code> : String<div class="sub-desc">(optional) iconCls A user-defined CSS class that provides the icon image for this panel</div></li>        </ul>\r
3251         <strong>Returns:</strong>\r
3252         <ul>\r
3253             <li><code>void</code></li>\r
3254         </ul>\r
3255     </div>\r
3256                 </div>\r
3257                         </div>\r
3258         </td>\r
3259         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#setTitle" href="output/Ext.Panel.html#setTitle">Panel</a></td>\r
3260     </tr>\r
3261         <tr class="method-row inherited expandable">\r
3262         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3263         <td class="sig">\r
3264         <a id="Ext.grid.PropertyGrid-setVisible"></a>\r
3265             <b>setVisible</b>(&nbsp;<code>Boolean visible</code>&nbsp;) : Ext.Component            <div class="mdesc">\r
3266                         <div class="short">Convenience function to hide or show this component by boolean.</div>\r
3267             <div class="long">\r
3268                 Convenience function to hide or show this component by boolean.    <div class="mdetail-params">\r
3269         <strong>Parameters:</strong>\r
3270         <ul><li><code>visible</code> : Boolean<div class="sub-desc">True to show, false to hide</div></li>        </ul>\r
3271         <strong>Returns:</strong>\r
3272         <ul>\r
3273             <li><code>Ext.Component</code><div class="sub-desc">this</div></li>\r
3274         </ul>\r
3275     </div>\r
3276                 </div>\r
3277                         </div>\r
3278         </td>\r
3279         <td class="msource"><a ext:cls="Ext.Component" ext:member="#setVisible" href="output/Ext.Component.html#setVisible">Component</a></td>\r
3280     </tr>\r
3281         <tr class="method-row inherited alt expandable">\r
3282         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3283         <td class="sig">\r
3284         <a id="Ext.grid.PropertyGrid-setWidth"></a>\r
3285             <b>setWidth</b>(&nbsp;<code>Number width</code>&nbsp;) : Ext.BoxComponent            <div class="mdesc">\r
3286                         <div class="short">Sets the width of the component.  This method fires the <a ext:cls="Ext.BoxComponent" ext:member="resize" href="output/Ext.BoxComponent.html#resize">resize</a> event.</div>\r
3287             <div class="long">\r
3288                 Sets the width of the component.  This method fires the <a ext:cls="Ext.BoxComponent" ext:member="resize" href="output/Ext.BoxComponent.html#resize">resize</a> event.    <div class="mdetail-params">\r
3289         <strong>Parameters:</strong>\r
3290         <ul><li><code>width</code> : Number<div class="sub-desc">The new width to set</div></li>        </ul>\r
3291         <strong>Returns:</strong>\r
3292         <ul>\r
3293             <li><code>Ext.BoxComponent</code><div class="sub-desc">this</div></li>\r
3294         </ul>\r
3295     </div>\r
3296                 </div>\r
3297                         </div>\r
3298         </td>\r
3299         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#setWidth" href="output/Ext.BoxComponent.html#setWidth">BoxComponent</a></td>\r
3300     </tr>\r
3301         <tr class="method-row inherited expandable">\r
3302         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3303         <td class="sig">\r
3304         <a id="Ext.grid.PropertyGrid-show"></a>\r
3305             <b>show</b>() : Ext.Component            <div class="mdesc">\r
3306                         <div class="short">Show this component.</div>\r
3307             <div class="long">\r
3308                 Show this component.    <div class="mdetail-params">\r
3309         <strong>Parameters:</strong>\r
3310         <ul><li>None.</li>        </ul>\r
3311         <strong>Returns:</strong>\r
3312         <ul>\r
3313             <li><code>Ext.Component</code><div class="sub-desc">this</div></li>\r
3314         </ul>\r
3315     </div>\r
3316                 </div>\r
3317                         </div>\r
3318         </td>\r
3319         <td class="msource"><a ext:cls="Ext.Component" ext:member="#show" href="output/Ext.Component.html#show">Component</a></td>\r
3320     </tr>\r
3321         <tr class="method-row inherited alt expandable">\r
3322         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3323         <td class="sig">\r
3324         <a id="Ext.grid.PropertyGrid-startEditing"></a>\r
3325             <b>startEditing</b>(&nbsp;<code>Number rowIndex</code>, <code>Number colIndex</code>&nbsp;) : void            <div class="mdesc">\r
3326                         <div class="short">Starts editing the specified for the specified row/column</div>\r
3327             <div class="long">\r
3328                 Starts editing the specified for the specified row/column    <div class="mdetail-params">\r
3329         <strong>Parameters:</strong>\r
3330         <ul><li><code>rowIndex</code> : Number<div class="sub-desc"></div></li><li><code>colIndex</code> : Number<div class="sub-desc"></div></li>        </ul>\r
3331         <strong>Returns:</strong>\r
3332         <ul>\r
3333             <li><code>void</code></li>\r
3334         </ul>\r
3335     </div>\r
3336                 </div>\r
3337                         </div>\r
3338         </td>\r
3339         <td class="msource"><a ext:cls="Ext.grid.EditorGridPanel" ext:member="#startEditing" href="output/Ext.grid.EditorGridPanel.html#startEditing">EditorGridPanel</a></td>\r
3340     </tr>\r
3341         <tr class="method-row inherited expandable">\r
3342         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3343         <td class="sig">\r
3344         <a id="Ext.grid.PropertyGrid-stopEditing"></a>\r
3345             <b>stopEditing</b>(&nbsp;<span class="optional" title="Optional">[<code>Boolean cancel</code>]</span>&nbsp;) : void            <div class="mdesc">\r
3346                         <div class="short">Stops any active editing</div>\r
3347             <div class="long">\r
3348                 Stops any active editing    <div class="mdetail-params">\r
3349         <strong>Parameters:</strong>\r
3350         <ul><li><code>cancel</code> : Boolean<div class="sub-desc">(optional) True to cancel any changes</div></li>        </ul>\r
3351         <strong>Returns:</strong>\r
3352         <ul>\r
3353             <li><code>void</code></li>\r
3354         </ul>\r
3355     </div>\r
3356                 </div>\r
3357                         </div>\r
3358         </td>\r
3359         <td class="msource"><a ext:cls="Ext.grid.EditorGridPanel" ext:member="#stopEditing" href="output/Ext.grid.EditorGridPanel.html#stopEditing">EditorGridPanel</a></td>\r
3360     </tr>\r
3361         <tr class="method-row inherited alt expandable">\r
3362         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3363         <td class="sig">\r
3364         <a id="Ext.grid.PropertyGrid-suspendEvents"></a>\r
3365             <b>suspendEvents</b>() : void            <div class="mdesc">\r
3366                         <div class="short">Suspend the firing of all events. (see <a ext:cls="Ext.util.Observable" ext:member="resumeEvents" href="output/Ext.util.Observable.html#resumeEvents">resumeEvents</a>)</div>\r
3367             <div class="long">\r
3368                 Suspend the firing of all events. (see <a ext:cls="Ext.util.Observable" ext:member="resumeEvents" href="output/Ext.util.Observable.html#resumeEvents">resumeEvents</a>)    <div class="mdetail-params">\r
3369         <strong>Parameters:</strong>\r
3370         <ul><li>None.</li>        </ul>\r
3371         <strong>Returns:</strong>\r
3372         <ul>\r
3373             <li><code>void</code></li>\r
3374         </ul>\r
3375     </div>\r
3376                 </div>\r
3377                         </div>\r
3378         </td>\r
3379         <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#suspendEvents" href="output/Ext.util.Observable.html#suspendEvents">Observable</a></td>\r
3380     </tr>\r
3381         <tr class="method-row inherited expandable">\r
3382         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3383         <td class="sig">\r
3384         <a id="Ext.grid.PropertyGrid-syncSize"></a>\r
3385             <b>syncSize</b>() : Ext.BoxComponent            <div class="mdesc">\r
3386                         <div class="short">Force the component's size to recalculate based on the underlying element's current height and width.</div>\r
3387             <div class="long">\r
3388                 Force the component's size to recalculate based on the underlying element's current height and width.    <div class="mdetail-params">\r
3389         <strong>Parameters:</strong>\r
3390         <ul><li>None.</li>        </ul>\r
3391         <strong>Returns:</strong>\r
3392         <ul>\r
3393             <li><code>Ext.BoxComponent</code><div class="sub-desc">this</div></li>\r
3394         </ul>\r
3395     </div>\r
3396                 </div>\r
3397                         </div>\r
3398         </td>\r
3399         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#syncSize" href="output/Ext.BoxComponent.html#syncSize">BoxComponent</a></td>\r
3400     </tr>\r
3401         <tr class="method-row inherited alt expandable">\r
3402         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3403         <td class="sig">\r
3404         <a id="Ext.grid.PropertyGrid-toggleCollapse"></a>\r
3405             <b>toggleCollapse</b>(&nbsp;<code>Boolean animate</code>&nbsp;) : Ext.Panel            <div class="mdesc">\r
3406                         <div class="short">Shortcut for performing an <a ext:cls="Ext.Panel" ext:member="expand" href="output/Ext.Panel.html#expand">expand</a> or <a ext:cls="Ext.Panel" ext:member="collapse" href="output/Ext.Panel.html#collapse">collapse</a> based on the current state of the panel.</div>\r
3407             <div class="long">\r
3408                 Shortcut for performing an <a ext:cls="Ext.Panel" ext:member="expand" href="output/Ext.Panel.html#expand">expand</a> or <a ext:cls="Ext.Panel" ext:member="collapse" href="output/Ext.Panel.html#collapse">collapse</a> based on the current state of the panel.    <div class="mdetail-params">\r
3409         <strong>Parameters:</strong>\r
3410         <ul><li><code>animate</code> : Boolean<div class="sub-desc">True to animate the transition, else false (defaults to the value of the
3411 <a ext:cls="Ext.Panel" ext:member="animCollapse" href="output/Ext.Panel.html#animCollapse">animCollapse</a> panel config)</div></li>        </ul>\r
3412         <strong>Returns:</strong>\r
3413         <ul>\r
3414             <li><code>Ext.Panel</code><div class="sub-desc">this</div></li>\r
3415         </ul>\r
3416     </div>\r
3417                 </div>\r
3418                         </div>\r
3419         </td>\r
3420         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#toggleCollapse" href="output/Ext.Panel.html#toggleCollapse">Panel</a></td>\r
3421     </tr>\r
3422         <tr class="method-row inherited expandable">\r
3423         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3424         <td class="sig">\r
3425         <a id="Ext.grid.PropertyGrid-un"></a>\r
3426             <b>un</b>(&nbsp;<code>String eventName</code>, <code>Function handler</code>, <span class="optional" title="Optional">[<code>Object scope</code>]</span>&nbsp;) : void            <div class="mdesc">\r
3427                         <div class="short">Removes a listener (shorthand for removeListener)</div>\r
3428             <div class="long">\r
3429                 Removes a listener (shorthand for removeListener)    <div class="mdetail-params">\r
3430         <strong>Parameters:</strong>\r
3431         <ul><li><code>eventName</code> : String<div class="sub-desc">The type of event to listen for</div></li><li><code>handler</code> : Function<div class="sub-desc">The handler to remove</div></li><li><code>scope</code> : Object<div class="sub-desc">(optional) The scope (this object) for the handler</div></li>        </ul>\r
3432         <strong>Returns:</strong>\r
3433         <ul>\r
3434             <li><code>void</code></li>\r
3435         </ul>\r
3436     </div>\r
3437                 </div>\r
3438                         </div>\r
3439         </td>\r
3440         <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#un" href="output/Ext.util.Observable.html#un">Observable</a></td>\r
3441     </tr>\r
3442         <tr class="method-row inherited alt expandable">\r
3443         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3444         <td class="sig">\r
3445         <a id="Ext.grid.PropertyGrid-updateBox"></a>\r
3446             <b>updateBox</b>(&nbsp;<code>Object box</code>&nbsp;) : Ext.BoxComponent            <div class="mdesc">\r
3447                         <div class="short">Sets the current box measurements of the component's underlying element.</div>\r
3448             <div class="long">\r
3449                 Sets the current box measurements of the component's underlying element.    <div class="mdetail-params">\r
3450         <strong>Parameters:</strong>\r
3451         <ul><li><code>box</code> : Object<div class="sub-desc">An object in the format {x, y, width, height}</div></li>        </ul>\r
3452         <strong>Returns:</strong>\r
3453         <ul>\r
3454             <li><code>Ext.BoxComponent</code><div class="sub-desc">this</div></li>\r
3455         </ul>\r
3456     </div>\r
3457                 </div>\r
3458                         </div>\r
3459         </td>\r
3460         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#updateBox" href="output/Ext.BoxComponent.html#updateBox">BoxComponent</a></td>\r
3461     </tr>\r
3462             </table>
3463                 <a id="Ext.grid.PropertyGrid-events"></a>
3464         <h2>Public Events</h2>
3465                 <table cellspacing="0" class="member-table">
3466             <tr>
3467                 <th class="sig-header" colspan="2">Event</th>
3468                 <th class="msource-header">Defined By</th>
3469             </tr>
3470                 <tr class="event-row inherited expandable">\r
3471         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3472         <td class="sig">\r
3473         <a id="Ext.grid.PropertyGrid-activate"></a>\r
3474             <b>activate</b> : (&nbsp;<code>Ext.Panel p</code>&nbsp;)            <div class="mdesc">\r
3475                         <div class="short">Fires after the Panel has been visually activated.
3476 Note that Panels do not directly support being activated, but some...</div>\r
3477             <div class="long">\r
3478                 Fires after the Panel has been visually activated.
3479 Note that Panels do not directly support being activated, but some Panel subclasses
3480 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
3481 activate and deactivate events under the control of the TabPanel.    <div class="mdetail-params">\r
3482         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3483         <ul><li><code>p</code> : Ext.Panel<div class="sub-desc">The Panel that has been activated.</div></li>        </ul>\r
3484     </div>\r
3485                 </div>\r
3486                         </div>\r
3487         </td>\r
3488         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#event-activate" href="output/Ext.Panel.html#event-activate">Panel</a></td>\r
3489     </tr>\r
3490         <tr class="event-row inherited alt expandable">\r
3491         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3492         <td class="sig">\r
3493         <a id="Ext.grid.PropertyGrid-add"></a>\r
3494             <b>add</b> : (&nbsp;<code>Ext.Container this</code>, <code>Ext.Component component</code>, <code>Number index</code>&nbsp;)            <div class="mdesc">\r
3495                         <div class="short">Fires after any <a ext:cls="Ext.Component" href="output/Ext.Component.html">Ext.Component</a> is added or inserted into the container.</div>\r
3496             <div class="long">\r
3497                 Fires after any <a ext:cls="Ext.Component" href="output/Ext.Component.html">Ext.Component</a> is added or inserted into the container.    <div class="mdetail-params">\r
3498         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3499         <ul><li><code>this</code> : Ext.Container<div class="sub-desc"></div></li><li><code>component</code> : Ext.Component<div class="sub-desc">The component that was added</div></li><li><code>index</code> : Number<div class="sub-desc">The index at which the component was added to the container's items collection</div></li>        </ul>\r
3500     </div>\r
3501                 </div>\r
3502                         </div>\r
3503         </td>\r
3504         <td class="msource"><a ext:cls="Ext.Container" ext:member="#event-add" href="output/Ext.Container.html#event-add">Container</a></td>\r
3505     </tr>\r
3506         <tr class="event-row inherited expandable">\r
3507         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3508         <td class="sig">\r
3509         <a id="Ext.grid.PropertyGrid-afteredit"></a>\r
3510             <b>afteredit</b> : (&nbsp;<code>Object e</code>&nbsp;)            <div class="mdesc">\r
3511                         <div class="short">Fires after a cell is edited. The edit event object has the following properties 
3512
3513 grid - This grid
3514 record - The reco...</div>\r
3515             <div class="long">\r
3516                 Fires after a cell is edited. The edit event object has the following properties <br />
3517 <ul style="padding:5px;padding-left:16px;">
3518 <li>grid - This grid</li>
3519 <li>record - The record being edited</li>
3520 <li>field - The field name being edited</li>
3521 <li>value - The value being set</li>
3522 <li>originalValue - The original value for the field, before the edit.</li>
3523 <li>row - The grid row index</li>
3524 <li>column - The grid column index</li>
3525 </ul>    <div class="mdetail-params">\r
3526         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3527         <ul><li><code>e</code> : Object<div class="sub-desc">An edit event (see above for description)</div></li>        </ul>\r
3528     </div>\r
3529                 </div>\r
3530                         </div>\r
3531         </td>\r
3532         <td class="msource"><a ext:cls="Ext.grid.EditorGridPanel" ext:member="#event-afteredit" href="output/Ext.grid.EditorGridPanel.html#event-afteredit">EditorGridPanel</a></td>\r
3533     </tr>\r
3534         <tr class="event-row inherited alt expandable">\r
3535         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3536         <td class="sig">\r
3537         <a id="Ext.grid.PropertyGrid-afterlayout"></a>\r
3538             <b>afterlayout</b> : (&nbsp;<code>Ext.Container this</code>, <code>ContainerLayout layout</code>&nbsp;)            <div class="mdesc">\r
3539                         <div class="short">Fires when the components in this container are arranged by the associated layout manager.</div>\r
3540             <div class="long">\r
3541                 Fires when the components in this container are arranged by the associated layout manager.    <div class="mdetail-params">\r
3542         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3543         <ul><li><code>this</code> : Ext.Container<div class="sub-desc"></div></li><li><code>layout</code> : ContainerLayout<div class="sub-desc">The ContainerLayout implementation for this container</div></li>        </ul>\r
3544     </div>\r
3545                 </div>\r
3546                         </div>\r
3547         </td>\r
3548         <td class="msource"><a ext:cls="Ext.Container" ext:member="#event-afterlayout" href="output/Ext.Container.html#event-afterlayout">Container</a></td>\r
3549     </tr>\r
3550         <tr class="event-row inherited expandable">\r
3551         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3552         <td class="sig">\r
3553         <a id="Ext.grid.PropertyGrid-beforeadd"></a>\r
3554             <b>beforeadd</b> : (&nbsp;<code>Ext.Container this</code>, <code>Ext.Component component</code>, <code>Number index</code>&nbsp;)            <div class="mdesc">\r
3555                         <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.
3556 A handler can return false to cancel the add.</div>\r
3557             <div class="long">\r
3558                 Fires before any <a ext:cls="Ext.Component" href="output/Ext.Component.html">Ext.Component</a> is added or inserted into the container.
3559 A handler can return false to cancel the add.    <div class="mdetail-params">\r
3560         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3561         <ul><li><code>this</code> : Ext.Container<div class="sub-desc"></div></li><li><code>component</code> : Ext.Component<div class="sub-desc">The component being added</div></li><li><code>index</code> : Number<div class="sub-desc">The index at which the component will be added to the container's items collection</div></li>        </ul>\r
3562     </div>\r
3563                 </div>\r
3564                         </div>\r
3565         </td>\r
3566         <td class="msource"><a ext:cls="Ext.Container" ext:member="#event-beforeadd" href="output/Ext.Container.html#event-beforeadd">Container</a></td>\r
3567     </tr>\r
3568         <tr class="event-row inherited alt expandable">\r
3569         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3570         <td class="sig">\r
3571         <a id="Ext.grid.PropertyGrid-beforeclose"></a>\r
3572             <b>beforeclose</b> : (&nbsp;<code>Ext.Panel p</code>&nbsp;)            <div class="mdesc">\r
3573                         <div class="short">Fires before the Panel is closed.  Note that Panels do not directly support being closed, but some
3574 Panel subclasses d...</div>\r
3575             <div class="long">\r
3576                 Fires before the Panel is closed.  Note that Panels do not directly support being closed, but some
3577 Panel subclasses do (like <a ext:cls="Ext.Window" href="output/Ext.Window.html">Ext.Window</a>).  This event only applies to such subclasses.
3578 A handler can return false to cancel the close.    <div class="mdetail-params">\r
3579         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3580         <ul><li><code>p</code> : Ext.Panel<div class="sub-desc">The Panel being closed.</div></li>        </ul>\r
3581     </div>\r
3582                 </div>\r
3583                         </div>\r
3584         </td>\r
3585         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#event-beforeclose" href="output/Ext.Panel.html#event-beforeclose">Panel</a></td>\r
3586     </tr>\r
3587         <tr class="event-row inherited expandable">\r
3588         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3589         <td class="sig">\r
3590         <a id="Ext.grid.PropertyGrid-beforecollapse"></a>\r
3591             <b>beforecollapse</b> : (&nbsp;<code>Ext.Panel p</code>, <code>Boolean animate</code>&nbsp;)            <div class="mdesc">\r
3592                         <div class="short">Fires before the Panel is collapsed.  A handler can return false to cancel the collapse.</div>\r
3593             <div class="long">\r
3594                 Fires before the Panel is collapsed.  A handler can return false to cancel the collapse.    <div class="mdetail-params">\r
3595         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3596         <ul><li><code>p</code> : Ext.Panel<div class="sub-desc">the Panel being collapsed.</div></li><li><code>animate</code> : Boolean<div class="sub-desc">True if the collapse is animated, else false.</div></li>        </ul>\r
3597     </div>\r
3598                 </div>\r
3599                         </div>\r
3600         </td>\r
3601         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#event-beforecollapse" href="output/Ext.Panel.html#event-beforecollapse">Panel</a></td>\r
3602     </tr>\r
3603         <tr class="event-row inherited alt expandable">\r
3604         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3605         <td class="sig">\r
3606         <a id="Ext.grid.PropertyGrid-beforedestroy"></a>\r
3607             <b>beforedestroy</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">\r
3608                         <div class="short">Fires before the component is destroyed. Return false to stop the destroy.</div>\r
3609             <div class="long">\r
3610                 Fires before the component is destroyed. Return false to stop the destroy.    <div class="mdetail-params">\r
3611         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3612         <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>\r
3613     </div>\r
3614                 </div>\r
3615                         </div>\r
3616         </td>\r
3617         <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-beforedestroy" href="output/Ext.Component.html#event-beforedestroy">Component</a></td>\r
3618     </tr>\r
3619         <tr class="event-row inherited expandable">\r
3620         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3621         <td class="sig">\r
3622         <a id="Ext.grid.PropertyGrid-beforeedit"></a>\r
3623             <b>beforeedit</b> : (&nbsp;<code>Object e</code>&nbsp;)            <div class="mdesc">\r
3624                         <div class="short">Fires before cell editing is triggered. The edit event object has the following properties 
3625
3626 grid - This grid
3627 record ...</div>\r
3628             <div class="long">\r
3629                 Fires before cell editing is triggered. The edit event object has the following properties <br />
3630 <ul style="padding:5px;padding-left:16px;">
3631 <li>grid - This grid</li>
3632 <li>record - The record being edited</li>
3633 <li>field - The field name being edited</li>
3634 <li>value - The value for the field being edited.</li>
3635 <li>row - The grid row index</li>
3636 <li>column - The grid column index</li>
3637 <li>cancel - Set this to true to cancel the edit or return false from your handler.</li>
3638 </ul>    <div class="mdetail-params">\r
3639         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3640         <ul><li><code>e</code> : Object<div class="sub-desc">An edit event (see above for description)</div></li>        </ul>\r
3641     </div>\r
3642                 </div>\r
3643                         </div>\r
3644         </td>\r
3645         <td class="msource"><a ext:cls="Ext.grid.EditorGridPanel" ext:member="#event-beforeedit" href="output/Ext.grid.EditorGridPanel.html#event-beforeedit">EditorGridPanel</a></td>\r
3646     </tr>\r
3647         <tr class="event-row inherited alt expandable">\r
3648         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3649         <td class="sig">\r
3650         <a id="Ext.grid.PropertyGrid-beforeexpand"></a>\r
3651             <b>beforeexpand</b> : (&nbsp;<code>Ext.Panel p</code>, <code>Boolean animate</code>&nbsp;)            <div class="mdesc">\r
3652                         <div class="short">Fires before the Panel is expanded.  A handler can return false to cancel the expand.</div>\r
3653             <div class="long">\r
3654                 Fires before the Panel is expanded.  A handler can return false to cancel the expand.    <div class="mdetail-params">\r
3655         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3656         <ul><li><code>p</code> : Ext.Panel<div class="sub-desc">The Panel being expanded.</div></li><li><code>animate</code> : Boolean<div class="sub-desc">True if the expand is animated, else false.</div></li>        </ul>\r
3657     </div>\r
3658                 </div>\r
3659                         </div>\r
3660         </td>\r
3661         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#event-beforeexpand" href="output/Ext.Panel.html#event-beforeexpand">Panel</a></td>\r
3662     </tr>\r
3663         <tr class="event-row inherited expandable">\r
3664         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3665         <td class="sig">\r
3666         <a id="Ext.grid.PropertyGrid-beforehide"></a>\r
3667             <b>beforehide</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">\r
3668                         <div class="short">Fires before the component is hidden. Return false to stop the hide.</div>\r
3669             <div class="long">\r
3670                 Fires before the component is hidden. Return false to stop the hide.    <div class="mdetail-params">\r
3671         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3672         <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>\r
3673     </div>\r
3674                 </div>\r
3675                         </div>\r
3676         </td>\r
3677         <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-beforehide" href="output/Ext.Component.html#event-beforehide">Component</a></td>\r
3678     </tr>\r
3679         <tr class="event-row alt expandable">\r
3680         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3681         <td class="sig">\r
3682         <a id="Ext.grid.PropertyGrid-beforepropertychange"></a>\r
3683             <b>beforepropertychange</b> : (&nbsp;<code>Object source</code>, <code>String recordId</code>, <code>Mixed value</code>, <code>Mixed oldValue</code>&nbsp;)            <div class="mdesc">\r
3684                         <div class="short">Fires before a property value changes.  Handlers can return false to cancel the property change
3685 (this will internally...</div>\r
3686             <div class="long">\r
3687                 Fires before a property value changes.  Handlers can return false to cancel the property change
3688 (this will internally call <a ext:cls="Ext.data.Record" ext:member="reject" href="output/Ext.data.Record.html#reject">Ext.data.Record.reject</a> on the property's record).    <div class="mdetail-params">\r
3689         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3690         <ul><li><code>source</code> : Object<div class="sub-desc">The source data object for the grid (corresponds to the same object passed in
3691 as the <a ext:cls="Ext.grid.PropertyGrid" ext:member="source" href="output/Ext.grid.PropertyGrid.html#source">source</a> config property).</div></li><li><code>recordId</code> : String<div class="sub-desc">The record's id in the data store</div></li><li><code>value</code> : Mixed<div class="sub-desc">The current edited property value</div></li><li><code>oldValue</code> : Mixed<div class="sub-desc">The original property value prior to editing</div></li>        </ul>\r
3692     </div>\r
3693                 </div>\r
3694                         </div>\r
3695         </td>\r
3696         <td class="msource">PropertyGrid</td>\r
3697     </tr>\r
3698         <tr class="event-row inherited expandable">\r
3699         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3700         <td class="sig">\r
3701         <a id="Ext.grid.PropertyGrid-beforeremove"></a>\r
3702             <b>beforeremove</b> : (&nbsp;<code>Ext.Container this</code>, <code>Ext.Component component</code>&nbsp;)            <div class="mdesc">\r
3703                         <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
3704 false to cancel the remove.</div>\r
3705             <div class="long">\r
3706                 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
3707 false to cancel the remove.    <div class="mdetail-params">\r
3708         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3709         <ul><li><code>this</code> : Ext.Container<div class="sub-desc"></div></li><li><code>component</code> : Ext.Component<div class="sub-desc">The component being removed</div></li>        </ul>\r
3710     </div>\r
3711                 </div>\r
3712                         </div>\r
3713         </td>\r
3714         <td class="msource"><a ext:cls="Ext.Container" ext:member="#event-beforeremove" href="output/Ext.Container.html#event-beforeremove">Container</a></td>\r
3715     </tr>\r
3716         <tr class="event-row inherited alt expandable">\r
3717         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3718         <td class="sig">\r
3719         <a id="Ext.grid.PropertyGrid-beforerender"></a>\r
3720             <b>beforerender</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">\r
3721                         <div class="short">Fires before the component is rendered. Return false to stop the render.</div>\r
3722             <div class="long">\r
3723                 Fires before the component is rendered. Return false to stop the render.    <div class="mdetail-params">\r
3724         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3725         <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>\r
3726     </div>\r
3727                 </div>\r
3728                         </div>\r
3729         </td>\r
3730         <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-beforerender" href="output/Ext.Component.html#event-beforerender">Component</a></td>\r
3731     </tr>\r
3732         <tr class="event-row inherited expandable">\r
3733         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3734         <td class="sig">\r
3735         <a id="Ext.grid.PropertyGrid-beforeshow"></a>\r
3736             <b>beforeshow</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">\r
3737                         <div class="short">Fires before the component is shown. Return false to stop the show.</div>\r
3738             <div class="long">\r
3739                 Fires before the component is shown. Return false to stop the show.    <div class="mdetail-params">\r
3740         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3741         <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>\r
3742     </div>\r
3743                 </div>\r
3744                         </div>\r
3745         </td>\r
3746         <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-beforeshow" href="output/Ext.Component.html#event-beforeshow">Component</a></td>\r
3747     </tr>\r
3748         <tr class="event-row inherited alt expandable">\r
3749         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3750         <td class="sig">\r
3751         <a id="Ext.grid.PropertyGrid-beforestaterestore"></a>\r
3752             <b>beforestaterestore</b> : (&nbsp;<code>Ext.Component this</code>, <code>Object state</code>&nbsp;)            <div class="mdesc">\r
3753                         <div class="short">Fires before the state of the component is restored. Return false to stop the restore.</div>\r
3754             <div class="long">\r
3755                 Fires before the state of the component is restored. Return false to stop the restore.    <div class="mdetail-params">\r
3756         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3757         <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li><li><code>state</code> : Object<div class="sub-desc">The hash of state values</div></li>        </ul>\r
3758     </div>\r
3759                 </div>\r
3760                         </div>\r
3761         </td>\r
3762         <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-beforestaterestore" href="output/Ext.Component.html#event-beforestaterestore">Component</a></td>\r
3763     </tr>\r
3764         <tr class="event-row inherited expandable">\r
3765         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3766         <td class="sig">\r
3767         <a id="Ext.grid.PropertyGrid-beforestatesave"></a>\r
3768             <b>beforestatesave</b> : (&nbsp;<code>Ext.Component this</code>, <code>Object state</code>&nbsp;)            <div class="mdesc">\r
3769                         <div class="short">Fires before the state of the component is saved to the configured state provider. Return false to stop the save.</div>\r
3770             <div class="long">\r
3771                 Fires before the state of the component is saved to the configured state provider. Return false to stop the save.    <div class="mdetail-params">\r
3772         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3773         <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li><li><code>state</code> : Object<div class="sub-desc">The hash of state values</div></li>        </ul>\r
3774     </div>\r
3775                 </div>\r
3776                         </div>\r
3777         </td>\r
3778         <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-beforestatesave" href="output/Ext.Component.html#event-beforestatesave">Component</a></td>\r
3779     </tr>\r
3780         <tr class="event-row inherited alt expandable">\r
3781         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3782         <td class="sig">\r
3783         <a id="Ext.grid.PropertyGrid-bodyresize"></a>\r
3784             <b>bodyresize</b> : (&nbsp;<code>Ext.Panel p</code>, <code>Number width</code>, <code>Number height</code>&nbsp;)            <div class="mdesc">\r
3785                         <div class="short">Fires after the Panel has been resized.</div>\r
3786             <div class="long">\r
3787                 Fires after the Panel has been resized.    <div class="mdetail-params">\r
3788         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3789         <ul><li><code>p</code> : Ext.Panel<div class="sub-desc">the Panel which has been resized.</div></li><li><code>width</code> : Number<div class="sub-desc">The Panel's new width.</div></li><li><code>height</code> : Number<div class="sub-desc">The Panel's new height.</div></li>        </ul>\r
3790     </div>\r
3791                 </div>\r
3792                         </div>\r
3793         </td>\r
3794         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#event-bodyresize" href="output/Ext.Panel.html#event-bodyresize">Panel</a></td>\r
3795     </tr>\r
3796         <tr class="event-row inherited expandable">\r
3797         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3798         <td class="sig">\r
3799         <a id="Ext.grid.PropertyGrid-bodyscroll"></a>\r
3800             <b>bodyscroll</b> : (&nbsp;<code>Number scrollLeft</code>, <code>Number scrollTop</code>&nbsp;)            <div class="mdesc">\r
3801                         <div class="short">Fires when the body element is scrolled</div>\r
3802             <div class="long">\r
3803                 Fires when the body element is scrolled    <div class="mdetail-params">\r
3804         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3805         <ul><li><code>scrollLeft</code> : Number<div class="sub-desc"></div></li><li><code>scrollTop</code> : Number<div class="sub-desc"></div></li>        </ul>\r
3806     </div>\r
3807                 </div>\r
3808                         </div>\r
3809         </td>\r
3810         <td class="msource"><a ext:cls="Ext.grid.GridPanel" ext:member="#event-bodyscroll" href="output/Ext.grid.GridPanel.html#event-bodyscroll">GridPanel</a></td>\r
3811     </tr>\r
3812         <tr class="event-row inherited alt expandable">\r
3813         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3814         <td class="sig">\r
3815         <a id="Ext.grid.PropertyGrid-cellclick"></a>\r
3816             <b>cellclick</b> : (&nbsp;<code>Grid this</code>, <code>Number rowIndex</code>, <code>Number columnIndex</code>, <code>Ext.EventObject e</code>&nbsp;)            <div class="mdesc">\r
3817                         <div class="short">Fires when a cell is clicked.
3818 The data for the cell is drawn from the Record
3819 for this row. To access the data in the ...</div>\r
3820             <div class="long">\r
3821                 Fires when a cell is clicked.
3822 The data for the cell is drawn from the <a ext:cls="Ext.data.Record" href="output/Ext.data.Record.html">Record</a>
3823 for this row. To access the data in the listener function use the
3824 following technique:
3825 <pre><code>function(grid, rowIndex, columnIndex, e) {
3826         <b>var</b> record = grid.getStore().getAt(rowIndex);  <i>// Get the Record</i>
3827         <b>var</b> fieldName = grid.getColumnModel().getDataIndex(columnIndex); <i>// Get field name</i>
3828         <b>var</b> data = record.get(fieldName);
3829     }</code></pre>    <div class="mdetail-params">\r
3830         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3831         <ul><li><code>this</code> : Grid<div class="sub-desc"></div></li><li><code>rowIndex</code> : Number<div class="sub-desc"></div></li><li><code>columnIndex</code> : Number<div class="sub-desc"></div></li><li><code>e</code> : Ext.EventObject<div class="sub-desc"></div></li>        </ul>\r
3832     </div>\r
3833                 </div>\r
3834                         </div>\r
3835         </td>\r
3836         <td class="msource"><a ext:cls="Ext.grid.GridPanel" ext:member="#event-cellclick" href="output/Ext.grid.GridPanel.html#event-cellclick">GridPanel</a></td>\r
3837     </tr>\r
3838         <tr class="event-row inherited expandable">\r
3839         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3840         <td class="sig">\r
3841         <a id="Ext.grid.PropertyGrid-cellcontextmenu"></a>\r
3842             <b>cellcontextmenu</b> : (&nbsp;<code>Grid this</code>, <code>Number rowIndex</code>, <code>Number cellIndex</code>, <code>Ext.EventObject e</code>&nbsp;)            <div class="mdesc">\r
3843                         <div class="short">Fires when a cell is right clicked</div>\r
3844             <div class="long">\r
3845                 Fires when a cell is right clicked    <div class="mdetail-params">\r
3846         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3847         <ul><li><code>this</code> : Grid<div class="sub-desc"></div></li><li><code>rowIndex</code> : Number<div class="sub-desc"></div></li><li><code>cellIndex</code> : Number<div class="sub-desc"></div></li><li><code>e</code> : Ext.EventObject<div class="sub-desc"></div></li>        </ul>\r
3848     </div>\r
3849                 </div>\r
3850                         </div>\r
3851         </td>\r
3852         <td class="msource"><a ext:cls="Ext.grid.GridPanel" ext:member="#event-cellcontextmenu" href="output/Ext.grid.GridPanel.html#event-cellcontextmenu">GridPanel</a></td>\r
3853     </tr>\r
3854         <tr class="event-row inherited alt expandable">\r
3855         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3856         <td class="sig">\r
3857         <a id="Ext.grid.PropertyGrid-celldblclick"></a>\r
3858             <b>celldblclick</b> : (&nbsp;<code>Grid this</code>, <code>Number rowIndex</code>, <code>Number columnIndex</code>, <code>Ext.EventObject e</code>&nbsp;)            <div class="mdesc">\r
3859                         <div class="short">Fires when a cell is double clicked</div>\r
3860             <div class="long">\r
3861                 Fires when a cell is double clicked    <div class="mdetail-params">\r
3862         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3863         <ul><li><code>this</code> : Grid<div class="sub-desc"></div></li><li><code>rowIndex</code> : Number<div class="sub-desc"></div></li><li><code>columnIndex</code> : Number<div class="sub-desc"></div></li><li><code>e</code> : Ext.EventObject<div class="sub-desc"></div></li>        </ul>\r
3864     </div>\r
3865                 </div>\r
3866                         </div>\r
3867         </td>\r
3868         <td class="msource"><a ext:cls="Ext.grid.GridPanel" ext:member="#event-celldblclick" href="output/Ext.grid.GridPanel.html#event-celldblclick">GridPanel</a></td>\r
3869     </tr>\r
3870         <tr class="event-row inherited expandable">\r
3871         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3872         <td class="sig">\r
3873         <a id="Ext.grid.PropertyGrid-cellmousedown"></a>\r
3874             <b>cellmousedown</b> : (&nbsp;<code>Grid this</code>, <code>Number rowIndex</code>, <code>Number columnIndex</code>, <code>Ext.EventObject e</code>&nbsp;)            <div class="mdesc">\r
3875                         <div class="short">Fires before a cell is clicked</div>\r
3876             <div class="long">\r
3877                 Fires before a cell is clicked    <div class="mdetail-params">\r
3878         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3879         <ul><li><code>this</code> : Grid<div class="sub-desc"></div></li><li><code>rowIndex</code> : Number<div class="sub-desc"></div></li><li><code>columnIndex</code> : Number<div class="sub-desc"></div></li><li><code>e</code> : Ext.EventObject<div class="sub-desc"></div></li>        </ul>\r
3880     </div>\r
3881                 </div>\r
3882                         </div>\r
3883         </td>\r
3884         <td class="msource"><a ext:cls="Ext.grid.GridPanel" ext:member="#event-cellmousedown" href="output/Ext.grid.GridPanel.html#event-cellmousedown">GridPanel</a></td>\r
3885     </tr>\r
3886         <tr class="event-row inherited alt expandable">\r
3887         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3888         <td class="sig">\r
3889         <a id="Ext.grid.PropertyGrid-click"></a>\r
3890             <b>click</b> : (&nbsp;<code>Ext.EventObject e</code>&nbsp;)            <div class="mdesc">\r
3891                         <div class="short">The raw click event for the entire grid.</div>\r
3892             <div class="long">\r
3893                 The raw click event for the entire grid.    <div class="mdetail-params">\r
3894         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3895         <ul><li><code>e</code> : Ext.EventObject<div class="sub-desc"></div></li>        </ul>\r
3896     </div>\r
3897                 </div>\r
3898                         </div>\r
3899         </td>\r
3900         <td class="msource"><a ext:cls="Ext.grid.GridPanel" ext:member="#event-click" href="output/Ext.grid.GridPanel.html#event-click">GridPanel</a></td>\r
3901     </tr>\r
3902         <tr class="event-row inherited expandable">\r
3903         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3904         <td class="sig">\r
3905         <a id="Ext.grid.PropertyGrid-close"></a>\r
3906             <b>close</b> : (&nbsp;<code>Ext.Panel p</code>&nbsp;)            <div class="mdesc">\r
3907                         <div class="short">Fires after the Panel is closed.  Note that Panels do not directly support being closed, but some
3908 Panel subclasses do...</div>\r
3909             <div class="long">\r
3910                 Fires after the Panel is closed.  Note that Panels do not directly support being closed, but some
3911 Panel subclasses do (like <a ext:cls="Ext.Window" href="output/Ext.Window.html">Ext.Window</a>).    <div class="mdetail-params">\r
3912         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3913         <ul><li><code>p</code> : Ext.Panel<div class="sub-desc">The Panel that has been closed.</div></li>        </ul>\r
3914     </div>\r
3915                 </div>\r
3916                         </div>\r
3917         </td>\r
3918         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#event-close" href="output/Ext.Panel.html#event-close">Panel</a></td>\r
3919     </tr>\r
3920         <tr class="event-row inherited alt expandable">\r
3921         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3922         <td class="sig">\r
3923         <a id="Ext.grid.PropertyGrid-collapse"></a>\r
3924             <b>collapse</b> : (&nbsp;<code>Ext.Panel p</code>&nbsp;)            <div class="mdesc">\r
3925                         <div class="short">Fires after the Panel has been collapsed.</div>\r
3926             <div class="long">\r
3927                 Fires after the Panel has been collapsed.    <div class="mdetail-params">\r
3928         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3929         <ul><li><code>p</code> : Ext.Panel<div class="sub-desc">the Panel that has been collapsed.</div></li>        </ul>\r
3930     </div>\r
3931                 </div>\r
3932                         </div>\r
3933         </td>\r
3934         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#event-collapse" href="output/Ext.Panel.html#event-collapse">Panel</a></td>\r
3935     </tr>\r
3936         <tr class="event-row inherited expandable">\r
3937         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3938         <td class="sig">\r
3939         <a id="Ext.grid.PropertyGrid-columnmove"></a>\r
3940             <b>columnmove</b> : (&nbsp;<code>Number oldIndex</code>, <code>Number newIndex</code>&nbsp;)            <div class="mdesc">\r
3941                         <div class="short">Fires when the user moves a column</div>\r
3942             <div class="long">\r
3943                 Fires when the user moves a column    <div class="mdetail-params">\r
3944         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3945         <ul><li><code>oldIndex</code> : Number<div class="sub-desc"></div></li><li><code>newIndex</code> : Number<div class="sub-desc"></div></li>        </ul>\r
3946     </div>\r
3947                 </div>\r
3948                         </div>\r
3949         </td>\r
3950         <td class="msource"><a ext:cls="Ext.grid.GridPanel" ext:member="#event-columnmove" href="output/Ext.grid.GridPanel.html#event-columnmove">GridPanel</a></td>\r
3951     </tr>\r
3952         <tr class="event-row inherited alt expandable">\r
3953         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3954         <td class="sig">\r
3955         <a id="Ext.grid.PropertyGrid-columnresize"></a>\r
3956             <b>columnresize</b> : (&nbsp;<code>Number columnIndex</code>, <code>Number newSize</code>&nbsp;)            <div class="mdesc">\r
3957                         <div class="short">Fires when the user resizes a column</div>\r
3958             <div class="long">\r
3959                 Fires when the user resizes a column    <div class="mdetail-params">\r
3960         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3961         <ul><li><code>columnIndex</code> : Number<div class="sub-desc"></div></li><li><code>newSize</code> : Number<div class="sub-desc"></div></li>        </ul>\r
3962     </div>\r
3963                 </div>\r
3964                         </div>\r
3965         </td>\r
3966         <td class="msource"><a ext:cls="Ext.grid.GridPanel" ext:member="#event-columnresize" href="output/Ext.grid.GridPanel.html#event-columnresize">GridPanel</a></td>\r
3967     </tr>\r
3968         <tr class="event-row inherited expandable">\r
3969         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3970         <td class="sig">\r
3971         <a id="Ext.grid.PropertyGrid-contextmenu"></a>\r
3972             <b>contextmenu</b> : (&nbsp;<code>Ext.EventObject e</code>&nbsp;)            <div class="mdesc">\r
3973                         <div class="short">The raw contextmenu event for the entire grid.</div>\r
3974             <div class="long">\r
3975                 The raw contextmenu event for the entire grid.    <div class="mdetail-params">\r
3976         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3977         <ul><li><code>e</code> : Ext.EventObject<div class="sub-desc"></div></li>        </ul>\r
3978     </div>\r
3979                 </div>\r
3980                         </div>\r
3981         </td>\r
3982         <td class="msource"><a ext:cls="Ext.grid.GridPanel" ext:member="#event-contextmenu" href="output/Ext.grid.GridPanel.html#event-contextmenu">GridPanel</a></td>\r
3983     </tr>\r
3984         <tr class="event-row inherited alt expandable">\r
3985         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
3986         <td class="sig">\r
3987         <a id="Ext.grid.PropertyGrid-dblclick"></a>\r
3988             <b>dblclick</b> : (&nbsp;<code>Ext.EventObject e</code>&nbsp;)            <div class="mdesc">\r
3989                         <div class="short">The raw dblclick event for the entire grid.</div>\r
3990             <div class="long">\r
3991                 The raw dblclick event for the entire grid.    <div class="mdetail-params">\r
3992         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
3993         <ul><li><code>e</code> : Ext.EventObject<div class="sub-desc"></div></li>        </ul>\r
3994     </div>\r
3995                 </div>\r
3996                         </div>\r
3997         </td>\r
3998         <td class="msource"><a ext:cls="Ext.grid.GridPanel" ext:member="#event-dblclick" href="output/Ext.grid.GridPanel.html#event-dblclick">GridPanel</a></td>\r
3999     </tr>\r
4000         <tr class="event-row inherited expandable">\r
4001         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
4002         <td class="sig">\r
4003         <a id="Ext.grid.PropertyGrid-deactivate"></a>\r
4004             <b>deactivate</b> : (&nbsp;<code>Ext.Panel p</code>&nbsp;)            <div class="mdesc">\r
4005                         <div class="short">Fires after the Panel has been visually deactivated.
4006 Note that Panels do not directly support being deactivated, but ...</div>\r
4007             <div class="long">\r
4008                 Fires after the Panel has been visually deactivated.
4009 Note that Panels do not directly support being deactivated, but some Panel subclasses
4010 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
4011 activate and deactivate events under the control of the TabPanel.    <div class="mdetail-params">\r
4012         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
4013         <ul><li><code>p</code> : Ext.Panel<div class="sub-desc">The Panel that has been deactivated.</div></li>        </ul>\r
4014     </div>\r
4015                 </div>\r
4016                         </div>\r
4017         </td>\r
4018         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#event-deactivate" href="output/Ext.Panel.html#event-deactivate">Panel</a></td>\r
4019     </tr>\r
4020         <tr class="event-row inherited alt expandable">\r
4021         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
4022         <td class="sig">\r
4023         <a id="Ext.grid.PropertyGrid-destroy"></a>\r
4024             <b>destroy</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">\r
4025                         <div class="short">Fires after the component is destroyed.</div>\r
4026             <div class="long">\r
4027                 Fires after the component is destroyed.    <div class="mdetail-params">\r
4028         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
4029         <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>\r
4030     </div>\r
4031                 </div>\r
4032                         </div>\r
4033         </td>\r
4034         <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-destroy" href="output/Ext.Component.html#event-destroy">Component</a></td>\r
4035     </tr>\r
4036         <tr class="event-row inherited expandable">\r
4037         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
4038         <td class="sig">\r
4039         <a id="Ext.grid.PropertyGrid-disable"></a>\r
4040             <b>disable</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">\r
4041                         <div class="short">Fires after the component is disabled.</div>\r
4042             <div class="long">\r
4043                 Fires after the component is disabled.    <div class="mdetail-params">\r
4044         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
4045         <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>\r
4046     </div>\r
4047                 </div>\r
4048                         </div>\r
4049         </td>\r
4050         <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-disable" href="output/Ext.Component.html#event-disable">Component</a></td>\r
4051     </tr>\r
4052         <tr class="event-row inherited alt expandable">\r
4053         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
4054         <td class="sig">\r
4055         <a id="Ext.grid.PropertyGrid-enable"></a>\r
4056             <b>enable</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">\r
4057                         <div class="short">Fires after the component is enabled.</div>\r
4058             <div class="long">\r
4059                 Fires after the component is enabled.    <div class="mdetail-params">\r
4060         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
4061         <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>\r
4062     </div>\r
4063                 </div>\r
4064                         </div>\r
4065         </td>\r
4066         <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-enable" href="output/Ext.Component.html#event-enable">Component</a></td>\r
4067     </tr>\r
4068         <tr class="event-row inherited expandable">\r
4069         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
4070         <td class="sig">\r
4071         <a id="Ext.grid.PropertyGrid-expand"></a>\r
4072             <b>expand</b> : (&nbsp;<code>Ext.Panel p</code>&nbsp;)            <div class="mdesc">\r
4073                         <div class="short">Fires after the Panel has been expanded.</div>\r
4074             <div class="long">\r
4075                 Fires after the Panel has been expanded.    <div class="mdetail-params">\r
4076         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
4077         <ul><li><code>p</code> : Ext.Panel<div class="sub-desc">The Panel that has been expanded.</div></li>        </ul>\r
4078     </div>\r
4079                 </div>\r
4080                         </div>\r
4081         </td>\r
4082         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#event-expand" href="output/Ext.Panel.html#event-expand">Panel</a></td>\r
4083     </tr>\r
4084         <tr class="event-row inherited alt expandable">\r
4085         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
4086         <td class="sig">\r
4087         <a id="Ext.grid.PropertyGrid-headerclick"></a>\r
4088             <b>headerclick</b> : (&nbsp;<code>Grid this</code>, <code>Number columnIndex</code>, <code>Ext.EventObject e</code>&nbsp;)            <div class="mdesc">\r
4089                         <div class="short">Fires when a header is clicked</div>\r
4090             <div class="long">\r
4091                 Fires when a header is clicked    <div class="mdetail-params">\r
4092         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
4093         <ul><li><code>this</code> : Grid<div class="sub-desc"></div></li><li><code>columnIndex</code> : Number<div class="sub-desc"></div></li><li><code>e</code> : Ext.EventObject<div class="sub-desc"></div></li>        </ul>\r
4094     </div>\r
4095                 </div>\r
4096                         </div>\r
4097         </td>\r
4098         <td class="msource"><a ext:cls="Ext.grid.GridPanel" ext:member="#event-headerclick" href="output/Ext.grid.GridPanel.html#event-headerclick">GridPanel</a></td>\r
4099     </tr>\r
4100         <tr class="event-row inherited expandable">\r
4101         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
4102         <td class="sig">\r
4103         <a id="Ext.grid.PropertyGrid-headercontextmenu"></a>\r
4104             <b>headercontextmenu</b> : (&nbsp;<code>Grid this</code>, <code>Number columnIndex</code>, <code>Ext.EventObject e</code>&nbsp;)            <div class="mdesc">\r
4105                         <div class="short">Fires when a header is right clicked</div>\r
4106             <div class="long">\r
4107                 Fires when a header is right clicked    <div class="mdetail-params">\r
4108         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
4109         <ul><li><code>this</code> : Grid<div class="sub-desc"></div></li><li><code>columnIndex</code> : Number<div class="sub-desc"></div></li><li><code>e</code> : Ext.EventObject<div class="sub-desc"></div></li>        </ul>\r
4110     </div>\r
4111                 </div>\r
4112                         </div>\r
4113         </td>\r
4114         <td class="msource"><a ext:cls="Ext.grid.GridPanel" ext:member="#event-headercontextmenu" href="output/Ext.grid.GridPanel.html#event-headercontextmenu">GridPanel</a></td>\r
4115     </tr>\r
4116         <tr class="event-row inherited alt expandable">\r
4117         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
4118         <td class="sig">\r
4119         <a id="Ext.grid.PropertyGrid-headerdblclick"></a>\r
4120             <b>headerdblclick</b> : (&nbsp;<code>Grid this</code>, <code>Number columnIndex</code>, <code>Ext.EventObject e</code>&nbsp;)            <div class="mdesc">\r
4121                         <div class="short">Fires when a header cell is double clicked</div>\r
4122             <div class="long">\r
4123                 Fires when a header cell is double clicked    <div class="mdetail-params">\r
4124         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
4125         <ul><li><code>this</code> : Grid<div class="sub-desc"></div></li><li><code>columnIndex</code> : Number<div class="sub-desc"></div></li><li><code>e</code> : Ext.EventObject<div class="sub-desc"></div></li>        </ul>\r
4126     </div>\r
4127                 </div>\r
4128                         </div>\r
4129         </td>\r
4130         <td class="msource"><a ext:cls="Ext.grid.GridPanel" ext:member="#event-headerdblclick" href="output/Ext.grid.GridPanel.html#event-headerdblclick">GridPanel</a></td>\r
4131     </tr>\r
4132         <tr class="event-row inherited expandable">\r
4133         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
4134         <td class="sig">\r
4135         <a id="Ext.grid.PropertyGrid-headermousedown"></a>\r
4136             <b>headermousedown</b> : (&nbsp;<code>Grid this</code>, <code>Number columnIndex</code>, <code>Ext.EventObject e</code>&nbsp;)            <div class="mdesc">\r
4137                         <div class="short">Fires before a header is clicked</div>\r
4138             <div class="long">\r
4139                 Fires before a header is clicked    <div class="mdetail-params">\r
4140         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
4141         <ul><li><code>this</code> : Grid<div class="sub-desc"></div></li><li><code>columnIndex</code> : Number<div class="sub-desc"></div></li><li><code>e</code> : Ext.EventObject<div class="sub-desc"></div></li>        </ul>\r
4142     </div>\r
4143                 </div>\r
4144                         </div>\r
4145         </td>\r
4146         <td class="msource"><a ext:cls="Ext.grid.GridPanel" ext:member="#event-headermousedown" href="output/Ext.grid.GridPanel.html#event-headermousedown">GridPanel</a></td>\r
4147     </tr>\r
4148         <tr class="event-row inherited alt expandable">\r
4149         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
4150         <td class="sig">\r
4151         <a id="Ext.grid.PropertyGrid-hide"></a>\r
4152             <b>hide</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">\r
4153                         <div class="short">Fires after the component is hidden.</div>\r
4154             <div class="long">\r
4155                 Fires after the component is hidden.    <div class="mdetail-params">\r
4156         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
4157         <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>\r
4158     </div>\r
4159                 </div>\r
4160                         </div>\r
4161         </td>\r
4162         <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-hide" href="output/Ext.Component.html#event-hide">Component</a></td>\r
4163     </tr>\r
4164         <tr class="event-row inherited expandable">\r
4165         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
4166         <td class="sig">\r
4167         <a id="Ext.grid.PropertyGrid-iconchange"></a>\r
4168             <b>iconchange</b> : (&nbsp;<code>Ext.Panel p</code>, <code>String The</code>, <code>String The</code>&nbsp;)            <div class="mdesc">\r
4169                         <div class="short">Fires after the Panel icon class has been set or changed.</div>\r
4170             <div class="long">\r
4171                 Fires after the Panel icon class has been set or changed.    <div class="mdetail-params">\r
4172         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
4173         <ul><li><code>p</code> : Ext.Panel<div class="sub-desc">the Panel which has had its icon class changed.</div></li><li><code>The</code> : String<div class="sub-desc">new icon class.</div></li><li><code>The</code> : String<div class="sub-desc">old icon class.</div></li>        </ul>\r
4174     </div>\r
4175                 </div>\r
4176                         </div>\r
4177         </td>\r
4178         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#event-iconchange" href="output/Ext.Panel.html#event-iconchange">Panel</a></td>\r
4179     </tr>\r
4180         <tr class="event-row inherited alt expandable">\r
4181         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
4182         <td class="sig">\r
4183         <a id="Ext.grid.PropertyGrid-keydown"></a>\r
4184             <b>keydown</b> : (&nbsp;<code>Ext.EventObject e</code>&nbsp;)            <div class="mdesc">\r
4185                         <div class="short">The raw keydown event for the entire grid.</div>\r
4186             <div class="long">\r
4187                 The raw keydown event for the entire grid.    <div class="mdetail-params">\r
4188         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
4189         <ul><li><code>e</code> : Ext.EventObject<div class="sub-desc"></div></li>        </ul>\r
4190     </div>\r
4191                 </div>\r
4192                         </div>\r
4193         </td>\r
4194         <td class="msource"><a ext:cls="Ext.grid.GridPanel" ext:member="#event-keydown" href="output/Ext.grid.GridPanel.html#event-keydown">GridPanel</a></td>\r
4195     </tr>\r
4196         <tr class="event-row inherited expandable">\r
4197         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
4198         <td class="sig">\r
4199         <a id="Ext.grid.PropertyGrid-keypress"></a>\r
4200             <b>keypress</b> : (&nbsp;<code>Ext.EventObject e</code>&nbsp;)            <div class="mdesc">\r
4201                         <div class="short">The raw keypress event for the entire grid.</div>\r
4202             <div class="long">\r
4203                 The raw keypress event for the entire grid.    <div class="mdetail-params">\r
4204         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
4205         <ul><li><code>e</code> : Ext.EventObject<div class="sub-desc"></div></li>        </ul>\r
4206     </div>\r
4207                 </div>\r
4208                         </div>\r
4209         </td>\r
4210         <td class="msource"><a ext:cls="Ext.grid.GridPanel" ext:member="#event-keypress" href="output/Ext.grid.GridPanel.html#event-keypress">GridPanel</a></td>\r
4211     </tr>\r
4212         <tr class="event-row inherited alt expandable">\r
4213         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
4214         <td class="sig">\r
4215         <a id="Ext.grid.PropertyGrid-mousedown"></a>\r
4216             <b>mousedown</b> : (&nbsp;<code>Ext.EventObject e</code>&nbsp;)            <div class="mdesc">\r
4217                         <div class="short">The raw mousedown event for the entire grid.</div>\r
4218             <div class="long">\r
4219                 The raw mousedown event for the entire grid.    <div class="mdetail-params">\r
4220         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
4221         <ul><li><code>e</code> : Ext.EventObject<div class="sub-desc"></div></li>        </ul>\r
4222     </div>\r
4223                 </div>\r
4224                         </div>\r
4225         </td>\r
4226         <td class="msource"><a ext:cls="Ext.grid.GridPanel" ext:member="#event-mousedown" href="output/Ext.grid.GridPanel.html#event-mousedown">GridPanel</a></td>\r
4227     </tr>\r
4228         <tr class="event-row inherited expandable">\r
4229         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
4230         <td class="sig">\r
4231         <a id="Ext.grid.PropertyGrid-mouseout"></a>\r
4232             <b>mouseout</b> : (&nbsp;<code>Ext.EventObject e</code>&nbsp;)            <div class="mdesc">\r
4233                         <div class="short">The raw mouseout event for the entire grid.</div>\r
4234             <div class="long">\r
4235                 The raw mouseout event for the entire grid.    <div class="mdetail-params">\r
4236         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
4237         <ul><li><code>e</code> : Ext.EventObject<div class="sub-desc"></div></li>        </ul>\r
4238     </div>\r
4239                 </div>\r
4240                         </div>\r
4241         </td>\r
4242         <td class="msource"><a ext:cls="Ext.grid.GridPanel" ext:member="#event-mouseout" href="output/Ext.grid.GridPanel.html#event-mouseout">GridPanel</a></td>\r
4243     </tr>\r
4244         <tr class="event-row inherited alt expandable">\r
4245         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
4246         <td class="sig">\r
4247         <a id="Ext.grid.PropertyGrid-mouseover"></a>\r
4248             <b>mouseover</b> : (&nbsp;<code>Ext.EventObject e</code>&nbsp;)            <div class="mdesc">\r
4249                         <div class="short">The raw mouseover event for the entire grid.</div>\r
4250             <div class="long">\r
4251                 The raw mouseover event for the entire grid.    <div class="mdetail-params">\r
4252         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
4253         <ul><li><code>e</code> : Ext.EventObject<div class="sub-desc"></div></li>        </ul>\r
4254     </div>\r
4255                 </div>\r
4256                         </div>\r
4257         </td>\r
4258         <td class="msource"><a ext:cls="Ext.grid.GridPanel" ext:member="#event-mouseover" href="output/Ext.grid.GridPanel.html#event-mouseover">GridPanel</a></td>\r
4259     </tr>\r
4260         <tr class="event-row inherited expandable">\r
4261         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
4262         <td class="sig">\r
4263         <a id="Ext.grid.PropertyGrid-mouseup"></a>\r
4264             <b>mouseup</b> : (&nbsp;<code>Ext.EventObject e</code>&nbsp;)            <div class="mdesc">\r
4265                         <div class="short">The raw mouseup event for the entire grid.</div>\r
4266             <div class="long">\r
4267                 The raw mouseup event for the entire grid.    <div class="mdetail-params">\r
4268         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
4269         <ul><li><code>e</code> : Ext.EventObject<div class="sub-desc"></div></li>        </ul>\r
4270     </div>\r
4271                 </div>\r
4272                         </div>\r
4273         </td>\r
4274         <td class="msource"><a ext:cls="Ext.grid.GridPanel" ext:member="#event-mouseup" href="output/Ext.grid.GridPanel.html#event-mouseup">GridPanel</a></td>\r
4275     </tr>\r
4276         <tr class="event-row inherited alt expandable">\r
4277         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
4278         <td class="sig">\r
4279         <a id="Ext.grid.PropertyGrid-move"></a>\r
4280             <b>move</b> : (&nbsp;<code>Ext.Component this</code>, <code>Number x</code>, <code>Number y</code>&nbsp;)            <div class="mdesc">\r
4281                         <div class="short">Fires after the component is moved.</div>\r
4282             <div class="long">\r
4283                 Fires after the component is moved.    <div class="mdetail-params">\r
4284         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
4285         <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li><li><code>x</code> : Number<div class="sub-desc">The new x position</div></li><li><code>y</code> : Number<div class="sub-desc">The new y position</div></li>        </ul>\r
4286     </div>\r
4287                 </div>\r
4288                         </div>\r
4289         </td>\r
4290         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#event-move" href="output/Ext.BoxComponent.html#event-move">BoxComponent</a></td>\r
4291     </tr>\r
4292         <tr class="event-row expandable">\r
4293         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
4294         <td class="sig">\r
4295         <a id="Ext.grid.PropertyGrid-propertychange"></a>\r
4296             <b>propertychange</b> : (&nbsp;<code>Object source</code>, <code>String recordId</code>, <code>Mixed value</code>, <code>Mixed oldValue</code>&nbsp;)            <div class="mdesc">\r
4297                         <div class="short">Fires after a property value has changed.</div>\r
4298             <div class="long">\r
4299                 Fires after a property value has changed.    <div class="mdetail-params">\r
4300         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
4301         <ul><li><code>source</code> : Object<div class="sub-desc">The source data object for the grid (corresponds to the same object passed in
4302 as the <a ext:cls="Ext.grid.PropertyGrid" ext:member="source" href="output/Ext.grid.PropertyGrid.html#source">source</a> config property).</div></li><li><code>recordId</code> : String<div class="sub-desc">The record's id in the data store</div></li><li><code>value</code> : Mixed<div class="sub-desc">The current edited property value</div></li><li><code>oldValue</code> : Mixed<div class="sub-desc">The original property value prior to editing</div></li>        </ul>\r
4303     </div>\r
4304                 </div>\r
4305                         </div>\r
4306         </td>\r
4307         <td class="msource">PropertyGrid</td>\r
4308     </tr>\r
4309         <tr class="event-row inherited alt expandable">\r
4310         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
4311         <td class="sig">\r
4312         <a id="Ext.grid.PropertyGrid-remove"></a>\r
4313             <b>remove</b> : (&nbsp;<code>Ext.Container this</code>, <code>Ext.Component component</code>&nbsp;)            <div class="mdesc">\r
4314                         <div class="short">Fires after any <a ext:cls="Ext.Component" href="output/Ext.Component.html">Ext.Component</a> is removed from the container.</div>\r
4315             <div class="long">\r
4316                 Fires after any <a ext:cls="Ext.Component" href="output/Ext.Component.html">Ext.Component</a> is removed from the container.    <div class="mdetail-params">\r
4317         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
4318         <ul><li><code>this</code> : Ext.Container<div class="sub-desc"></div></li><li><code>component</code> : Ext.Component<div class="sub-desc">The component that was removed</div></li>        </ul>\r
4319     </div>\r
4320                 </div>\r
4321                         </div>\r
4322         </td>\r
4323         <td class="msource"><a ext:cls="Ext.Container" ext:member="#event-remove" href="output/Ext.Container.html#event-remove">Container</a></td>\r
4324     </tr>\r
4325         <tr class="event-row inherited expandable">\r
4326         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
4327         <td class="sig">\r
4328         <a id="Ext.grid.PropertyGrid-render"></a>\r
4329             <b>render</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">\r
4330                         <div class="short">Fires after the component is rendered.</div>\r
4331             <div class="long">\r
4332                 Fires after the component is rendered.    <div class="mdetail-params">\r
4333         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
4334         <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>\r
4335     </div>\r
4336                 </div>\r
4337                         </div>\r
4338         </td>\r
4339         <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-render" href="output/Ext.Component.html#event-render">Component</a></td>\r
4340     </tr>\r
4341         <tr class="event-row inherited alt expandable">\r
4342         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
4343         <td class="sig">\r
4344         <a id="Ext.grid.PropertyGrid-resize"></a>\r
4345             <b>resize</b> : (&nbsp;<code>Ext.Component this</code>, <code>Number adjWidth</code>, <code>Number adjHeight</code>, <code>Number rawWidth</code>, <code>Number rawHeight</code>&nbsp;)            <div class="mdesc">\r
4346                         <div class="short">Fires after the component is resized.</div>\r
4347             <div class="long">\r
4348                 Fires after the component is resized.    <div class="mdetail-params">\r
4349         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
4350         <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li><li><code>adjWidth</code> : Number<div class="sub-desc">The box-adjusted width that was set</div></li><li><code>adjHeight</code> : Number<div class="sub-desc">The box-adjusted height that was set</div></li><li><code>rawWidth</code> : Number<div class="sub-desc">The width that was originally specified</div></li><li><code>rawHeight</code> : Number<div class="sub-desc">The height that was originally specified</div></li>        </ul>\r
4351     </div>\r
4352                 </div>\r
4353                         </div>\r
4354         </td>\r
4355         <td class="msource"><a ext:cls="Ext.BoxComponent" ext:member="#event-resize" href="output/Ext.BoxComponent.html#event-resize">BoxComponent</a></td>\r
4356     </tr>\r
4357         <tr class="event-row inherited expandable">\r
4358         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
4359         <td class="sig">\r
4360         <a id="Ext.grid.PropertyGrid-rowclick"></a>\r
4361             <b>rowclick</b> : (&nbsp;<code>Grid this</code>, <code>Number rowIndex</code>, <code>Ext.EventObject e</code>&nbsp;)            <div class="mdesc">\r
4362                         <div class="short">Fires when a row is clicked</div>\r
4363             <div class="long">\r
4364                 Fires when a row is clicked    <div class="mdetail-params">\r
4365         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
4366         <ul><li><code>this</code> : Grid<div class="sub-desc"></div></li><li><code>rowIndex</code> : Number<div class="sub-desc"></div></li><li><code>e</code> : Ext.EventObject<div class="sub-desc"></div></li>        </ul>\r
4367     </div>\r
4368                 </div>\r
4369                         </div>\r
4370         </td>\r
4371         <td class="msource"><a ext:cls="Ext.grid.GridPanel" ext:member="#event-rowclick" href="output/Ext.grid.GridPanel.html#event-rowclick">GridPanel</a></td>\r
4372     </tr>\r
4373         <tr class="event-row inherited alt expandable">\r
4374         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
4375         <td class="sig">\r
4376         <a id="Ext.grid.PropertyGrid-rowcontextmenu"></a>\r
4377             <b>rowcontextmenu</b> : (&nbsp;<code>Grid this</code>, <code>Number rowIndex</code>, <code>Ext.EventObject e</code>&nbsp;)            <div class="mdesc">\r
4378                         <div class="short">Fires when a row is right clicked</div>\r
4379             <div class="long">\r
4380                 Fires when a row is right clicked    <div class="mdetail-params">\r
4381         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
4382         <ul><li><code>this</code> : Grid<div class="sub-desc"></div></li><li><code>rowIndex</code> : Number<div class="sub-desc"></div></li><li><code>e</code> : Ext.EventObject<div class="sub-desc"></div></li>        </ul>\r
4383     </div>\r
4384                 </div>\r
4385                         </div>\r
4386         </td>\r
4387         <td class="msource"><a ext:cls="Ext.grid.GridPanel" ext:member="#event-rowcontextmenu" href="output/Ext.grid.GridPanel.html#event-rowcontextmenu">GridPanel</a></td>\r
4388     </tr>\r
4389         <tr class="event-row inherited expandable">\r
4390         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
4391         <td class="sig">\r
4392         <a id="Ext.grid.PropertyGrid-rowdblclick"></a>\r
4393             <b>rowdblclick</b> : (&nbsp;<code>Grid this</code>, <code>Number rowIndex</code>, <code>Ext.EventObject e</code>&nbsp;)            <div class="mdesc">\r
4394                         <div class="short">Fires when a row is double clicked</div>\r
4395             <div class="long">\r
4396                 Fires when a row is double clicked    <div class="mdetail-params">\r
4397         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
4398         <ul><li><code>this</code> : Grid<div class="sub-desc"></div></li><li><code>rowIndex</code> : Number<div class="sub-desc"></div></li><li><code>e</code> : Ext.EventObject<div class="sub-desc"></div></li>        </ul>\r
4399     </div>\r
4400                 </div>\r
4401                         </div>\r
4402         </td>\r
4403         <td class="msource"><a ext:cls="Ext.grid.GridPanel" ext:member="#event-rowdblclick" href="output/Ext.grid.GridPanel.html#event-rowdblclick">GridPanel</a></td>\r
4404     </tr>\r
4405         <tr class="event-row inherited alt expandable">\r
4406         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
4407         <td class="sig">\r
4408         <a id="Ext.grid.PropertyGrid-rowmousedown"></a>\r
4409             <b>rowmousedown</b> : (&nbsp;<code>Grid this</code>, <code>Number rowIndex</code>, <code>Ext.EventObject e</code>&nbsp;)            <div class="mdesc">\r
4410                         <div class="short">Fires before a row is clicked</div>\r
4411             <div class="long">\r
4412                 Fires before a row is clicked    <div class="mdetail-params">\r
4413         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
4414         <ul><li><code>this</code> : Grid<div class="sub-desc"></div></li><li><code>rowIndex</code> : Number<div class="sub-desc"></div></li><li><code>e</code> : Ext.EventObject<div class="sub-desc"></div></li>        </ul>\r
4415     </div>\r
4416                 </div>\r
4417                         </div>\r
4418         </td>\r
4419         <td class="msource"><a ext:cls="Ext.grid.GridPanel" ext:member="#event-rowmousedown" href="output/Ext.grid.GridPanel.html#event-rowmousedown">GridPanel</a></td>\r
4420     </tr>\r
4421         <tr class="event-row inherited expandable">\r
4422         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
4423         <td class="sig">\r
4424         <a id="Ext.grid.PropertyGrid-show"></a>\r
4425             <b>show</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">\r
4426                         <div class="short">Fires after the component is shown.</div>\r
4427             <div class="long">\r
4428                 Fires after the component is shown.    <div class="mdetail-params">\r
4429         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
4430         <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>\r
4431     </div>\r
4432                 </div>\r
4433                         </div>\r
4434         </td>\r
4435         <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-show" href="output/Ext.Component.html#event-show">Component</a></td>\r
4436     </tr>\r
4437         <tr class="event-row inherited alt expandable">\r
4438         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
4439         <td class="sig">\r
4440         <a id="Ext.grid.PropertyGrid-sortchange"></a>\r
4441             <b>sortchange</b> : (&nbsp;<code>Grid this</code>, <code>Object sortInfo</code>&nbsp;)            <div class="mdesc">\r
4442                         <div class="short">Fires when the grid's store sort changes</div>\r
4443             <div class="long">\r
4444                 Fires when the grid's store sort changes    <div class="mdetail-params">\r
4445         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
4446         <ul><li><code>this</code> : Grid<div class="sub-desc"></div></li><li><code>sortInfo</code> : Object<div class="sub-desc">An object with the keys field and direction</div></li>        </ul>\r
4447     </div>\r
4448                 </div>\r
4449                         </div>\r
4450         </td>\r
4451         <td class="msource"><a ext:cls="Ext.grid.GridPanel" ext:member="#event-sortchange" href="output/Ext.grid.GridPanel.html#event-sortchange">GridPanel</a></td>\r
4452     </tr>\r
4453         <tr class="event-row inherited expandable">\r
4454         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
4455         <td class="sig">\r
4456         <a id="Ext.grid.PropertyGrid-staterestore"></a>\r
4457             <b>staterestore</b> : (&nbsp;<code>Ext.Component this</code>, <code>Object state</code>&nbsp;)            <div class="mdesc">\r
4458                         <div class="short">Fires after the state of the component is restored.</div>\r
4459             <div class="long">\r
4460                 Fires after the state of the component is restored.    <div class="mdetail-params">\r
4461         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
4462         <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li><li><code>state</code> : Object<div class="sub-desc">The hash of state values</div></li>        </ul>\r
4463     </div>\r
4464                 </div>\r
4465                         </div>\r
4466         </td>\r
4467         <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-staterestore" href="output/Ext.Component.html#event-staterestore">Component</a></td>\r
4468     </tr>\r
4469         <tr class="event-row inherited alt expandable">\r
4470         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
4471         <td class="sig">\r
4472         <a id="Ext.grid.PropertyGrid-statesave"></a>\r
4473             <b>statesave</b> : (&nbsp;<code>Ext.Component this</code>, <code>Object state</code>&nbsp;)            <div class="mdesc">\r
4474                         <div class="short">Fires after the state of the component is saved to the configured state provider.</div>\r
4475             <div class="long">\r
4476                 Fires after the state of the component is saved to the configured state provider.    <div class="mdetail-params">\r
4477         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
4478         <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li><li><code>state</code> : Object<div class="sub-desc">The hash of state values</div></li>        </ul>\r
4479     </div>\r
4480                 </div>\r
4481                         </div>\r
4482         </td>\r
4483         <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-statesave" href="output/Ext.Component.html#event-statesave">Component</a></td>\r
4484     </tr>\r
4485         <tr class="event-row inherited expandable">\r
4486         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
4487         <td class="sig">\r
4488         <a id="Ext.grid.PropertyGrid-titlechange"></a>\r
4489             <b>titlechange</b> : (&nbsp;<code>Ext.Panel p</code>, <code>String The</code>&nbsp;)            <div class="mdesc">\r
4490                         <div class="short">Fires after the Panel title has been set or changed.</div>\r
4491             <div class="long">\r
4492                 Fires after the Panel title has been set or changed.    <div class="mdetail-params">\r
4493         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
4494         <ul><li><code>p</code> : Ext.Panel<div class="sub-desc">the Panel which has had its title changed.</div></li><li><code>The</code> : String<div class="sub-desc">new title.</div></li>        </ul>\r
4495     </div>\r
4496                 </div>\r
4497                         </div>\r
4498         </td>\r
4499         <td class="msource"><a ext:cls="Ext.Panel" ext:member="#event-titlechange" href="output/Ext.Panel.html#event-titlechange">Panel</a></td>\r
4500     </tr>\r
4501         <tr class="event-row inherited alt expandable">\r
4502         <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>\r
4503         <td class="sig">\r
4504         <a id="Ext.grid.PropertyGrid-validateedit"></a>\r
4505             <b>validateedit</b> : (&nbsp;<code>Object e</code>&nbsp;)            <div class="mdesc">\r
4506                         <div class="short">Fires after a cell is edited, but before the value is set in the record. Return false
4507 to cancel the change. The edit ...</div>\r
4508             <div class="long">\r
4509                 Fires after a cell is edited, but before the value is set in the record. Return false
4510 to cancel the change. The edit event object has the following properties <br />
4511 <ul style="padding:5px;padding-left:16px;">
4512 <li>grid - This grid</li>
4513 <li>record - The record being edited</li>
4514 <li>field - The field name being edited</li>
4515 <li>value - The value being set</li>
4516 <li>originalValue - The original value for the field, before the edit.</li>
4517 <li>row - The grid row index</li>
4518 <li>column - The grid column index</li>
4519 <li>cancel - Set this to true to cancel the edit or return false from your handler.</li>
4520 </ul>    <div class="mdetail-params">\r
4521         <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>\r
4522         <ul><li><code>e</code> : Object<div class="sub-desc">An edit event (see above for description)</div></li>        </ul>\r
4523     </div>\r
4524                 </div>\r
4525                         </div>\r
4526         </td>\r
4527         <td class="msource"><a ext:cls="Ext.grid.EditorGridPanel" ext:member="#event-validateedit" href="output/Ext.grid.EditorGridPanel.html#event-validateedit">EditorGridPanel</a></td>\r
4528     </tr>\r
4529             </table>
4530         
4531         </div>