Subversion Repositories eFlore/Applications.cel

Rev

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

Rev Author Line No. Line
2 aperonnet 1
        <div class="body-wrap">
2
        <div class="top-tools">
3
            <a class="inner-link" href="#Ext.tree.TreeEditor-props"><img src="../resources/images/default/s.gif" class="item-icon icon-prop">Properties</a>
4
            <a class="inner-link" href="#Ext.tree.TreeEditor-methods"><img src="../resources/images/default/s.gif" class="item-icon icon-method">Methods</a>
5
            <a class="inner-link" href="#Ext.tree.TreeEditor-events"><img src="../resources/images/default/s.gif" class="item-icon icon-event">Events</a>
6
                            <a class="inner-link" href="#Ext.tree.TreeEditor-configs"><img src="../resources/images/default/s.gif" class="item-icon icon-config">Config Options</a>
7
                        <a class="bookmark" href="../docs/?class=Ext.tree.TreeEditor"><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.Editor" ext:member="" href="output/Ext.Editor.html">Editor</a>
13
      <img src="resources/elbow-end.gif"/>TreeEditor</pre></div>
14
                <h1>Class Ext.tree.TreeEditor</h1>
15
        <table cellspacing="0">
16
            <tr><td class="label">Package:</td><td class="hd-info">Ext.tree</td></tr>
17
            <tr><td class="label">Defined In:</td><td class="hd-info"><a href="../source/widgets/tree/TreeEditor.js" target="_blank">TreeEditor.js</a></td></tr>
18
            <tr><td class="label">Class:</td><td class="hd-info">TreeEditor</td></tr>
19
                                    <tr><td class="label">Extends:</td><td class="hd-info"><a ext:cls="Ext.Editor" ext:member="" href="output/Ext.Editor.html">Editor</a></td></tr>
20
                    </table>
21
        <div class="description">
22
            Provides editor functionality for inline tree node editing.  Any valid <a ext:cls="Ext.form.Field" href="output/Ext.form.Field.html">Ext.form.Field</a> can be used
23
as the editor field.        </div>
24
 
25
        <div class="hr"></div>
26
                <a id="Ext.tree.TreeEditor-configs"></a>
27
        <h2>Config Options</h2>
28
        <table cellspacing="0" class="member-table">
29
            <tr>
30
                <th class="sig-header" colspan="2">Config Options</th>
31
                <th class="msource-header">Defined By</th>
32
            </tr>
33
                <tr class="config-row">
34
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
35
        <td class="sig">
36
        <a id="Ext.tree.TreeEditor-alignment"></a>
37
            <b>alignment</b> : String            <div class="mdesc">
38
                            The position to align to (see <a ext:cls="Ext.Element" ext:member="alignTo" href="output/Ext.Element.html#alignTo">Ext.Element.alignTo</a> for more details, defaults to "l-l").                        </div>
39
        </td>
40
        <td class="msource">TreeEditor</td>
41
    </tr>
42
        <tr class="config-row inherited alt">
43
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
44
        <td class="sig">
45
        <a id="Ext.tree.TreeEditor-allowDomMove"></a>
46
            <b>allowDomMove</b> : Boolean            <div class="mdesc">
47
                            Whether the component can move the Dom node when rendering (defaults to true).                        </div>
48
        </td>
49
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#allowDomMove" href="output/Ext.Component.html#allowDomMove">Component</a></td>
50
    </tr>
51
        <tr class="config-row inherited expandable">
52
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
53
        <td class="sig">
54
        <a id="Ext.tree.TreeEditor-applyTo"></a>
55
            <b>applyTo</b> : Mixed            <div class="mdesc">
56
                        <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>
57
            <div class="long">
58
                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>
59
                        </div>
60
        </td>
61
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#applyTo" href="output/Ext.Component.html#applyTo">Component</a></td>
62
    </tr>
63
        <tr class="config-row inherited alt expandable">
64
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
65
        <td class="sig">
66
        <a id="Ext.tree.TreeEditor-autoEl"></a>
67
            <b>autoEl</b> : String/Object            <div class="mdesc">
68
                        <div class="short">A tag name or DomHelper spec to create an element with. This is intended to create shorthand utility components inlin...</div>
69
            <div class="long">
70
                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>}
71
{xtype:<em>'box'</em>, autoEl: {tag:<em>'blockquote'</em>, html:<em>'autoEl is cool!'</em>}} // <b>with</b> DomHelper</code></pre>            </div>
72
                        </div>
73
        </td>
74
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#autoEl" href="output/Ext.Component.html#autoEl">Component</a></td>
75
    </tr>
76
        <tr class="config-row inherited expandable">
77
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
78
        <td class="sig">
79
        <a id="Ext.tree.TreeEditor-autoShow"></a>
80
            <b>autoShow</b> : Boolean            <div class="mdesc">
81
                        <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>
82
            <div class="long">
83
                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>
84
                        </div>
85
        </td>
86
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#autoShow" href="output/Ext.Component.html#autoShow">Component</a></td>
87
    </tr>
88
        <tr class="config-row inherited alt expandable">
89
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
90
        <td class="sig">
91
        <a id="Ext.tree.TreeEditor-autosize"></a>
92
            <b>autosize</b> : Boolean/String            <div class="mdesc">
93
                        <div class="short">True for the editor to automatically adopt the size of the underlying field, "width" to adopt the width only, or "hei...</div>
94
            <div class="long">
95
                True for the editor to automatically adopt the size of the underlying field, "width" to adopt the width only, or "height" to adopt the height only (defaults to false)            </div>
96
                        </div>
97
        </td>
98
        <td class="msource"><a ext:cls="Ext.Editor" ext:member="#autosize" href="output/Ext.Editor.html#autosize">Editor</a></td>
99
    </tr>
100
        <tr class="config-row inherited">
101
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
102
        <td class="sig">
103
        <a id="Ext.tree.TreeEditor-cancelOnEsc"></a>
104
            <b>cancelOnEsc</b> : Boolean            <div class="mdesc">
105
                            True to cancel the edit when the escape key is pressed (defaults to false)                        </div>
106
        </td>
107
        <td class="msource"><a ext:cls="Ext.Editor" ext:member="#cancelOnEsc" href="output/Ext.Editor.html#cancelOnEsc">Editor</a></td>
108
    </tr>
109
        <tr class="config-row alt">
110
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
111
        <td class="sig">
112
        <a id="Ext.tree.TreeEditor-cls"></a>
113
            <b>cls</b> : String            <div class="mdesc">
114
                            CSS class to apply to the editor (defaults to "x-small-editor x-tree-editor")                        </div>
115
        </td>
116
        <td class="msource">TreeEditor</td>
117
    </tr>
118
        <tr class="config-row inherited">
119
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
120
        <td class="sig">
121
        <a id="Ext.tree.TreeEditor-completeOnEnter"></a>
122
            <b>completeOnEnter</b> : Boolean            <div class="mdesc">
123
                            True to complete the edit when the enter key is pressed (defaults to false)                        </div>
124
        </td>
125
        <td class="msource"><a ext:cls="Ext.Editor" ext:member="#completeOnEnter" href="output/Ext.Editor.html#completeOnEnter">Editor</a></td>
126
    </tr>
127
        <tr class="config-row inherited alt">
128
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
129
        <td class="sig">
130
        <a id="Ext.tree.TreeEditor-constrain"></a>
131
            <b>constrain</b> : Boolean            <div class="mdesc">
132
                            True to constrain the editor to the viewport                        </div>
133
        </td>
134
        <td class="msource"><a ext:cls="Ext.Editor" ext:member="#constrain" href="output/Ext.Editor.html#constrain">Editor</a></td>
135
    </tr>
136
        <tr class="config-row inherited expandable">
137
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
138
        <td class="sig">
139
        <a id="Ext.tree.TreeEditor-ctCls"></a>
140
            <b>ctCls</b> : String            <div class="mdesc">
141
                        <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>
142
            <div class="long">
143
                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>
144
                        </div>
145
        </td>
146
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#ctCls" href="output/Ext.Component.html#ctCls">Component</a></td>
147
    </tr>
148
        <tr class="config-row inherited alt">
149
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
150
        <td class="sig">
151
        <a id="Ext.tree.TreeEditor-disabledClass"></a>
152
            <b>disabledClass</b> : String            <div class="mdesc">
153
                            CSS class added to the component when it is disabled (defaults to "x-item-disabled").                        </div>
154
        </td>
155
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#disabledClass" href="output/Ext.Component.html#disabledClass">Component</a></td>
156
    </tr>
157
        <tr class="config-row expandable">
158
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
159
        <td class="sig">
160
        <a id="Ext.tree.TreeEditor-editDelay"></a>
161
            <b>editDelay</b> : Number            <div class="mdesc">
162
                        <div class="short">The number of milliseconds between clicks to register a double-click that will trigger editing on the current node (d...</div>
163
            <div class="long">
164
                The number of milliseconds between clicks to register a double-click that will trigger editing on the current node (defaults to 350). If two clicks occur on the same node within this time span, the editor for the node will display, otherwise it will be processed as a regular click.            </div>
165
                        </div>
166
        </td>
167
        <td class="msource">TreeEditor</td>
168
    </tr>
169
        <tr class="config-row alt">
170
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
171
        <td class="sig">
172
        <a id="Ext.tree.TreeEditor-hideEl"></a>
173
            <b>hideEl</b> : Boolean            <div class="mdesc">
174
                            True to hide the bound element while the editor is displayed (defaults to false)                        </div>
175
        </td>
176
        <td class="msource">TreeEditor</td>
177
    </tr>
178
        <tr class="config-row inherited expandable">
179
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
180
        <td class="sig">
181
        <a id="Ext.tree.TreeEditor-hideMode"></a>
182
            <b>hideMode</b> : String            <div class="mdesc">
183
                        <div class="short">How this component should hidden. Supported values are "visibility" (css visibility), "offsets" (negative offset posi...</div>
184
            <div class="long">
185
                How this component should hidden. Supported values are "visibility" (css visibility), "offsets" (negative offset position) and "display" (css display) - defaults to "display".            </div>
186
                        </div>
187
        </td>
188
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#hideMode" href="output/Ext.Component.html#hideMode">Component</a></td>
189
    </tr>
190
        <tr class="config-row inherited alt expandable">
191
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
192
        <td class="sig">
193
        <a id="Ext.tree.TreeEditor-hideParent"></a>
194
            <b>hideParent</b> : Boolean            <div class="mdesc">
195
                        <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>
196
            <div class="long">
197
                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>
198
                        </div>
199
        </td>
200
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#hideParent" href="output/Ext.Component.html#hideParent">Component</a></td>
201
    </tr>
202
        <tr class="config-row inherited">
203
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
204
        <td class="sig">
205
        <a id="Ext.tree.TreeEditor-id"></a>
206
            <b>id</b> : String            <div class="mdesc">
207
                            The unique id of this component (defaults to an auto-assigned id).                        </div>
208
        </td>
209
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#id" href="output/Ext.Component.html#id">Component</a></td>
210
    </tr>
211
        <tr class="config-row inherited alt expandable">
212
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
213
        <td class="sig">
214
        <a id="Ext.tree.TreeEditor-ignoreNoChange"></a>
215
            <b>ignoreNoChange</b> : Boolean            <div class="mdesc">
216
                        <div class="short">True to skip the the edit completion process (no save, no events fired) if the user completes an edit and the value h...</div>
217
            <div class="long">
218
                True to skip the the edit completion process (no save, no events fired) if the user completes an edit and the value has not changed (defaults to false). Applies only to string values - edits for other data types will never be ignored.            </div>
219
                        </div>
220
        </td>
221
        <td class="msource"><a ext:cls="Ext.Editor" ext:member="#ignoreNoChange" href="output/Ext.Editor.html#ignoreNoChange">Editor</a></td>
222
    </tr>
223
        <tr class="config-row inherited expandable">
224
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
225
        <td class="sig">
226
        <a id="Ext.tree.TreeEditor-listeners"></a>
227
            <b>listeners</b> : Object            <div class="mdesc">
228
                        <div class="short">A config object containing one or more event handlers to be added to this object during initialization. This should b...</div>
229
            <div class="long">
230
                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>
231
                        </div>
232
        </td>
233
        <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#listeners" href="output/Ext.util.Observable.html#listeners">Observable</a></td>
234
    </tr>
235
        <tr class="config-row alt expandable">
236
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
237
        <td class="sig">
238
        <a id="Ext.tree.TreeEditor-maxWidth"></a>
239
            <b>maxWidth</b> : Number            <div class="mdesc">
240
                        <div class="short">The maximum width in pixels of the editor field (defaults to 250). Note that if the maxWidth would exceed the contain...</div>
241
            <div class="long">
242
                The maximum width in pixels of the editor field (defaults to 250). Note that if the maxWidth would exceed the containing tree element's size, it will be automatically limited for you to the container width, taking scroll and client offsets into account prior to each edit.            </div>
243
                        </div>
244
        </td>
245
        <td class="msource">TreeEditor</td>
246
    </tr>
247
        <tr class="config-row inherited expandable">
248
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
249
        <td class="sig">
250
        <a id="Ext.tree.TreeEditor-plugins"></a>
251
            <b>plugins</b> : Object/Array            <div class="mdesc">
252
                        <div class="short">An object or array of objects that will provide custom functionality for this component. The only requirement for a v...</div>
253
            <div class="long">
254
                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>
255
                        </div>
256
        </td>
257
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#plugins" href="output/Ext.Component.html#plugins">Component</a></td>
258
    </tr>
259
        <tr class="config-row inherited alt expandable">
260
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
261
        <td class="sig">
262
        <a id="Ext.tree.TreeEditor-renderTo"></a>
263
            <b>renderTo</b> : Mixed            <div class="mdesc">
264
                        <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>
265
            <div class="long">
266
                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>
267
                        </div>
268
        </td>
269
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#renderTo" href="output/Ext.Component.html#renderTo">Component</a></td>
270
    </tr>
271
        <tr class="config-row inherited expandable">
272
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
273
        <td class="sig">
274
        <a id="Ext.tree.TreeEditor-revertInvalid"></a>
275
            <b>revertInvalid</b> : Boolean            <div class="mdesc">
276
                        <div class="short">True to automatically revert the field value and cancel the edit when the user completes an edit and the field valida...</div>
277
            <div class="long">
278
                True to automatically revert the field value and cancel the edit when the user completes an edit and the field validation fails (defaults to true)            </div>
279
                        </div>
280
        </td>
281
        <td class="msource"><a ext:cls="Ext.Editor" ext:member="#revertInvalid" href="output/Ext.Editor.html#revertInvalid">Editor</a></td>
282
    </tr>
283
        <tr class="config-row inherited alt">
284
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
285
        <td class="sig">
286
        <a id="Ext.tree.TreeEditor-shadow"></a>
287
            <b>shadow</b> : Boolean/String            <div class="mdesc">
288
                            "sides" for sides/bottom only, "frame" for 4-way shadow, and "drop" for bottom-right shadow (defaults to "frame")                        </div>
289
        </td>
290
        <td class="msource"><a ext:cls="Ext.Editor" ext:member="#shadow" href="output/Ext.Editor.html#shadow">Editor</a></td>
291
    </tr>
292
        <tr class="config-row">
293
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
294
        <td class="sig">
295
        <a id="Ext.tree.TreeEditor-shim"></a>
296
            <b>shim</b> : Boolean            <div class="mdesc">
297
                            True to shim the editor if selects/iframes could be displayed beneath it (defaults to false)                        </div>
298
        </td>
299
        <td class="msource">TreeEditor</td>
300
    </tr>
301
        <tr class="config-row inherited alt expandable">
302
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
303
        <td class="sig">
304
        <a id="Ext.tree.TreeEditor-stateEvents"></a>
305
            <b>stateEvents</b> : Array            <div class="mdesc">
306
                        <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>
307
            <div class="long">
308
                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>
309
                        </div>
310
        </td>
311
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#stateEvents" href="output/Ext.Component.html#stateEvents">Component</a></td>
312
    </tr>
313
        <tr class="config-row inherited expandable">
314
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
315
        <td class="sig">
316
        <a id="Ext.tree.TreeEditor-stateId"></a>
317
            <b>stateId</b> : String            <div class="mdesc">
318
                        <div class="short">The unique id for this component to use for state management purposes (defaults to the component id). See stateful fo...</div>
319
            <div class="long">
320
                The unique id for this component to use for state management purposes (defaults to the component id). <p>See <a ext:cls="Ext.Component" ext:member="stateful" href="output/Ext.Component.html#stateful">stateful</a> for an explanation of saving and restoring Component state.</p>            </div>
321
                        </div>
322
        </td>
323
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#stateId" href="output/Ext.Component.html#stateId">Component</a></td>
324
    </tr>
325
        <tr class="config-row inherited alt expandable">
326
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
327
        <td class="sig">
328
        <a id="Ext.tree.TreeEditor-stateful"></a>
329
            <b>stateful</b> : Boolean            <div class="mdesc">
330
                        <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>
331
            <div class="long">
332
                A flag which causes the Component to attempt to restore the state of internal properties from a saved state on startup.<p> For state saving to work, the state manager's provider must have been set to an implementation of <a ext:cls="Ext.state.Provider" href="output/Ext.state.Provider.html">Ext.state.Provider</a> which overrides the <a ext:cls="Ext.state.Provider" ext:member="set" href="output/Ext.state.Provider.html#set">set</a> and <a ext:cls="Ext.state.Provider" ext:member="get" href="output/Ext.state.Provider.html#get">get</a> methods to save and recall name/value pairs. A built-in implementation, <a ext:cls="Ext.state.CookieProvider" href="output/Ext.state.CookieProvider.html">Ext.state.CookieProvider</a> is available.</p> <p>To set the state provider for the current page:</p> <pre><code>Ext.state.Manager.setProvider(<b>new</b> Ext.state.CookieProvider());</code></pre> <p>Components attempt to save state when one of the events listed in the <a ext:cls="Ext.Component" ext:member="stateEvents" href="output/Ext.Component.html#stateEvents">stateEvents</a> configuration fires.</p> <p>You can perform extra processing on state save and restore by attaching handlers to the <a ext:cls="Ext.Component" ext:member="beforestaterestore" href="output/Ext.Component.html#beforestaterestore">beforestaterestore</a>, <a ext:cls="staterestore" href="output/staterestore.html">staterestore</a>, <a ext:cls="beforestatesave" href="output/beforestatesave.html">beforestatesave</a> and <a ext:cls="statesave" href="output/statesave.html">statesave</a> events</p>            </div>
333
                        </div>
334
        </td>
335
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#stateful" href="output/Ext.Component.html#stateful">Component</a></td>
336
    </tr>
337
        <tr class="config-row inherited expandable">
338
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
339
        <td class="sig">
340
        <a id="Ext.tree.TreeEditor-style"></a>
341
            <b>style</b> : String            <div class="mdesc">
342
                        <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>
343
            <div class="long">
344
                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>
345
                        </div>
346
        </td>
347
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#style" href="output/Ext.Component.html#style">Component</a></td>
348
    </tr>
349
        <tr class="config-row inherited alt">
350
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
351
        <td class="sig">
352
        <a id="Ext.tree.TreeEditor-swallowKeys"></a>
353
            <b>swallowKeys</b> : Boolean            <div class="mdesc">
354
                            Handle the keydown/keypress events so they don't propagate (defaults to true)                        </div>
355
        </td>
356
        <td class="msource"><a ext:cls="Ext.Editor" ext:member="#swallowKeys" href="output/Ext.Editor.html#swallowKeys">Editor</a></td>
357
    </tr>
358
        <tr class="config-row inherited">
359
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
360
        <td class="sig">
361
        <a id="Ext.tree.TreeEditor-updateEl"></a>
362
            <b>updateEl</b> : Boolean            <div class="mdesc">
363
                            True to update the innerHTML of the bound element when the update completes (defaults to false)                        </div>
364
        </td>
365
        <td class="msource"><a ext:cls="Ext.Editor" ext:member="#updateEl" href="output/Ext.Editor.html#updateEl">Editor</a></td>
366
    </tr>
367
        <tr class="config-row inherited alt">
368
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
369
        <td class="sig">
370
        <a id="Ext.tree.TreeEditor-value"></a>
371
            <b>value</b> : Mixed            <div class="mdesc">
372
                            The data value of the underlying field (defaults to "")                        </div>
373
        </td>
374
        <td class="msource"><a ext:cls="Ext.Editor" ext:member="#value" href="output/Ext.Editor.html#value">Editor</a></td>
375
    </tr>
376
        <tr class="config-row inherited expandable">
377
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
378
        <td class="sig">
379
        <a id="Ext.tree.TreeEditor-xtype"></a>
380
            <b>xtype</b> : String            <div class="mdesc">
381
                        <div class="short">The registered xtype to create. This config option is not used when passing a config object into a constructor. This ...</div>
382
            <div class="long">
383
                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>
384
                        </div>
385
        </td>
386
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#xtype" href="output/Ext.Component.html#xtype">Component</a></td>
387
    </tr>
388
            </table>
389
                <a id="Ext.tree.TreeEditor-props"></a>
390
        <h2>Public Properties</h2>
391
                <table cellspacing="0" class="member-table">
392
            <tr>
393
                <th class="sig-header" colspan="2">Property</th>
394
                <th class="msource-header">Defined By</th>
395
            </tr>
396
                <tr class="property-row inherited">
397
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
398
        <td class="sig">
399
        <a id="Ext.tree.TreeEditor-disabled"></a>
400
            <b>disabled</b> : Boolean            <div class="mdesc">
401
                            True if this component is disabled. Read-only.                        </div>
402
        </td>
403
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#disabled" href="output/Ext.Component.html#disabled">Component</a></td>
404
    </tr>
405
        <tr class="property-row inherited alt">
406
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
407
        <td class="sig">
408
        <a id="Ext.tree.TreeEditor-hidden"></a>
409
            <b>hidden</b> : Boolean            <div class="mdesc">
410
 
411
True if this component is hidden. Read-only.                        </div>
412
        </td>
413
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#hidden" href="output/Ext.Component.html#hidden">Component</a></td>
414
    </tr>
415
        <tr class="property-row inherited">
416
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
417
        <td class="sig">
418
        <a id="Ext.tree.TreeEditor-initialConfig"></a>
419
            <b>initialConfig</b> : Object            <div class="mdesc">
420
                            This Component's initial configuration specification. Read-only.                        </div>
421
        </td>
422
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#initialConfig" href="output/Ext.Component.html#initialConfig">Component</a></td>
423
    </tr>
424
        <tr class="property-row inherited alt expandable">
425
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
426
        <td class="sig">
427
        <a id="Ext.tree.TreeEditor-ownerCt"></a>
428
            <b>ownerCt</b> : Ext.Container            <div class="mdesc">
429
                        <div class="short">The component's owner Ext.Container (defaults to undefined, and is set automatically when
430
the component is added to a...</div>
431
            <div class="long">
432
                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
433
the component is added to a container).  Read-only.            </div>
434
                        </div>
435
        </td>
436
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#ownerCt" href="output/Ext.Component.html#ownerCt">Component</a></td>
437
    </tr>
438
        <tr class="property-row inherited">
439
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
440
        <td class="sig">
441
        <a id="Ext.tree.TreeEditor-rendered"></a>
442
            <b>rendered</b> : Boolean            <div class="mdesc">
443
                            True if this component has been rendered. Read-only.                        </div>
444
        </td>
445
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#rendered" href="output/Ext.Component.html#rendered">Component</a></td>
446
    </tr>
447
            </table>
448
                <a id="Ext.tree.TreeEditor-methods"></a>
449
        <h2>Public Methods</h2>
450
                <table cellspacing="0" class="member-table">
451
            <tr>
452
                <th class="sig-header" colspan="2">Method</th>
453
                <th class="msource-header">Defined By</th>
454
            </tr>
455
                <tr class="method-row expandable">
456
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
457
        <td class="sig">
458
        <a id="Ext.tree.TreeEditor-TreeEditor"></a>
459
            <b>TreeEditor</b>(&nbsp;<code>TreePanel tree</code>, <code>Object config</code>&nbsp;)            <div class="mdesc">
460
                        <div class="short"></div>
461
            <div class="long">
462
                    <div class="mdetail-params">
463
        <strong>Parameters:</strong>
464
        <ul><li><code>tree</code> : TreePanel<div class="sub-desc"></div></li><li><code>config</code> : Object<div class="sub-desc">Either a prebuilt <a ext:cls="Ext.form.Field" href="output/Ext.form.Field.html">Ext.form.Field</a> instance or a Field config object</div></li>        </ul>
465
        <strong>Returns:</strong>
466
        <ul>
467
            <li><code></code></li>
468
        </ul>
469
    </div>
470
                </div>
471
                        </div>
472
        </td>
473
        <td class="msource">TreeEditor</td>
474
    </tr>
475
        <tr class="method-row inherited alt expandable">
476
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
477
        <td class="sig">
478
        <a id="Ext.tree.TreeEditor-addClass"></a>
479
            <b>addClass</b>(&nbsp;<code>string cls</code>&nbsp;) : void            <div class="mdesc">
480
                        <div class="short">Adds a CSS class to the component's underlying element.</div>
481
            <div class="long">
482
                Adds a CSS class to the component's underlying element.    <div class="mdetail-params">
483
        <strong>Parameters:</strong>
484
        <ul><li><code>cls</code> : string<div class="sub-desc">The CSS class name to add</div></li>        </ul>
485
        <strong>Returns:</strong>
486
        <ul>
487
            <li><code>void</code></li>
488
        </ul>
489
    </div>
490
                </div>
491
                        </div>
492
        </td>
493
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#addClass" href="output/Ext.Component.html#addClass">Component</a></td>
494
    </tr>
495
        <tr class="method-row inherited expandable">
496
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
497
        <td class="sig">
498
        <a id="Ext.tree.TreeEditor-addEvents"></a>
499
            <b>addEvents</b>(&nbsp;<code>Object object</code>&nbsp;) : void            <div class="mdesc">
500
                        <div class="short">Used to define events on this Observable</div>
501
            <div class="long">
502
                Used to define events on this Observable    <div class="mdetail-params">
503
        <strong>Parameters:</strong>
504
        <ul><li><code>object</code> : Object<div class="sub-desc">The object with the events defined</div></li>        </ul>
505
        <strong>Returns:</strong>
506
        <ul>
507
            <li><code>void</code></li>
508
        </ul>
509
    </div>
510
                </div>
511
                        </div>
512
        </td>
513
        <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#addEvents" href="output/Ext.util.Observable.html#addEvents">Observable</a></td>
514
    </tr>
515
        <tr class="method-row inherited alt expandable">
516
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
517
        <td class="sig">
518
        <a id="Ext.tree.TreeEditor-addListener"></a>
519
            <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">
520
                        <div class="short">Appends an event handler to this component</div>
521
            <div class="long">
522
                Appends an event handler to this component    <div class="mdetail-params">
523
        <strong>Parameters:</strong>
524
        <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
525
function. The handler function's "this" context.</div></li><li><code>options</code> : Object<div class="sub-desc">(optional) An object containing handler configuration
526
properties. This may contain any of the following properties:<ul>
527
<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>
528
<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>
529
<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>
530
<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
531
by the specified number of milliseconds. If the event fires again within that time, the original
532
handler is <em>not</em> invoked, but the new handler is scheduled in its place.</p></li>
533
</ul><br>
534
<p>
535
<b>Combining Options</b><br>
536
Using the options argument, it is possible to combine different types of listeners:<br>
537
<br>
538
A normalized, delayed, one-time listener that auto stops the event and passes a custom argument (forumId)
539
<pre><code>el.on(<em>'click'</em>, <b>this</b>.onClick, <b>this</b>, {
540
    single: true,
541
    delay: 100,
542
    forumId: 4
543
});</code></pre>
544
<p>
545
<b>Attaching multiple handlers in 1 call</b><br>
546
The method also allows for a single argument to be passed which is a config object containing properties
547
which specify multiple handlers.
548
<p>
549
<pre><code>foo.on({
550
    <em>'click'</em> : {
551
        fn: <b>this</b>.onClick,
552
        scope: <b>this</b>,
553
        delay: 100
554
    },
555
    <em>'mouseover'</em> : {
556
        fn: <b>this</b>.onMouseOver,
557
        scope: <b>this</b>
558
    },
559
    <em>'mouseout'</em> : {
560
        fn: <b>this</b>.onMouseOut,
561
        scope: <b>this</b>
562
    }
563
});</code></pre>
564
<p>
565
Or a shorthand syntax:<br>
566
<pre><code>foo.on({
567
    <em>'click'</em> : <b>this</b>.onClick,
568
    <em>'mouseover'</em> : <b>this</b>.onMouseOver,
569
    <em>'mouseout'</em> : <b>this</b>.onMouseOut,
570
     scope: <b>this</b>
571
});</code></pre></div></li>        </ul>
572
        <strong>Returns:</strong>
573
        <ul>
574
            <li><code>void</code></li>
575
        </ul>
576
    </div>
577
                </div>
578
                        </div>
579
        </td>
580
        <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#addListener" href="output/Ext.util.Observable.html#addListener">Observable</a></td>
581
    </tr>
582
        <tr class="method-row inherited expandable">
583
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
584
        <td class="sig">
585
        <a id="Ext.tree.TreeEditor-applyToMarkup"></a>
586
            <b>applyToMarkup</b>(&nbsp;<code>String/HTMLElement el</code>&nbsp;) : void            <div class="mdesc">
587
                        <div class="short">Apply this component to existing markup that is valid. With this function, no call to render() is required.</div>
588
            <div class="long">
589
                Apply this component to existing markup that is valid. With this function, no call to render() is required.    <div class="mdetail-params">
590
        <strong>Parameters:</strong>
591
        <ul><li><code>el</code> : String/HTMLElement<div class="sub-desc"></div></li>        </ul>
592
        <strong>Returns:</strong>
593
        <ul>
594
            <li><code>void</code></li>
595
        </ul>
596
    </div>
597
                </div>
598
                        </div>
599
        </td>
600
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#applyToMarkup" href="output/Ext.Component.html#applyToMarkup">Component</a></td>
601
    </tr>
602
        <tr class="method-row inherited alt expandable">
603
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
604
        <td class="sig">
605
        <a id="Ext.tree.TreeEditor-cancelEdit"></a>
606
            <b>cancelEdit</b>(&nbsp;<code>Boolean remainVisible</code>&nbsp;) : void            <div class="mdesc">
607
                        <div class="short">Cancels the editing process and hides the editor without persisting any changes.  The field value will be
608
reverted to...</div>
609
            <div class="long">
610
                Cancels the editing process and hides the editor without persisting any changes.  The field value will be
611
reverted to the original starting value.    <div class="mdetail-params">
612
        <strong>Parameters:</strong>
613
        <ul><li><code>remainVisible</code> : Boolean<div class="sub-desc">Override the default behavior and keep the editor visible after
614
cancel (defaults to false)</div></li>        </ul>
615
        <strong>Returns:</strong>
616
        <ul>
617
            <li><code>void</code></li>
618
        </ul>
619
    </div>
620
                </div>
621
                        </div>
622
        </td>
623
        <td class="msource"><a ext:cls="Ext.Editor" ext:member="#cancelEdit" href="output/Ext.Editor.html#cancelEdit">Editor</a></td>
624
    </tr>
625
        <tr class="method-row inherited expandable">
626
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
627
        <td class="sig">
628
        <a id="Ext.tree.TreeEditor-cloneConfig"></a>
629
            <b>cloneConfig</b>(&nbsp;<code>Object overrides</code>&nbsp;) : Ext.Component            <div class="mdesc">
630
                        <div class="short">Clone the current component using the original config values passed into this instance by default.</div>
631
            <div class="long">
632
                Clone the current component using the original config values passed into this instance by default.    <div class="mdetail-params">
633
        <strong>Parameters:</strong>
634
        <ul><li><code>overrides</code> : Object<div class="sub-desc">A new config containing any properties to override in the cloned version.
635
An id property can be passed on this object, otherwise one will be generated to avoid duplicates.</div></li>        </ul>
636
        <strong>Returns:</strong>
637
        <ul>
638
            <li><code>Ext.Component</code><div class="sub-desc">clone The cloned copy of this component</div></li>
639
        </ul>
640
    </div>
641
                </div>
642
                        </div>
643
        </td>
644
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#cloneConfig" href="output/Ext.Component.html#cloneConfig">Component</a></td>
645
    </tr>
646
        <tr class="method-row inherited alt expandable">
647
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
648
        <td class="sig">
649
        <a id="Ext.tree.TreeEditor-completeEdit"></a>
650
            <b>completeEdit</b>(&nbsp;<code>Boolean remainVisible</code>&nbsp;) : void            <div class="mdesc">
651
                        <div class="short">Ends the editing process, persists the changed value to the underlying field, and hides the editor.</div>
652
            <div class="long">
653
                Ends the editing process, persists the changed value to the underlying field, and hides the editor.    <div class="mdetail-params">
654
        <strong>Parameters:</strong>
655
        <ul><li><code>remainVisible</code> : Boolean<div class="sub-desc">Override the default behavior and keep the editor visible after edit (defaults to false)</div></li>        </ul>
656
        <strong>Returns:</strong>
657
        <ul>
658
            <li><code>void</code></li>
659
        </ul>
660
    </div>
661
                </div>
662
                        </div>
663
        </td>
664
        <td class="msource"><a ext:cls="Ext.Editor" ext:member="#completeEdit" href="output/Ext.Editor.html#completeEdit">Editor</a></td>
665
    </tr>
666
        <tr class="method-row inherited expandable">
667
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
668
        <td class="sig">
669
        <a id="Ext.tree.TreeEditor-destroy"></a>
670
            <b>destroy</b>() : void            <div class="mdesc">
671
                        <div class="short">Destroys this component by purging any event listeners, removing the component's element from the DOM,
672
removing the c...</div>
673
            <div class="long">
674
                Destroys this component by purging any event listeners, removing the component's element from the DOM,
675
removing the component from its <a ext:cls="Ext.Container" href="output/Ext.Container.html">Ext.Container</a> (if applicable) and unregistering it from
676
<a ext:cls="Ext.ComponentMgr" href="output/Ext.ComponentMgr.html">Ext.ComponentMgr</a>.  Destruction is generally handled automatically by the framework and this method
677
should usually not need to be called directly.    <div class="mdetail-params">
678
        <strong>Parameters:</strong>
679
        <ul><li>None.</li>        </ul>
680
        <strong>Returns:</strong>
681
        <ul>
682
            <li><code>void</code></li>
683
        </ul>
684
    </div>
685
                </div>
686
                        </div>
687
        </td>
688
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#destroy" href="output/Ext.Component.html#destroy">Component</a></td>
689
    </tr>
690
        <tr class="method-row inherited alt expandable">
691
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
692
        <td class="sig">
693
        <a id="Ext.tree.TreeEditor-disable"></a>
694
            <b>disable</b>() : Ext.Component            <div class="mdesc">
695
                        <div class="short">Disable this component.</div>
696
            <div class="long">
697
                Disable this component.    <div class="mdetail-params">
698
        <strong>Parameters:</strong>
699
        <ul><li>None.</li>        </ul>
700
        <strong>Returns:</strong>
701
        <ul>
702
            <li><code>Ext.Component</code><div class="sub-desc">this</div></li>
703
        </ul>
704
    </div>
705
                </div>
706
                        </div>
707
        </td>
708
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#disable" href="output/Ext.Component.html#disable">Component</a></td>
709
    </tr>
710
        <tr class="method-row inherited expandable">
711
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
712
        <td class="sig">
713
        <a id="Ext.tree.TreeEditor-enable"></a>
714
            <b>enable</b>() : Ext.Component            <div class="mdesc">
715
                        <div class="short">Enable this component.</div>
716
            <div class="long">
717
                Enable this component.    <div class="mdetail-params">
718
        <strong>Parameters:</strong>
719
        <ul><li>None.</li>        </ul>
720
        <strong>Returns:</strong>
721
        <ul>
722
            <li><code>Ext.Component</code><div class="sub-desc">this</div></li>
723
        </ul>
724
    </div>
725
                </div>
726
                        </div>
727
        </td>
728
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#enable" href="output/Ext.Component.html#enable">Component</a></td>
729
    </tr>
730
        <tr class="method-row inherited alt expandable">
731
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
732
        <td class="sig">
733
        <a id="Ext.tree.TreeEditor-findParentBy"></a>
734
            <b>findParentBy</b>(&nbsp;<code>Function fcn</code>, <span class="optional" title="Optional">[<code>Object scope</code>]</span>&nbsp;) : Array            <div class="mdesc">
735
                        <div class="short">Find a container above this component at any level by a custom function. If the passed function returns
736
true, the con...</div>
737
            <div class="long">
738
                Find a container above this component at any level by a custom function. If the passed function returns
739
true, the container will be returned. The passed function is called with the arguments (container, this component).    <div class="mdetail-params">
740
        <strong>Parameters:</strong>
741
        <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>
742
        <strong>Returns:</strong>
743
        <ul>
744
            <li><code>Array</code><div class="sub-desc">Array of Ext.Components</div></li>
745
        </ul>
746
    </div>
747
                </div>
748
                        </div>
749
        </td>
750
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#findParentBy" href="output/Ext.Component.html#findParentBy">Component</a></td>
751
    </tr>
752
        <tr class="method-row inherited expandable">
753
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
754
        <td class="sig">
755
        <a id="Ext.tree.TreeEditor-findParentByType"></a>
756
            <b>findParentByType</b>(&nbsp;<code>String/Class xtype</code>&nbsp;) : Container            <div class="mdesc">
757
                        <div class="short">Find a container above this component at any level by xtype or class</div>
758
            <div class="long">
759
                Find a container above this component at any level by xtype or class    <div class="mdetail-params">
760
        <strong>Parameters:</strong>
761
        <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>
762
        <strong>Returns:</strong>
763
        <ul>
764
            <li><code>Container</code><div class="sub-desc">The found container</div></li>
765
        </ul>
766
    </div>
767
                </div>
768
                        </div>
769
        </td>
770
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#findParentByType" href="output/Ext.Component.html#findParentByType">Component</a></td>
771
    </tr>
772
        <tr class="method-row inherited alt expandable">
773
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
774
        <td class="sig">
775
        <a id="Ext.tree.TreeEditor-fireEvent"></a>
776
            <b>fireEvent</b>(&nbsp;<code>String eventName</code>, <code>Object... args</code>&nbsp;) : Boolean            <div class="mdesc">
777
                        <div class="short">Fires the specified event with the passed parameters (minus the event name).</div>
778
            <div class="long">
779
                Fires the specified event with the passed parameters (minus the event name).    <div class="mdetail-params">
780
        <strong>Parameters:</strong>
781
        <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>
782
        <strong>Returns:</strong>
783
        <ul>
784
            <li><code>Boolean</code><div class="sub-desc">returns false if any of the handlers return false otherwise it returns true</div></li>
785
        </ul>
786
    </div>
787
                </div>
788
                        </div>
789
        </td>
790
        <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#fireEvent" href="output/Ext.util.Observable.html#fireEvent">Observable</a></td>
791
    </tr>
792
        <tr class="method-row inherited expandable">
793
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
794
        <td class="sig">
795
        <a id="Ext.tree.TreeEditor-focus"></a>
796
            <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">
797
                        <div class="short">Try to focus this component.</div>
798
            <div class="long">
799
                Try to focus this component.    <div class="mdetail-params">
800
        <strong>Parameters:</strong>
801
        <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>
802
        <strong>Returns:</strong>
803
        <ul>
804
            <li><code>Ext.Component</code><div class="sub-desc">this</div></li>
805
        </ul>
806
    </div>
807
                </div>
808
                        </div>
809
        </td>
810
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#focus" href="output/Ext.Component.html#focus">Component</a></td>
811
    </tr>
812
        <tr class="method-row inherited alt expandable">
813
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
814
        <td class="sig">
815
        <a id="Ext.tree.TreeEditor-getEl"></a>
816
            <b>getEl</b>() : Ext.Element            <div class="mdesc">
817
                        <div class="short">Returns the underlying <a ext:cls="Ext.Element" href="output/Ext.Element.html">Ext.Element</a>.</div>
818
            <div class="long">
819
                Returns the underlying <a ext:cls="Ext.Element" href="output/Ext.Element.html">Ext.Element</a>.    <div class="mdetail-params">
820
        <strong>Parameters:</strong>
821
        <ul><li>None.</li>        </ul>
822
        <strong>Returns:</strong>
823
        <ul>
824
            <li><code>Ext.Element</code><div class="sub-desc">The element</div></li>
825
        </ul>
826
    </div>
827
                </div>
828
                        </div>
829
        </td>
830
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#getEl" href="output/Ext.Component.html#getEl">Component</a></td>
831
    </tr>
832
        <tr class="method-row inherited expandable">
833
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
834
        <td class="sig">
835
        <a id="Ext.tree.TreeEditor-getId"></a>
836
            <b>getId</b>() : String            <div class="mdesc">
837
                        <div class="short">Returns the id of this component.</div>
838
            <div class="long">
839
                Returns the id of this component.    <div class="mdetail-params">
840
        <strong>Parameters:</strong>
841
        <ul><li>None.</li>        </ul>
842
        <strong>Returns:</strong>
843
        <ul>
844
            <li><code>String</code></li>
845
        </ul>
846
    </div>
847
                </div>
848
                        </div>
849
        </td>
850
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#getId" href="output/Ext.Component.html#getId">Component</a></td>
851
    </tr>
852
        <tr class="method-row inherited alt expandable">
853
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
854
        <td class="sig">
855
        <a id="Ext.tree.TreeEditor-getItemId"></a>
856
            <b>getItemId</b>() : String            <div class="mdesc">
857
                        <div class="short">Returns the item id of this component.</div>
858
            <div class="long">
859
                Returns the item id of this component.    <div class="mdetail-params">
860
        <strong>Parameters:</strong>
861
        <ul><li>None.</li>        </ul>
862
        <strong>Returns:</strong>
863
        <ul>
864
            <li><code>String</code></li>
865
        </ul>
866
    </div>
867
                </div>
868
                        </div>
869
        </td>
870
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#getItemId" href="output/Ext.Component.html#getItemId">Component</a></td>
871
    </tr>
872
        <tr class="method-row inherited expandable">
873
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
874
        <td class="sig">
875
        <a id="Ext.tree.TreeEditor-getValue"></a>
876
            <b>getValue</b>() : Mixed            <div class="mdesc">
877
                        <div class="short">Gets the data value of the editor</div>
878
            <div class="long">
879
                Gets the data value of the editor    <div class="mdetail-params">
880
        <strong>Parameters:</strong>
881
        <ul><li>None.</li>        </ul>
882
        <strong>Returns:</strong>
883
        <ul>
884
            <li><code>Mixed</code><div class="sub-desc">The data value</div></li>
885
        </ul>
886
    </div>
887
                </div>
888
                        </div>
889
        </td>
890
        <td class="msource"><a ext:cls="Ext.Editor" ext:member="#getValue" href="output/Ext.Editor.html#getValue">Editor</a></td>
891
    </tr>
892
        <tr class="method-row inherited alt expandable">
893
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
894
        <td class="sig">
895
        <a id="Ext.tree.TreeEditor-getXType"></a>
896
            <b>getXType</b>() : String            <div class="mdesc">
897
                        <div class="short">Gets the xtype for this component as registered with Ext.ComponentMgr. For a list of all
898
available xtypes, see the Ex...</div>
899
            <div class="long">
900
                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
901
available xtypes, see the <a ext:cls="Ext.Component" href="output/Ext.Component.html">Ext.Component</a> header. Example usage:
902
<pre><code>var t = <b>new</b> Ext.form.TextField();
903
alert(t.getXType());  // alerts <em>'textfield'</em></code></pre>    <div class="mdetail-params">
904
        <strong>Parameters:</strong>
905
        <ul><li>None.</li>        </ul>
906
        <strong>Returns:</strong>
907
        <ul>
908
            <li><code>String</code><div class="sub-desc">The xtype</div></li>
909
        </ul>
910
    </div>
911
                </div>
912
                        </div>
913
        </td>
914
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#getXType" href="output/Ext.Component.html#getXType">Component</a></td>
915
    </tr>
916
        <tr class="method-row inherited expandable">
917
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
918
        <td class="sig">
919
        <a id="Ext.tree.TreeEditor-getXTypes"></a>
920
            <b>getXTypes</b>() : String            <div class="mdesc">
921
                        <div class="short">Returns this component's xtype hierarchy as a slash-delimited string. For a list of all
922
available xtypes, see the Ext...</div>
923
            <div class="long">
924
                Returns this component's xtype hierarchy as a slash-delimited string. For a list of all
925
available xtypes, see the <a ext:cls="Ext.Component" href="output/Ext.Component.html">Ext.Component</a> header. Example usage:
926
<pre><code>
927
var t = new Ext.form.TextField();
928
alert(t.getXTypes());  // alerts 'component/box/field/textfield'</pre></code>    <div class="mdetail-params">
929
        <strong>Parameters:</strong>
930
        <ul><li>None.</li>        </ul>
931
        <strong>Returns:</strong>
932
        <ul>
933
            <li><code>String</code><div class="sub-desc">The xtype hierarchy string</div></li>
934
        </ul>
935
    </div>
936
                </div>
937
                        </div>
938
        </td>
939
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#getXTypes" href="output/Ext.Component.html#getXTypes">Component</a></td>
940
    </tr>
941
        <tr class="method-row inherited alt expandable">
942
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
943
        <td class="sig">
944
        <a id="Ext.tree.TreeEditor-hasListener"></a>
945
            <b>hasListener</b>(&nbsp;<code>String eventName</code>&nbsp;) : Boolean            <div class="mdesc">
946
                        <div class="short">Checks to see if this object has any listeners for a specified event</div>
947
            <div class="long">
948
                Checks to see if this object has any listeners for a specified event    <div class="mdetail-params">
949
        <strong>Parameters:</strong>
950
        <ul><li><code>eventName</code> : String<div class="sub-desc">The name of the event to check for</div></li>        </ul>
951
        <strong>Returns:</strong>
952
        <ul>
953
            <li><code>Boolean</code><div class="sub-desc">True if the event is being listened for, else false</div></li>
954
        </ul>
955
    </div>
956
                </div>
957
                        </div>
958
        </td>
959
        <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#hasListener" href="output/Ext.util.Observable.html#hasListener">Observable</a></td>
960
    </tr>
961
        <tr class="method-row inherited expandable">
962
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
963
        <td class="sig">
964
        <a id="Ext.tree.TreeEditor-hide"></a>
965
            <b>hide</b>() : Ext.Component            <div class="mdesc">
966
                        <div class="short">Hide this component.</div>
967
            <div class="long">
968
                Hide this component.    <div class="mdetail-params">
969
        <strong>Parameters:</strong>
970
        <ul><li>None.</li>        </ul>
971
        <strong>Returns:</strong>
972
        <ul>
973
            <li><code>Ext.Component</code><div class="sub-desc">this</div></li>
974
        </ul>
975
    </div>
976
                </div>
977
                        </div>
978
        </td>
979
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#hide" href="output/Ext.Component.html#hide">Component</a></td>
980
    </tr>
981
        <tr class="method-row inherited alt expandable">
982
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
983
        <td class="sig">
984
        <a id="Ext.tree.TreeEditor-isVisible"></a>
985
            <b>isVisible</b>() : void            <div class="mdesc">
986
                        <div class="short">Returns true if this component is visible.</div>
987
            <div class="long">
988
                Returns true if this component is visible.    <div class="mdetail-params">
989
        <strong>Parameters:</strong>
990
        <ul><li>None.</li>        </ul>
991
        <strong>Returns:</strong>
992
        <ul>
993
            <li><code>void</code></li>
994
        </ul>
995
    </div>
996
                </div>
997
                        </div>
998
        </td>
999
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#isVisible" href="output/Ext.Component.html#isVisible">Component</a></td>
1000
    </tr>
1001
        <tr class="method-row inherited expandable">
1002
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1003
        <td class="sig">
1004
        <a id="Ext.tree.TreeEditor-isXType"></a>
1005
            <b>isXType</b>(&nbsp;<code>String xtype</code>, <span class="optional" title="Optional">[<code>Boolean shallow</code>]</span>&nbsp;) : void            <div class="mdesc">
1006
                        <div class="short">Tests whether or not this component is of a specific xtype. This can test whether this component is descended
1007
from th...</div>
1008
            <div class="long">
1009
                Tests whether or not this component is of a specific xtype. This can test whether this component is descended
1010
from the xtype (default) or whether it is directly of the xtype specified (shallow = true). For a list of all
1011
available xtypes, see the <a ext:cls="Ext.Component" href="output/Ext.Component.html">Ext.Component</a> header. Example usage:
1012
<pre><code>var t = <b>new</b> Ext.form.TextField();
1013
<b>var</b> isText = t.isXType(<em>'textfield'</em>);        <i>// true</i>
1014
<b>var</b> isBoxSubclass = t.isXType(<em>'box'</em>);       <i>// true, descended from BoxComponent</i>
1015
<b>var</b> isBoxInstance = t.isXType(<em>'box'</em>, true); // false, not a direct BoxComponent instance</code></pre>    <div class="mdetail-params">
1016
        <strong>Parameters:</strong>
1017
        <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
1018
the default), or true to check whether this component is directly of the specified xtype.</div></li>        </ul>
1019
        <strong>Returns:</strong>
1020
        <ul>
1021
            <li><code>void</code></li>
1022
        </ul>
1023
    </div>
1024
                </div>
1025
                        </div>
1026
        </td>
1027
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#isXType" href="output/Ext.Component.html#isXType">Component</a></td>
1028
    </tr>
1029
        <tr class="method-row inherited alt expandable">
1030
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1031
        <td class="sig">
1032
        <a id="Ext.tree.TreeEditor-on"></a>
1033
            <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">
1034
                        <div class="short">Appends an event handler to this element (shorthand for addListener)</div>
1035
            <div class="long">
1036
                Appends an event handler to this element (shorthand for addListener)    <div class="mdetail-params">
1037
        <strong>Parameters:</strong>
1038
        <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
1039
function. The handler function's "this" context.</div></li><li><code>options</code> : Object<div class="sub-desc">(optional)</div></li>        </ul>
1040
        <strong>Returns:</strong>
1041
        <ul>
1042
            <li><code>void</code></li>
1043
        </ul>
1044
    </div>
1045
                </div>
1046
                        </div>
1047
        </td>
1048
        <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#on" href="output/Ext.util.Observable.html#on">Observable</a></td>
1049
    </tr>
1050
        <tr class="method-row inherited expandable">
1051
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1052
        <td class="sig">
1053
        <a id="Ext.tree.TreeEditor-purgeListeners"></a>
1054
            <b>purgeListeners</b>() : void            <div class="mdesc">
1055
                        <div class="short">Removes all listeners for this object</div>
1056
            <div class="long">
1057
                Removes all listeners for this object    <div class="mdetail-params">
1058
        <strong>Parameters:</strong>
1059
        <ul><li>None.</li>        </ul>
1060
        <strong>Returns:</strong>
1061
        <ul>
1062
            <li><code>void</code></li>
1063
        </ul>
1064
    </div>
1065
                </div>
1066
                        </div>
1067
        </td>
1068
        <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#purgeListeners" href="output/Ext.util.Observable.html#purgeListeners">Observable</a></td>
1069
    </tr>
1070
        <tr class="method-row inherited alt expandable">
1071
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1072
        <td class="sig">
1073
        <a id="Ext.tree.TreeEditor-realign"></a>
1074
            <b>realign</b>() : void            <div class="mdesc">
1075
                        <div class="short">Realigns the editor to the bound field based on the current alignment config value.</div>
1076
            <div class="long">
1077
                Realigns the editor to the bound field based on the current alignment config value.    <div class="mdetail-params">
1078
        <strong>Parameters:</strong>
1079
        <ul><li>None.</li>        </ul>
1080
        <strong>Returns:</strong>
1081
        <ul>
1082
            <li><code>void</code></li>
1083
        </ul>
1084
    </div>
1085
                </div>
1086
                        </div>
1087
        </td>
1088
        <td class="msource"><a ext:cls="Ext.Editor" ext:member="#realign" href="output/Ext.Editor.html#realign">Editor</a></td>
1089
    </tr>
1090
        <tr class="method-row inherited expandable">
1091
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1092
        <td class="sig">
1093
        <a id="Ext.tree.TreeEditor-removeClass"></a>
1094
            <b>removeClass</b>(&nbsp;<code>string cls</code>&nbsp;) : void            <div class="mdesc">
1095
                        <div class="short">Removes a CSS class from the component's underlying element.</div>
1096
            <div class="long">
1097
                Removes a CSS class from the component's underlying element.    <div class="mdetail-params">
1098
        <strong>Parameters:</strong>
1099
        <ul><li><code>cls</code> : string<div class="sub-desc">The CSS class name to remove</div></li>        </ul>
1100
        <strong>Returns:</strong>
1101
        <ul>
1102
            <li><code>void</code></li>
1103
        </ul>
1104
    </div>
1105
                </div>
1106
                        </div>
1107
        </td>
1108
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#removeClass" href="output/Ext.Component.html#removeClass">Component</a></td>
1109
    </tr>
1110
        <tr class="method-row inherited alt expandable">
1111
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1112
        <td class="sig">
1113
        <a id="Ext.tree.TreeEditor-removeListener"></a>
1114
            <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">
1115
                        <div class="short">Removes a listener</div>
1116
            <div class="long">
1117
                Removes a listener    <div class="mdetail-params">
1118
        <strong>Parameters:</strong>
1119
        <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>
1120
        <strong>Returns:</strong>
1121
        <ul>
1122
            <li><code>void</code></li>
1123
        </ul>
1124
    </div>
1125
                </div>
1126
                        </div>
1127
        </td>
1128
        <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#removeListener" href="output/Ext.util.Observable.html#removeListener">Observable</a></td>
1129
    </tr>
1130
        <tr class="method-row inherited expandable">
1131
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1132
        <td class="sig">
1133
        <a id="Ext.tree.TreeEditor-render"></a>
1134
            <b>render</b>(&nbsp;<span class="optional" title="Optional">[<code>Mixed container</code>]</span>, <span class="optional" title="Optional">[<code>String/Number position</code>]</span>&nbsp;) : void            <div class="mdesc">
1135
                        <div class="short">If this is a lazy rendering component, render it to its container element.</div>
1136
            <div class="long">
1137
                If this is a lazy rendering component, render it to its container element.    <div class="mdetail-params">
1138
        <strong>Parameters:</strong>
1139
        <ul><li><code>container</code> : Mixed<div class="sub-desc">(optional) The element this component should be rendered into. If it is being
1140
applied to existing markup, this should be left off.</div></li><li><code>position</code> : String/Number<div class="sub-desc">(optional) The element ID or DOM node index within the container <b>before</b>
1141
which this component will be inserted (defaults to appending to the end of the container)</div></li>        </ul>
1142
        <strong>Returns:</strong>
1143
        <ul>
1144
            <li><code>void</code></li>
1145
        </ul>
1146
    </div>
1147
                </div>
1148
                        </div>
1149
        </td>
1150
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#render" href="output/Ext.Component.html#render">Component</a></td>
1151
    </tr>
1152
        <tr class="method-row inherited alt expandable">
1153
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1154
        <td class="sig">
1155
        <a id="Ext.tree.TreeEditor-resumeEvents"></a>
1156
            <b>resumeEvents</b>() : void            <div class="mdesc">
1157
                        <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>
1158
            <div class="long">
1159
                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">
1160
        <strong>Parameters:</strong>
1161
        <ul><li>None.</li>        </ul>
1162
        <strong>Returns:</strong>
1163
        <ul>
1164
            <li><code>void</code></li>
1165
        </ul>
1166
    </div>
1167
                </div>
1168
                        </div>
1169
        </td>
1170
        <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#resumeEvents" href="output/Ext.util.Observable.html#resumeEvents">Observable</a></td>
1171
    </tr>
1172
        <tr class="method-row inherited expandable">
1173
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1174
        <td class="sig">
1175
        <a id="Ext.tree.TreeEditor-setDisabled"></a>
1176
            <b>setDisabled</b>(&nbsp;<code>Boolean disabled</code>&nbsp;) : void            <div class="mdesc">
1177
                        <div class="short">Convenience function for setting disabled/enabled by boolean.</div>
1178
            <div class="long">
1179
                Convenience function for setting disabled/enabled by boolean.    <div class="mdetail-params">
1180
        <strong>Parameters:</strong>
1181
        <ul><li><code>disabled</code> : Boolean<div class="sub-desc"></div></li>        </ul>
1182
        <strong>Returns:</strong>
1183
        <ul>
1184
            <li><code>void</code></li>
1185
        </ul>
1186
    </div>
1187
                </div>
1188
                        </div>
1189
        </td>
1190
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#setDisabled" href="output/Ext.Component.html#setDisabled">Component</a></td>
1191
    </tr>
1192
        <tr class="method-row inherited alt expandable">
1193
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1194
        <td class="sig">
1195
        <a id="Ext.tree.TreeEditor-setSize"></a>
1196
            <b>setSize</b>(&nbsp;<code>Number width</code>, <code>Number height</code>&nbsp;) : void            <div class="mdesc">
1197
                        <div class="short">Sets the height and width of this editor.</div>
1198
            <div class="long">
1199
                Sets the height and width of this editor.    <div class="mdetail-params">
1200
        <strong>Parameters:</strong>
1201
        <ul><li><code>width</code> : Number<div class="sub-desc">The new width</div></li><li><code>height</code> : Number<div class="sub-desc">The new height</div></li>        </ul>
1202
        <strong>Returns:</strong>
1203
        <ul>
1204
            <li><code>void</code></li>
1205
        </ul>
1206
    </div>
1207
                </div>
1208
                        </div>
1209
        </td>
1210
        <td class="msource"><a ext:cls="Ext.Editor" ext:member="#setSize" href="output/Ext.Editor.html#setSize">Editor</a></td>
1211
    </tr>
1212
        <tr class="method-row inherited expandable">
1213
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1214
        <td class="sig">
1215
        <a id="Ext.tree.TreeEditor-setValue"></a>
1216
            <b>setValue</b>(&nbsp;<code>Mixed value</code>&nbsp;) : void            <div class="mdesc">
1217
                        <div class="short">Sets the data value of the editor</div>
1218
            <div class="long">
1219
                Sets the data value of the editor    <div class="mdetail-params">
1220
        <strong>Parameters:</strong>
1221
        <ul><li><code>value</code> : Mixed<div class="sub-desc">Any valid value supported by the underlying field</div></li>        </ul>
1222
        <strong>Returns:</strong>
1223
        <ul>
1224
            <li><code>void</code></li>
1225
        </ul>
1226
    </div>
1227
                </div>
1228
                        </div>
1229
        </td>
1230
        <td class="msource"><a ext:cls="Ext.Editor" ext:member="#setValue" href="output/Ext.Editor.html#setValue">Editor</a></td>
1231
    </tr>
1232
        <tr class="method-row inherited alt expandable">
1233
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1234
        <td class="sig">
1235
        <a id="Ext.tree.TreeEditor-setVisible"></a>
1236
            <b>setVisible</b>(&nbsp;<code>Boolean visible</code>&nbsp;) : Ext.Component            <div class="mdesc">
1237
                        <div class="short">Convenience function to hide or show this component by boolean.</div>
1238
            <div class="long">
1239
                Convenience function to hide or show this component by boolean.    <div class="mdetail-params">
1240
        <strong>Parameters:</strong>
1241
        <ul><li><code>visible</code> : Boolean<div class="sub-desc">True to show, false to hide</div></li>        </ul>
1242
        <strong>Returns:</strong>
1243
        <ul>
1244
            <li><code>Ext.Component</code><div class="sub-desc">this</div></li>
1245
        </ul>
1246
    </div>
1247
                </div>
1248
                        </div>
1249
        </td>
1250
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#setVisible" href="output/Ext.Component.html#setVisible">Component</a></td>
1251
    </tr>
1252
        <tr class="method-row inherited expandable">
1253
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1254
        <td class="sig">
1255
        <a id="Ext.tree.TreeEditor-show"></a>
1256
            <b>show</b>() : Ext.Component            <div class="mdesc">
1257
                        <div class="short">Show this component.</div>
1258
            <div class="long">
1259
                Show this component.    <div class="mdetail-params">
1260
        <strong>Parameters:</strong>
1261
        <ul><li>None.</li>        </ul>
1262
        <strong>Returns:</strong>
1263
        <ul>
1264
            <li><code>Ext.Component</code><div class="sub-desc">this</div></li>
1265
        </ul>
1266
    </div>
1267
                </div>
1268
                        </div>
1269
        </td>
1270
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#show" href="output/Ext.Component.html#show">Component</a></td>
1271
    </tr>
1272
        <tr class="method-row inherited alt expandable">
1273
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1274
        <td class="sig">
1275
        <a id="Ext.tree.TreeEditor-startEdit"></a>
1276
            <b>startEdit</b>(&nbsp;<code>Mixed el</code>, <span class="optional" title="Optional">[<code>String value</code>]</span>&nbsp;) : void            <div class="mdesc">
1277
                        <div class="short">Starts the editing process and shows the editor.</div>
1278
            <div class="long">
1279
                Starts the editing process and shows the editor.    <div class="mdetail-params">
1280
        <strong>Parameters:</strong>
1281
        <ul><li><code>el</code> : Mixed<div class="sub-desc">The element to edit</div></li><li><code>value</code> : String<div class="sub-desc">(optional) A value to initialize the editor with. If a value is not provided, it defaults
1282
to the innerHTML of el.</div></li>        </ul>
1283
        <strong>Returns:</strong>
1284
        <ul>
1285
            <li><code>void</code></li>
1286
        </ul>
1287
    </div>
1288
                </div>
1289
                        </div>
1290
        </td>
1291
        <td class="msource"><a ext:cls="Ext.Editor" ext:member="#startEdit" href="output/Ext.Editor.html#startEdit">Editor</a></td>
1292
    </tr>
1293
        <tr class="method-row inherited expandable">
1294
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1295
        <td class="sig">
1296
        <a id="Ext.tree.TreeEditor-suspendEvents"></a>
1297
            <b>suspendEvents</b>() : void            <div class="mdesc">
1298
                        <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>
1299
            <div class="long">
1300
                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">
1301
        <strong>Parameters:</strong>
1302
        <ul><li>None.</li>        </ul>
1303
        <strong>Returns:</strong>
1304
        <ul>
1305
            <li><code>void</code></li>
1306
        </ul>
1307
    </div>
1308
                </div>
1309
                        </div>
1310
        </td>
1311
        <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#suspendEvents" href="output/Ext.util.Observable.html#suspendEvents">Observable</a></td>
1312
    </tr>
1313
        <tr class="method-row inherited alt expandable">
1314
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1315
        <td class="sig">
1316
        <a id="Ext.tree.TreeEditor-un"></a>
1317
            <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">
1318
                        <div class="short">Removes a listener (shorthand for removeListener)</div>
1319
            <div class="long">
1320
                Removes a listener (shorthand for removeListener)    <div class="mdetail-params">
1321
        <strong>Parameters:</strong>
1322
        <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>
1323
        <strong>Returns:</strong>
1324
        <ul>
1325
            <li><code>void</code></li>
1326
        </ul>
1327
    </div>
1328
                </div>
1329
                        </div>
1330
        </td>
1331
        <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#un" href="output/Ext.util.Observable.html#un">Observable</a></td>
1332
    </tr>
1333
            </table>
1334
                <a id="Ext.tree.TreeEditor-events"></a>
1335
        <h2>Public Events</h2>
1336
                <table cellspacing="0" class="member-table">
1337
            <tr>
1338
                <th class="sig-header" colspan="2">Event</th>
1339
                <th class="msource-header">Defined By</th>
1340
            </tr>
1341
                <tr class="event-row inherited expandable">
1342
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1343
        <td class="sig">
1344
        <a id="Ext.tree.TreeEditor-beforecomplete"></a>
1345
            <b>beforecomplete</b> : (&nbsp;<code>Editor this</code>, <code>Mixed value</code>, <code>Mixed startValue</code>&nbsp;)            <div class="mdesc">
1346
                        <div class="short">Fires after a change has been made to the field, but before the change is reflected in the underlying
1347
field.  Saving ...</div>
1348
            <div class="long">
1349
                Fires after a change has been made to the field, but before the change is reflected in the underlying
1350
field.  Saving the change to the field can be canceled by returning false from the handler of this event.
1351
Note that if the value has not changed and ignoreNoChange = true, the editing will still end but this
1352
event will not fire since no edit actually occurred.    <div class="mdetail-params">
1353
        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
1354
        <ul><li><code>this</code> : Editor<div class="sub-desc"></div></li><li><code>value</code> : Mixed<div class="sub-desc">The current field value</div></li><li><code>startValue</code> : Mixed<div class="sub-desc">The original field value</div></li>        </ul>
1355
    </div>
1356
                </div>
1357
                        </div>
1358
        </td>
1359
        <td class="msource"><a ext:cls="Ext.Editor" ext:member="#event-beforecomplete" href="output/Ext.Editor.html#event-beforecomplete">Editor</a></td>
1360
    </tr>
1361
        <tr class="event-row inherited alt expandable">
1362
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1363
        <td class="sig">
1364
        <a id="Ext.tree.TreeEditor-beforedestroy"></a>
1365
            <b>beforedestroy</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">
1366
                        <div class="short">Fires before the component is destroyed. Return false to stop the destroy.</div>
1367
            <div class="long">
1368
                Fires before the component is destroyed. Return false to stop the destroy.    <div class="mdetail-params">
1369
        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
1370
        <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>
1371
    </div>
1372
                </div>
1373
                        </div>
1374
        </td>
1375
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-beforedestroy" href="output/Ext.Component.html#event-beforedestroy">Component</a></td>
1376
    </tr>
1377
        <tr class="event-row inherited expandable">
1378
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1379
        <td class="sig">
1380
        <a id="Ext.tree.TreeEditor-beforehide"></a>
1381
            <b>beforehide</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">
1382
                        <div class="short">Fires before the component is hidden. Return false to stop the hide.</div>
1383
            <div class="long">
1384
                Fires before the component is hidden. Return false to stop the hide.    <div class="mdetail-params">
1385
        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
1386
        <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>
1387
    </div>
1388
                </div>
1389
                        </div>
1390
        </td>
1391
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-beforehide" href="output/Ext.Component.html#event-beforehide">Component</a></td>
1392
    </tr>
1393
        <tr class="event-row inherited alt expandable">
1394
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1395
        <td class="sig">
1396
        <a id="Ext.tree.TreeEditor-beforerender"></a>
1397
            <b>beforerender</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">
1398
                        <div class="short">Fires before the component is rendered. Return false to stop the render.</div>
1399
            <div class="long">
1400
                Fires before the component is rendered. Return false to stop the render.    <div class="mdetail-params">
1401
        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
1402
        <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>
1403
    </div>
1404
                </div>
1405
                        </div>
1406
        </td>
1407
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-beforerender" href="output/Ext.Component.html#event-beforerender">Component</a></td>
1408
    </tr>
1409
        <tr class="event-row inherited expandable">
1410
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1411
        <td class="sig">
1412
        <a id="Ext.tree.TreeEditor-beforeshow"></a>
1413
            <b>beforeshow</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">
1414
                        <div class="short">Fires before the component is shown. Return false to stop the show.</div>
1415
            <div class="long">
1416
                Fires before the component is shown. Return false to stop the show.    <div class="mdetail-params">
1417
        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
1418
        <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>
1419
    </div>
1420
                </div>
1421
                        </div>
1422
        </td>
1423
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-beforeshow" href="output/Ext.Component.html#event-beforeshow">Component</a></td>
1424
    </tr>
1425
        <tr class="event-row inherited alt expandable">
1426
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1427
        <td class="sig">
1428
        <a id="Ext.tree.TreeEditor-beforestartedit"></a>
1429
            <b>beforestartedit</b> : (&nbsp;<code>Editor this</code>, <code>Ext.Element boundEl</code>, <code>Mixed value</code>&nbsp;)            <div class="mdesc">
1430
                        <div class="short">Fires when editing is initiated, but before the value changes.  Editing can be canceled by returning
1431
false from the h...</div>
1432
            <div class="long">
1433
                Fires when editing is initiated, but before the value changes.  Editing can be canceled by returning
1434
false from the handler of this event.    <div class="mdetail-params">
1435
        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
1436
        <ul><li><code>this</code> : Editor<div class="sub-desc"></div></li><li><code>boundEl</code> : Ext.Element<div class="sub-desc">The underlying element bound to this editor</div></li><li><code>value</code> : Mixed<div class="sub-desc">The field value being set</div></li>        </ul>
1437
    </div>
1438
                </div>
1439
                        </div>
1440
        </td>
1441
        <td class="msource"><a ext:cls="Ext.Editor" ext:member="#event-beforestartedit" href="output/Ext.Editor.html#event-beforestartedit">Editor</a></td>
1442
    </tr>
1443
        <tr class="event-row inherited expandable">
1444
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1445
        <td class="sig">
1446
        <a id="Ext.tree.TreeEditor-beforestaterestore"></a>
1447
            <b>beforestaterestore</b> : (&nbsp;<code>Ext.Component this</code>, <code>Object state</code>&nbsp;)            <div class="mdesc">
1448
                        <div class="short">Fires before the state of the component is restored. Return false to stop the restore.</div>
1449
            <div class="long">
1450
                Fires before the state of the component is restored. Return false to stop the restore.    <div class="mdetail-params">
1451
        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
1452
        <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>
1453
    </div>
1454
                </div>
1455
                        </div>
1456
        </td>
1457
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-beforestaterestore" href="output/Ext.Component.html#event-beforestaterestore">Component</a></td>
1458
    </tr>
1459
        <tr class="event-row inherited alt expandable">
1460
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1461
        <td class="sig">
1462
        <a id="Ext.tree.TreeEditor-beforestatesave"></a>
1463
            <b>beforestatesave</b> : (&nbsp;<code>Ext.Component this</code>, <code>Object state</code>&nbsp;)            <div class="mdesc">
1464
                        <div class="short">Fires before the state of the component is saved to the configured state provider. Return false to stop the save.</div>
1465
            <div class="long">
1466
                Fires before the state of the component is saved to the configured state provider. Return false to stop the save.    <div class="mdetail-params">
1467
        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
1468
        <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>
1469
    </div>
1470
                </div>
1471
                        </div>
1472
        </td>
1473
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-beforestatesave" href="output/Ext.Component.html#event-beforestatesave">Component</a></td>
1474
    </tr>
1475
        <tr class="event-row inherited expandable">
1476
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1477
        <td class="sig">
1478
        <a id="Ext.tree.TreeEditor-complete"></a>
1479
            <b>complete</b> : (&nbsp;<code>Editor this</code>, <code>Mixed value</code>, <code>Mixed startValue</code>&nbsp;)            <div class="mdesc">
1480
                        <div class="short">Fires after editing is complete and any changed value has been written to the underlying field.</div>
1481
            <div class="long">
1482
                Fires after editing is complete and any changed value has been written to the underlying field.    <div class="mdetail-params">
1483
        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
1484
        <ul><li><code>this</code> : Editor<div class="sub-desc"></div></li><li><code>value</code> : Mixed<div class="sub-desc">The current field value</div></li><li><code>startValue</code> : Mixed<div class="sub-desc">The original field value</div></li>        </ul>
1485
    </div>
1486
                </div>
1487
                        </div>
1488
        </td>
1489
        <td class="msource"><a ext:cls="Ext.Editor" ext:member="#event-complete" href="output/Ext.Editor.html#event-complete">Editor</a></td>
1490
    </tr>
1491
        <tr class="event-row inherited alt expandable">
1492
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1493
        <td class="sig">
1494
        <a id="Ext.tree.TreeEditor-destroy"></a>
1495
            <b>destroy</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">
1496
                        <div class="short">Fires after the component is destroyed.</div>
1497
            <div class="long">
1498
                Fires after the component is destroyed.    <div class="mdetail-params">
1499
        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
1500
        <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>
1501
    </div>
1502
                </div>
1503
                        </div>
1504
        </td>
1505
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-destroy" href="output/Ext.Component.html#event-destroy">Component</a></td>
1506
    </tr>
1507
        <tr class="event-row inherited expandable">
1508
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1509
        <td class="sig">
1510
        <a id="Ext.tree.TreeEditor-disable"></a>
1511
            <b>disable</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">
1512
                        <div class="short">Fires after the component is disabled.</div>
1513
            <div class="long">
1514
                Fires after the component is disabled.    <div class="mdetail-params">
1515
        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
1516
        <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>
1517
    </div>
1518
                </div>
1519
                        </div>
1520
        </td>
1521
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-disable" href="output/Ext.Component.html#event-disable">Component</a></td>
1522
    </tr>
1523
        <tr class="event-row inherited alt expandable">
1524
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1525
        <td class="sig">
1526
        <a id="Ext.tree.TreeEditor-enable"></a>
1527
            <b>enable</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">
1528
                        <div class="short">Fires after the component is enabled.</div>
1529
            <div class="long">
1530
                Fires after the component is enabled.    <div class="mdetail-params">
1531
        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
1532
        <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>
1533
    </div>
1534
                </div>
1535
                        </div>
1536
        </td>
1537
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-enable" href="output/Ext.Component.html#event-enable">Component</a></td>
1538
    </tr>
1539
        <tr class="event-row inherited expandable">
1540
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1541
        <td class="sig">
1542
        <a id="Ext.tree.TreeEditor-hide"></a>
1543
            <b>hide</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">
1544
                        <div class="short">Fires after the component is hidden.</div>
1545
            <div class="long">
1546
                Fires after the component is hidden.    <div class="mdetail-params">
1547
        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
1548
        <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>
1549
    </div>
1550
                </div>
1551
                        </div>
1552
        </td>
1553
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-hide" href="output/Ext.Component.html#event-hide">Component</a></td>
1554
    </tr>
1555
        <tr class="event-row inherited alt expandable">
1556
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1557
        <td class="sig">
1558
        <a id="Ext.tree.TreeEditor-render"></a>
1559
            <b>render</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">
1560
                        <div class="short">Fires after the component is rendered.</div>
1561
            <div class="long">
1562
                Fires after the component is rendered.    <div class="mdetail-params">
1563
        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
1564
        <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>
1565
    </div>
1566
                </div>
1567
                        </div>
1568
        </td>
1569
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-render" href="output/Ext.Component.html#event-render">Component</a></td>
1570
    </tr>
1571
        <tr class="event-row inherited expandable">
1572
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1573
        <td class="sig">
1574
        <a id="Ext.tree.TreeEditor-show"></a>
1575
            <b>show</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">
1576
                        <div class="short">Fires after the component is shown.</div>
1577
            <div class="long">
1578
                Fires after the component is shown.    <div class="mdetail-params">
1579
        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
1580
        <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>
1581
    </div>
1582
                </div>
1583
                        </div>
1584
        </td>
1585
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-show" href="output/Ext.Component.html#event-show">Component</a></td>
1586
    </tr>
1587
        <tr class="event-row inherited alt expandable">
1588
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1589
        <td class="sig">
1590
        <a id="Ext.tree.TreeEditor-specialkey"></a>
1591
            <b>specialkey</b> : (&nbsp;<code>Ext.form.Field this</code>, <code>Ext.EventObject e</code>&nbsp;)            <div class="mdesc">
1592
                        <div class="short">Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check
1593
Ext.EventObject.g...</div>
1594
            <div class="long">
1595
                Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check
1596
<a ext:cls="Ext.EventObject" ext:member="getKey" href="output/Ext.EventObject.html#getKey">Ext.EventObject.getKey</a> to determine which key was pressed.    <div class="mdetail-params">
1597
        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
1598
        <ul><li><code>this</code> : Ext.form.Field<div class="sub-desc"></div></li><li><code>e</code> : Ext.EventObject<div class="sub-desc">The event object</div></li>        </ul>
1599
    </div>
1600
                </div>
1601
                        </div>
1602
        </td>
1603
        <td class="msource"><a ext:cls="Ext.Editor" ext:member="#event-specialkey" href="output/Ext.Editor.html#event-specialkey">Editor</a></td>
1604
    </tr>
1605
        <tr class="event-row inherited expandable">
1606
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1607
        <td class="sig">
1608
        <a id="Ext.tree.TreeEditor-startedit"></a>
1609
            <b>startedit</b> : (&nbsp;<code>Ext.Element boundEl</code>, <code>Mixed value</code>&nbsp;)            <div class="mdesc">
1610
                        <div class="short">Fires when this editor is displayed</div>
1611
            <div class="long">
1612
                Fires when this editor is displayed    <div class="mdetail-params">
1613
        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
1614
        <ul><li><code>boundEl</code> : Ext.Element<div class="sub-desc">The underlying element bound to this editor</div></li><li><code>value</code> : Mixed<div class="sub-desc">The starting field value</div></li>        </ul>
1615
    </div>
1616
                </div>
1617
                        </div>
1618
        </td>
1619
        <td class="msource"><a ext:cls="Ext.Editor" ext:member="#event-startedit" href="output/Ext.Editor.html#event-startedit">Editor</a></td>
1620
    </tr>
1621
        <tr class="event-row inherited alt expandable">
1622
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1623
        <td class="sig">
1624
        <a id="Ext.tree.TreeEditor-staterestore"></a>
1625
            <b>staterestore</b> : (&nbsp;<code>Ext.Component this</code>, <code>Object state</code>&nbsp;)            <div class="mdesc">
1626
                        <div class="short">Fires after the state of the component is restored.</div>
1627
            <div class="long">
1628
                Fires after the state of the component is restored.    <div class="mdetail-params">
1629
        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
1630
        <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>
1631
    </div>
1632
                </div>
1633
                        </div>
1634
        </td>
1635
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-staterestore" href="output/Ext.Component.html#event-staterestore">Component</a></td>
1636
    </tr>
1637
        <tr class="event-row inherited expandable">
1638
        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1639
        <td class="sig">
1640
        <a id="Ext.tree.TreeEditor-statesave"></a>
1641
            <b>statesave</b> : (&nbsp;<code>Ext.Component this</code>, <code>Object state</code>&nbsp;)            <div class="mdesc">
1642
                        <div class="short">Fires after the state of the component is saved to the configured state provider.</div>
1643
            <div class="long">
1644
                Fires after the state of the component is saved to the configured state provider.    <div class="mdetail-params">
1645
        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
1646
        <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>
1647
    </div>
1648
                </div>
1649
                        </div>
1650
        </td>
1651
        <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-statesave" href="output/Ext.Component.html#event-statesave">Component</a></td>
1652
    </tr>
1653
            </table>
1654
 
1655
        </div>