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

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

lib/:

  • added new AJAX dependancies: ExtJS, pChart, Lightbox2
File size: 132.7 KB
Line 
1        <div class="body-wrap">
2        <div class="top-tools">
3            <a class="inner-link" href="#Ext.SplitButton-props"><img src="../resources/images/default/s.gif" class="item-icon icon-prop">Properties</a>
4            <a class="inner-link" href="#Ext.SplitButton-methods"><img src="../resources/images/default/s.gif" class="item-icon icon-method">Methods</a>
5            <a class="inner-link" href="#Ext.SplitButton-events"><img src="../resources/images/default/s.gif" class="item-icon icon-event">Events</a>
6                            <a class="inner-link" href="#Ext.SplitButton-configs"><img src="../resources/images/default/s.gif" class="item-icon icon-config">Config Options</a>
7                        <a class="bookmark" href="../docs/?class=Ext.SplitButton"><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.Button" ext:member="" href="output/Ext.Button.html">Button</a>
13      <img src="resources/elbow-end.gif"/>SplitButton</pre></div>
14                <h1>Class Ext.SplitButton</h1>
15        <table cellspacing="0">
16            <tr><td class="label">Package:</td><td class="hd-info">Ext</td></tr>
17            <tr><td class="label">Defined In:</td><td class="hd-info"><a href="../src/SplitButton.js" target="_blank">SplitButton.js</a></td></tr>
18            <tr><td class="label">Class:</td><td class="hd-info">SplitButton</td></tr>
19                        <tr><td class="label">Subclasses:</td><td class="hd-info"><a ext:cls="Ext.CycleButton" href="output/Ext.CycleButton.html">CycleButton</a>, <a ext:cls="Ext.Toolbar.SplitButton" href="output/Ext.Toolbar.SplitButton.html">Toolbar.SplitButton</a></td></tr>
20                                    <tr><td class="label">Extends:</td><td class="hd-info"><a ext:cls="Ext.Button" ext:member="" href="output/Ext.Button.html">Button</a></td></tr>
21                    </table>
22        <div class="description">
23            *
24A split button that provides a built-in dropdown arrow that can fire an event separately from the default
25click event of the button.  Typically this would be used to display a dropdown menu that provides additional
26options to the primary button action, but any custom handler can provide the arrowclick implementation.  Example usage:
27<pre><code><i>// display a dropdown menu:</i>
28<b>new</b> Ext.SplitButton({
29        renderTo: <em>'button-ct'</em>, <i>// the container id</i>
30        text: <em>'Options'</em>,
31        handler: optionsHandler, <i>// handle a click on the button itself</i>
32        menu: <b>new</b> Ext.menu.Menu({
33        items: [
34                <i>// these items will render as dropdown menu items when the arrow is clicked:</i>
35                {text: <em>'Item 1'</em>, handler: item1Handler},
36                {text: <em>'Item 2'</em>, handler: item2Handler}
37        ]
38        })
39});
40
41<i>// Instead of showing a menu, you provide any type of custom</i>
42<i>// functionality you want when the dropdown arrow is clicked:</i>
43<b>new</b> Ext.SplitButton({
44        renderTo: <em>'button-ct'</em>,
45        text: <em>'Options'</em>,
46        handler: optionsHandler,
47        arrowHandler: myCustomHandler
48});</code></pre>        </div>
49       
50        <div class="hr"></div>
51                <a id="Ext.SplitButton-configs"></a>
52        <h2>Config Options</h2>
53        <table cellspacing="0" class="member-table">
54            <tr>
55                <th class="sig-header" colspan="2">Config Options</th>
56                <th class="msource-header">Defined By</th>
57            </tr>
58                <tr class="config-row inherited">
59        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
60        <td class="sig">
61        <a id="Ext.SplitButton-allowDepress"></a>
62            <b>allowDepress</b> : Boolean            <div class="mdesc">
63                            False to not allow a pressed Button to be depressed (defaults to undefined). Only valid when <a ext:cls="Ext.Button" ext:member="enableToggle" href="output/Ext.Button.html#enableToggle">enableToggle</a> is true.                        </div>
64        </td>
65        <td class="msource"><a ext:cls="Ext.Button" ext:member="#allowDepress" href="output/Ext.Button.html#allowDepress">Button</a></td>
66    </tr>
67        <tr class="config-row inherited alt">
68        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
69        <td class="sig">
70        <a id="Ext.SplitButton-allowDomMove"></a>
71            <b>allowDomMove</b> : Boolean            <div class="mdesc">
72                            Whether the component can move the Dom node when rendering (defaults to true).                        </div>
73        </td>
74        <td class="msource"><a ext:cls="Ext.Component" ext:member="#allowDomMove" href="output/Ext.Component.html#allowDomMove">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.SplitButton-applyTo"></a>
80            <b>applyTo</b> : Mixed            <div class="mdesc">
81                        <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>
82            <div class="long">
83                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>
84                        </div>
85        </td>
86        <td class="msource"><a ext:cls="Ext.Component" ext:member="#applyTo" href="output/Ext.Component.html#applyTo">Component</a></td>
87    </tr>
88        <tr class="config-row alt">
89        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
90        <td class="sig">
91        <a id="Ext.SplitButton-arrowHandler"></a>
92            <b>arrowHandler</b> : Function            <div class="mdesc">
93                            A function called when the arrow button is clicked (can be used instead of click event)                        </div>
94        </td>
95        <td class="msource">SplitButton</td>
96    </tr>
97        <tr class="config-row">
98        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
99        <td class="sig">
100        <a id="Ext.SplitButton-arrowTooltip"></a>
101            <b>arrowTooltip</b> : String            <div class="mdesc">
102                            The title attribute of the arrow                        </div>
103        </td>
104        <td class="msource">SplitButton</td>
105    </tr>
106        <tr class="config-row inherited alt expandable">
107        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
108        <td class="sig">
109        <a id="Ext.SplitButton-autoEl"></a>
110            <b>autoEl</b> : String/Object            <div class="mdesc">
111                        <div class="short">A tag name or DomHelper spec to create an element with. This is intended to create shorthand utility components inlin...</div>
112            <div class="long">
113                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>}
114{xtype:<em>'box'</em>, autoEl: {tag:<em>'blockquote'</em>, html:<em>'autoEl is cool!'</em>}} // <b>with</b> DomHelper</code></pre>            </div>
115                        </div>
116        </td>
117        <td class="msource"><a ext:cls="Ext.Component" ext:member="#autoEl" href="output/Ext.Component.html#autoEl">Component</a></td>
118    </tr>
119        <tr class="config-row inherited expandable">
120        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
121        <td class="sig">
122        <a id="Ext.SplitButton-autoShow"></a>
123            <b>autoShow</b> : Boolean            <div class="mdesc">
124                        <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>
125            <div class="long">
126                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>
127                        </div>
128        </td>
129        <td class="msource"><a ext:cls="Ext.Component" ext:member="#autoShow" href="output/Ext.Component.html#autoShow">Component</a></td>
130    </tr>
131        <tr class="config-row inherited alt expandable">
132        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
133        <td class="sig">
134        <a id="Ext.SplitButton-buttonSelector"></a>
135            <b>buttonSelector</b> : String            <div class="mdesc">
136                        <div class="short">(Optional) A DomQuery selector which is used to extract the active, clickable element from the DOM structure created....</div>
137            <div class="long">
138                <p>(Optional) A <a ext:cls="Ext.DomQuery" href="output/Ext.DomQuery.html">DomQuery</a> selector which is used to extract the active, clickable element from the DOM structure created.</p> <p>When a custom <a ext:cls="Ext.Button" ext:member="template" href="output/Ext.Button.html#template">template</a> is used, you must ensure that this selector results in the selection of a focussable element.</p> <p>Defaults to <b><tt>"button:first-child"</tt></b>.</p>            </div>
139                        </div>
140        </td>
141        <td class="msource"><a ext:cls="Ext.Button" ext:member="#buttonSelector" href="output/Ext.Button.html#buttonSelector">Button</a></td>
142    </tr>
143        <tr class="config-row inherited expandable">
144        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
145        <td class="sig">
146        <a id="Ext.SplitButton-clearCls"></a>
147            <b>clearCls</b> : String            <div class="mdesc">
148                        <div class="short">The CSS class used to provide field clearing (defaults to 'x-form-clear-left'). This config is only used when this Co...</div>
149            <div class="long">
150                The CSS class used to provide field clearing (defaults to 'x-form-clear-left'). <p><b>This config is only used when this Component is rendered by a Container which has been configured to use the <a ext:cls="Ext.form.FormLayout" href="output/Ext.form.FormLayout.html">FormLayout</a> layout manager.</b></p>            </div>
151                        </div>
152        </td>
153        <td class="msource"><a ext:cls="Ext.Component" ext:member="#clearCls" href="output/Ext.Component.html#clearCls">Component</a></td>
154    </tr>
155        <tr class="config-row inherited alt">
156        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
157        <td class="sig">
158        <a id="Ext.SplitButton-clickEvent"></a>
159            <b>clickEvent</b> : String            <div class="mdesc">
160                            The type of event to map to the button's event handler (defaults to 'click')                        </div>
161        </td>
162        <td class="msource"><a ext:cls="Ext.Button" ext:member="#clickEvent" href="output/Ext.Button.html#clickEvent">Button</a></td>
163    </tr>
164        <tr class="config-row inherited expandable">
165        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
166        <td class="sig">
167        <a id="Ext.SplitButton-cls"></a>
168            <b>cls</b> : String            <div class="mdesc">
169                        <div class="short">An optional extra CSS class that will be added to this component's Element (defaults to ''). This can be useful for a...</div>
170            <div class="long">
171                An optional extra CSS class that will be added to this component's Element (defaults to ''). This can be useful for adding customized styles to the component or any of its children using standard CSS rules.            </div>
172                        </div>
173        </td>
174        <td class="msource"><a ext:cls="Ext.Component" ext:member="#cls" href="output/Ext.Component.html#cls">Component</a></td>
175    </tr>
176        <tr class="config-row inherited alt expandable">
177        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
178        <td class="sig">
179        <a id="Ext.SplitButton-ctCls"></a>
180            <b>ctCls</b> : String            <div class="mdesc">
181                        <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>
182            <div class="long">
183                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>
184                        </div>
185        </td>
186        <td class="msource"><a ext:cls="Ext.Component" ext:member="#ctCls" href="output/Ext.Component.html#ctCls">Component</a></td>
187    </tr>
188        <tr class="config-row inherited">
189        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
190        <td class="sig">
191        <a id="Ext.SplitButton-disabled"></a>
192            <b>disabled</b> : Boolean            <div class="mdesc">
193                            Render this component disabled (default is false).                        </div>
194        </td>
195        <td class="msource"><a ext:cls="Ext.Component" ext:member="#disabled" href="output/Ext.Component.html#disabled">Component</a></td>
196    </tr>
197        <tr class="config-row inherited alt">
198        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
199        <td class="sig">
200        <a id="Ext.SplitButton-disabledClass"></a>
201            <b>disabledClass</b> : String            <div class="mdesc">
202                            CSS class added to the component when it is disabled (defaults to "x-item-disabled").                        </div>
203        </td>
204        <td class="msource"><a ext:cls="Ext.Component" ext:member="#disabledClass" href="output/Ext.Component.html#disabledClass">Component</a></td>
205    </tr>
206        <tr class="config-row inherited">
207        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
208        <td class="sig">
209        <a id="Ext.SplitButton-enableToggle"></a>
210            <b>enableToggle</b> : Boolean            <div class="mdesc">
211                            True to enable pressed/not pressed toggling (defaults to false)                        </div>
212        </td>
213        <td class="msource"><a ext:cls="Ext.Button" ext:member="#enableToggle" href="output/Ext.Button.html#enableToggle">Button</a></td>
214    </tr>
215        <tr class="config-row inherited alt expandable">
216        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
217        <td class="sig">
218        <a id="Ext.SplitButton-fieldLabel"></a>
219            <b>fieldLabel</b> : String            <div class="mdesc">
220                        <div class="short">The label text to display next to this Component (defaults to '') This config is only used when this Component is ren...</div>
221            <div class="long">
222                The label text to display next to this Component (defaults to '') <p><b>This config is only used when this Component is rendered by a Container which has been configured to use the <a ext:cls="Ext.form.FormLayout" href="output/Ext.form.FormLayout.html">FormLayout</a> layout manager.</b></p> Example use:<pre><code>new Ext.FormPanel({
223    height: 100,
224    renderTo: Ext.getBody(),
225    items: [{
226        xtype: <em>'textfield'</em>,
227        fieldLabel: <em>'Name'</em>
228    }]
229});</code></pre>            </div>
230                        </div>
231        </td>
232        <td class="msource"><a ext:cls="Ext.Component" ext:member="#fieldLabel" href="output/Ext.Component.html#fieldLabel">Component</a></td>
233    </tr>
234        <tr class="config-row inherited">
235        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
236        <td class="sig">
237        <a id="Ext.SplitButton-handleMouseEvents"></a>
238            <b>handleMouseEvents</b> : Boolean            <div class="mdesc">
239                            False to disable visual cues on mouseover, mouseout and mousedown (defaults to true)                        </div>
240        </td>
241        <td class="msource"><a ext:cls="Ext.Button" ext:member="#handleMouseEvents" href="output/Ext.Button.html#handleMouseEvents">Button</a></td>
242    </tr>
243        <tr class="config-row inherited alt">
244        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
245        <td class="sig">
246        <a id="Ext.SplitButton-handler"></a>
247            <b>handler</b> : Function            <div class="mdesc">
248                            A function called when the button is clicked (can be used instead of click event)                        </div>
249        </td>
250        <td class="msource"><a ext:cls="Ext.Button" ext:member="#handler" href="output/Ext.Button.html#handler">Button</a></td>
251    </tr>
252        <tr class="config-row inherited">
253        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
254        <td class="sig">
255        <a id="Ext.SplitButton-hidden"></a>
256            <b>hidden</b> : Boolean            <div class="mdesc">
257                            Render this component hidden (default is false).                        </div>
258        </td>
259        <td class="msource"><a ext:cls="Ext.Component" ext:member="#hidden" href="output/Ext.Component.html#hidden">Component</a></td>
260    </tr>
261        <tr class="config-row inherited alt expandable">
262        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
263        <td class="sig">
264        <a id="Ext.SplitButton-hideLabel"></a>
265            <b>hideLabel</b> : Boolean            <div class="mdesc">
266                        <div class="short">True to completely hide the label element (defaults to false). By default, even if you do not specify a fieldLabel th...</div>
267            <div class="long">
268                True to completely hide the label element (defaults to false). By default, even if you do not specify a <a ext:cls="fieldLabel" href="output/fieldLabel.html">fieldLabel</a> the space will still be reserved so that the field will line up with other fields that do have labels. Setting this to true will cause the field to not reserve that space. <p><b>This config is only used when this Component is rendered by a Container which has been configured to use the <a ext:cls="Ext.form.FormLayout" href="output/Ext.form.FormLayout.html">FormLayout</a> layout manager.</b></p> Example use:<pre><code>new Ext.FormPanel({
269    height: 100,
270    renderTo: Ext.getBody(),
271    items: [{
272        xtype: <em>'textfield'</em>
273        hideLabel: true
274    }]
275});</code></pre>            </div>
276                        </div>
277        </td>
278        <td class="msource"><a ext:cls="Ext.Component" ext:member="#hideLabel" href="output/Ext.Component.html#hideLabel">Component</a></td>
279    </tr>
280        <tr class="config-row inherited expandable">
281        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
282        <td class="sig">
283        <a id="Ext.SplitButton-hideMode"></a>
284            <b>hideMode</b> : String            <div class="mdesc">
285                        <div class="short">How this component should be hidden. Supported values are "visibility" (css visibility), "offsets" (negative offset p...</div>
286            <div class="long">
287                <p>How this component should be hidden. Supported values are "visibility" (css visibility), "offsets" (negative offset position) and "display" (css display) - defaults to "display".</p> <p>For Containers which may be hidden and shown as part of a <a ext:cls="Ext.layout.CardLayout" href="output/Ext.layout.CardLayout.html">card layout</a> Container such as a <a ext:cls="Ext.TabPanel" href="output/Ext.TabPanel.html">TabPanel</a>, it is recommended that hideMode is configured as "offsets". This ensures that hidden Components still have height and width so that layout managers can perform measurements when calculating layouts.</p>            </div>
288                        </div>
289        </td>
290        <td class="msource"><a ext:cls="Ext.Component" ext:member="#hideMode" href="output/Ext.Component.html#hideMode">Component</a></td>
291    </tr>
292        <tr class="config-row inherited alt expandable">
293        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
294        <td class="sig">
295        <a id="Ext.SplitButton-hideParent"></a>
296            <b>hideParent</b> : Boolean            <div class="mdesc">
297                        <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>
298            <div class="long">
299                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>
300                        </div>
301        </td>
302        <td class="msource"><a ext:cls="Ext.Component" ext:member="#hideParent" href="output/Ext.Component.html#hideParent">Component</a></td>
303    </tr>
304        <tr class="config-row inherited expandable">
305        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
306        <td class="sig">
307        <a id="Ext.SplitButton-icon"></a>
308            <b>icon</b> : String            <div class="mdesc">
309                        <div class="short">The path to an image to display in the button (the image will be set as the background-image CSS property of the butt...</div>
310            <div class="long">
311                The path to an image to display in the button (the image will be set as the background-image CSS property of the button by default, so if you want a mixed icon/text button, set cls:"x-btn-text-icon")            </div>
312                        </div>
313        </td>
314        <td class="msource"><a ext:cls="Ext.Button" ext:member="#icon" href="output/Ext.Button.html#icon">Button</a></td>
315    </tr>
316        <tr class="config-row inherited alt">
317        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
318        <td class="sig">
319        <a id="Ext.SplitButton-iconCls"></a>
320            <b>iconCls</b> : String            <div class="mdesc">
321                            A css class which sets a background image to be used as the icon for this button                        </div>
322        </td>
323        <td class="msource"><a ext:cls="Ext.Button" ext:member="#iconCls" href="output/Ext.Button.html#iconCls">Button</a></td>
324    </tr>
325        <tr class="config-row inherited expandable">
326        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
327        <td class="sig">
328        <a id="Ext.SplitButton-id"></a>
329            <b>id</b> : String            <div class="mdesc">
330                        <div class="short">The unique id of this component (defaults to an auto-assigned id). You should assign an id if you need to be able to ...</div>
331            <div class="long">
332                The unique id of this component (defaults to an auto-assigned id). You should assign an id if you need to be able to access the component later and you do not have an object reference available (e.g., using <a ext:cls="Ext.ComponentMgr" ext:member="getCmp" href="output/Ext.ComponentMgr.html#getCmp">Ext.ComponentMgr.getCmp</a>). Note that this id will also be used as the element id for the containing HTML element that is rendered to the page for this component. This allows you to write id-based CSS rules to style the specific instance of this component uniquely, and also to select sub-elements using this component's id as the parent.            </div>
333                        </div>
334        </td>
335        <td class="msource"><a ext:cls="Ext.Component" ext:member="#id" href="output/Ext.Component.html#id">Component</a></td>
336    </tr>
337        <tr class="config-row inherited alt expandable">
338        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
339        <td class="sig">
340        <a id="Ext.SplitButton-itemCls"></a>
341            <b>itemCls</b> : String            <div class="mdesc">
342                        <div class="short">An additional CSS class to apply to the wrapper's form item element of this field (defaults to the container's itemCl...</div>
343            <div class="long">
344                An additional CSS class to apply to the wrapper's form item element of this field (defaults to the container's itemCls value if set, or ''). Since it is applied to the item wrapper, it allows you to write standard CSS rules that can apply to the field, the label (if specified) or any other element within the markup for the field. <p><b>This config is only used when this Component is rendered by a Container which has been configured to use the <a ext:cls="Ext.form.FormLayout" href="output/Ext.form.FormLayout.html">FormLayout</a> layout manager.</b></p> Example use:<pre><code><i>// Apply a style to the field's label:</i>
345&lt;style>
346    .required .x-form-item-label {font-weight:bold;color:red;}
347&lt;/style>
348
349<b>new</b> Ext.FormPanel({
350    height: 100,
351    renderTo: Ext.getBody(),
352    items: [{
353        xtype: <em>'textfield'</em>,
354        fieldLabel: <em>'Name'</em>,
355        itemCls: <em>'required'</em> <i>//<b>this</b> label will be styled</i>
356    },{
357        xtype: <em>'textfield'</em>,
358        fieldLabel: <em>'Favorite Color'</em>
359    }]
360});</code></pre>            </div>
361                        </div>
362        </td>
363        <td class="msource"><a ext:cls="Ext.Component" ext:member="#itemCls" href="output/Ext.Component.html#itemCls">Component</a></td>
364    </tr>
365        <tr class="config-row inherited expandable">
366        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
367        <td class="sig">
368        <a id="Ext.SplitButton-labelSeparator"></a>
369            <b>labelSeparator</b> : String            <div class="mdesc">
370                        <div class="short">The standard separator to display after the text of each form label (defaults to the value of Ext.layout.FormLayout.l...</div>
371            <div class="long">
372                The standard separator to display after the text of each form label (defaults to the value of <a ext:cls="Ext.layout.FormLayout" ext:member="labelSeparator" href="output/Ext.layout.FormLayout.html#labelSeparator">Ext.layout.FormLayout.labelSeparator</a>, which is a colon ':' by default). To display no separator for this field's label specify empty string ''. <p><b>This config is only used when this Component is rendered by a Container which has been configured to use the <a ext:cls="Ext.form.FormLayout" href="output/Ext.form.FormLayout.html">FormLayout</a> layout manager.</b></p> Example use:<pre><code>new Ext.FormPanel({
373    height: 100,
374    renderTo: Ext.getBody(),
375    items: [{
376        xtype: <em>'textfield'</em>,
377        fieldLabel: <em>'Name'</em>,
378        labelSeparator: <em>'...'</em>
379    }]
380});</code></pre>            </div>
381                        </div>
382        </td>
383        <td class="msource"><a ext:cls="Ext.Component" ext:member="#labelSeparator" href="output/Ext.Component.html#labelSeparator">Component</a></td>
384    </tr>
385        <tr class="config-row inherited alt expandable">
386        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
387        <td class="sig">
388        <a id="Ext.SplitButton-labelStyle"></a>
389            <b>labelStyle</b> : String            <div class="mdesc">
390                        <div class="short">A CSS style specification to apply directly to this field's label (defaults to the container's labelStyle value if se...</div>
391            <div class="long">
392                A CSS style specification to apply directly to this field's label (defaults to the container's labelStyle value if set, or '').<code></code>. <p><b>This config is only used when this Component is rendered by a Container which has been configured to use the <a ext:cls="Ext.form.FormLayout" href="output/Ext.form.FormLayout.html">FormLayout</a> layout manager.</b></p> Example use:<pre><code>new Ext.FormPanel({
393    height: 100,
394    renderTo: Ext.getBody(),
395    items: [{
396        xtype: <em>'textfield'</em>,
397        fieldLabel: <em>'Name'</em>,
398        labelStyle: <em>'font-weight:bold;'</em>
399    }]
400});</code></pre>            </div>
401                        </div>
402        </td>
403        <td class="msource"><a ext:cls="Ext.Component" ext:member="#labelStyle" href="output/Ext.Component.html#labelStyle">Component</a></td>
404    </tr>
405        <tr class="config-row inherited expandable">
406        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
407        <td class="sig">
408        <a id="Ext.SplitButton-listeners"></a>
409            <b>listeners</b> : Object            <div class="mdesc">
410                        <div class="short">(optional) A config object containing one or more event handlers to be added to this object during initialization. Th...</div>
411            <div class="long">
412                (optional) A config object containing one or more event handlers to be added to this object during initialization. This should be a valid listeners config object as specified in the <a ext:cls="Ext.util.Observable" ext:member="addListener" href="output/Ext.util.Observable.html#addListener">addListener</a> example for attaching multiple handlers at once.            </div>
413                        </div>
414        </td>
415        <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#listeners" href="output/Ext.util.Observable.html#listeners">Observable</a></td>
416    </tr>
417        <tr class="config-row inherited alt expandable">
418        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
419        <td class="sig">
420        <a id="Ext.SplitButton-menu"></a>
421            <b>menu</b> : Mixed            <div class="mdesc">
422                        <div class="short">Standard menu attribute consisting of a reference to a menu object, a menu id or a menu config blob (defaults to unde...</div>
423            <div class="long">
424                Standard menu attribute consisting of a reference to a menu object, a menu id or a menu config blob (defaults to undefined).            </div>
425                        </div>
426        </td>
427        <td class="msource"><a ext:cls="Ext.Button" ext:member="#menu" href="output/Ext.Button.html#menu">Button</a></td>
428    </tr>
429        <tr class="config-row inherited">
430        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
431        <td class="sig">
432        <a id="Ext.SplitButton-menuAlign"></a>
433            <b>menuAlign</b> : String            <div class="mdesc">
434                            The position to align the menu 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 'tl-bl?').                        </div>
435        </td>
436        <td class="msource"><a ext:cls="Ext.Button" ext:member="#menuAlign" href="output/Ext.Button.html#menuAlign">Button</a></td>
437    </tr>
438        <tr class="config-row inherited alt">
439        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
440        <td class="sig">
441        <a id="Ext.SplitButton-minWidth"></a>
442            <b>minWidth</b> : Number            <div class="mdesc">
443                            The minimum width for this button (used to give a set of buttons a common width)                        </div>
444        </td>
445        <td class="msource"><a ext:cls="Ext.Button" ext:member="#minWidth" href="output/Ext.Button.html#minWidth">Button</a></td>
446    </tr>
447        <tr class="config-row inherited expandable">
448        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
449        <td class="sig">
450        <a id="Ext.SplitButton-overCls"></a>
451            <b>overCls</b> : String            <div class="mdesc">
452                        <div class="short">An optional extra CSS class that will be added to this component's Element when the mouse moves over the Element, and...</div>
453            <div class="long">
454                An optional extra CSS class that will be added to this component's Element when the mouse moves over the Element, and removed when the mouse moves out. (defaults to ''). This can be useful for adding customized "active" or "hover" styles to the component or any of its children using standard CSS rules.            </div>
455                        </div>
456        </td>
457        <td class="msource"><a ext:cls="Ext.Component" ext:member="#overCls" href="output/Ext.Component.html#overCls">Component</a></td>
458    </tr>
459        <tr class="config-row inherited alt expandable">
460        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
461        <td class="sig">
462        <a id="Ext.SplitButton-plugins"></a>
463            <b>plugins</b> : Object/Array            <div class="mdesc">
464                        <div class="short">An object or array of objects that will provide custom functionality for this component. The only requirement for a v...</div>
465            <div class="long">
466                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>
467                        </div>
468        </td>
469        <td class="msource"><a ext:cls="Ext.Component" ext:member="#plugins" href="output/Ext.Component.html#plugins">Component</a></td>
470    </tr>
471        <tr class="config-row inherited">
472        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
473        <td class="sig">
474        <a id="Ext.SplitButton-pressed"></a>
475            <b>pressed</b> : Boolean            <div class="mdesc">
476                            True to start pressed (only if enableToggle = true)                        </div>
477        </td>
478        <td class="msource"><a ext:cls="Ext.Button" ext:member="#pressed" href="output/Ext.Button.html#pressed">Button</a></td>
479    </tr>
480        <tr class="config-row inherited alt expandable">
481        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
482        <td class="sig">
483        <a id="Ext.SplitButton-renderTo"></a>
484            <b>renderTo</b> : Mixed            <div class="mdesc">
485                        <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>
486            <div class="long">
487                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>
488                        </div>
489        </td>
490        <td class="msource"><a ext:cls="Ext.Component" ext:member="#renderTo" href="output/Ext.Component.html#renderTo">Component</a></td>
491    </tr>
492        <tr class="config-row inherited expandable">
493        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
494        <td class="sig">
495        <a id="Ext.SplitButton-repeat"></a>
496            <b>repeat</b> : Boolean/Object            <div class="mdesc">
497                        <div class="short">True to repeat fire the click event while the mouse is down. This can also be an Ext.util.ClickRepeater config object...</div>
498            <div class="long">
499                True to repeat fire the click event while the mouse is down. This can also be an <a ext:cls="Ext.util.ClickRepeater" href="output/Ext.util.ClickRepeater.html">Ext.util.ClickRepeater</a> config object (defaults to false).            </div>
500                        </div>
501        </td>
502        <td class="msource"><a ext:cls="Ext.Button" ext:member="#repeat" href="output/Ext.Button.html#repeat">Button</a></td>
503    </tr>
504        <tr class="config-row inherited alt">
505        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
506        <td class="sig">
507        <a id="Ext.SplitButton-scope"></a>
508            <b>scope</b> : Object            <div class="mdesc">
509                            The scope of the handler                        </div>
510        </td>
511        <td class="msource"><a ext:cls="Ext.Button" ext:member="#scope" href="output/Ext.Button.html#scope">Button</a></td>
512    </tr>
513        <tr class="config-row inherited expandable">
514        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
515        <td class="sig">
516        <a id="Ext.SplitButton-stateEvents"></a>
517            <b>stateEvents</b> : Array            <div class="mdesc">
518                        <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>
519            <div class="long">
520                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>
521                        </div>
522        </td>
523        <td class="msource"><a ext:cls="Ext.Component" ext:member="#stateEvents" href="output/Ext.Component.html#stateEvents">Component</a></td>
524    </tr>
525        <tr class="config-row inherited alt expandable">
526        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
527        <td class="sig">
528        <a id="Ext.SplitButton-stateId"></a>
529            <b>stateId</b> : String            <div class="mdesc">
530                        <div class="short">The unique id for this component to use for state management purposes (defaults to the component id if one was set, o...</div>
531            <div class="long">
532                The unique id for this component to use for state management purposes (defaults to the component id if one was set, otherwise null if the component is using a generated id). <p>See <a ext:cls="Ext.Component" ext:member="stateful" href="output/Ext.Component.html#stateful">stateful</a> for an explanation of saving and restoring Component state.</p>            </div>
533                        </div>
534        </td>
535        <td class="msource"><a ext:cls="Ext.Component" ext:member="#stateId" href="output/Ext.Component.html#stateId">Component</a></td>
536    </tr>
537        <tr class="config-row inherited expandable">
538        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
539        <td class="sig">
540        <a id="Ext.SplitButton-stateful"></a>
541            <b>stateful</b> : Boolean            <div class="mdesc">
542                        <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>
543            <div class="long">
544                <p>A flag which causes the Component to attempt to restore the state of internal properties from a saved state on startup. The component must have either a <a ext:cls="Ext.Component" ext:member="stateId" href="output/Ext.Component.html#stateId">stateId</a> or <a ext:cls="Ext.Component" ext:member="id" href="output/Ext.Component.html#id">id</a> assigned for state to be managed. Auto-generated ids are not guaranteed to be stable across page loads and cannot be relied upon to save and restore the same state for a component.<p> For state saving to work, the state manager's provider must have been set to an implementation of <a ext:cls="Ext.state.Provider" href="output/Ext.state.Provider.html">Ext.state.Provider</a> which overrides the <a ext:cls="Ext.state.Provider" ext:member="set" href="output/Ext.state.Provider.html#set">set</a> and <a ext:cls="Ext.state.Provider" ext:member="get" href="output/Ext.state.Provider.html#get">get</a> methods to save and recall name/value pairs. A built-in implementation, <a ext:cls="Ext.state.CookieProvider" href="output/Ext.state.CookieProvider.html">Ext.state.CookieProvider</a> is available.</p> <p>To set the state provider for the current page:</p> <pre><code>Ext.state.Manager.setProvider(<b>new</b> Ext.state.CookieProvider());</code></pre> <p>Components attempt to save state when one of the events listed in the <a ext:cls="Ext.Component" ext:member="stateEvents" href="output/Ext.Component.html#stateEvents">stateEvents</a> configuration fires.</p> <p>You can perform extra processing on state save and restore by attaching handlers to the <a ext:cls="Ext.Component" ext:member="beforestaterestore" href="output/Ext.Component.html#beforestaterestore">beforestaterestore</a>, <a ext:cls="Ext.Component" ext:member="staterestore" href="output/Ext.Component.html#staterestore">staterestore</a>, <a ext:cls="Ext.Component" ext:member="beforestatesave" href="output/Ext.Component.html#beforestatesave">beforestatesave</a> and <a ext:cls="Ext.Component" ext:member="statesave" href="output/Ext.Component.html#statesave">statesave</a> events</p>            </div>
545                        </div>
546        </td>
547        <td class="msource"><a ext:cls="Ext.Component" ext:member="#stateful" href="output/Ext.Component.html#stateful">Component</a></td>
548    </tr>
549        <tr class="config-row inherited alt expandable">
550        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
551        <td class="sig">
552        <a id="Ext.SplitButton-style"></a>
553            <b>style</b> : String            <div class="mdesc">
554                        <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>
555            <div class="long">
556                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>
557                        </div>
558        </td>
559        <td class="msource"><a ext:cls="Ext.Component" ext:member="#style" href="output/Ext.Component.html#style">Component</a></td>
560    </tr>
561        <tr class="config-row inherited">
562        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
563        <td class="sig">
564        <a id="Ext.SplitButton-tabIndex"></a>
565            <b>tabIndex</b> : Number            <div class="mdesc">
566                            Set a DOM tabIndex for this button (defaults to undefined)                        </div>
567        </td>
568        <td class="msource"><a ext:cls="Ext.Button" ext:member="#tabIndex" href="output/Ext.Button.html#tabIndex">Button</a></td>
569    </tr>
570        <tr class="config-row inherited alt expandable">
571        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
572        <td class="sig">
573        <a id="Ext.SplitButton-template"></a>
574            <b>template</b> : Ext.Template            <div class="mdesc">
575                        <div class="short">(Optional) An Ext.Template with which to create the Button's main element. This Template must contain numeric substit...</div>
576            <div class="long">
577                (Optional) An <a ext:cls="Ext.Template" href="output/Ext.Template.html">Ext.Template</a> with which to create the Button's main element. This Template must contain numeric substitution parameter 0 if it is to display the text property. Changing the template could require code modifications if required elements (e.g. a button) aren't present.            </div>
578                        </div>
579        </td>
580        <td class="msource"><a ext:cls="Ext.Button" ext:member="#template" href="output/Ext.Button.html#template">Button</a></td>
581    </tr>
582        <tr class="config-row inherited">
583        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
584        <td class="sig">
585        <a id="Ext.SplitButton-text"></a>
586            <b>text</b> : String            <div class="mdesc">
587                            The button text                        </div>
588        </td>
589        <td class="msource"><a ext:cls="Ext.Button" ext:member="#text" href="output/Ext.Button.html#text">Button</a></td>
590    </tr>
591        <tr class="config-row inherited alt">
592        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
593        <td class="sig">
594        <a id="Ext.SplitButton-toggleGroup"></a>
595            <b>toggleGroup</b> : String            <div class="mdesc">
596                            The group this toggle button is a member of (only 1 per group can be pressed)                        </div>
597        </td>
598        <td class="msource"><a ext:cls="Ext.Button" ext:member="#toggleGroup" href="output/Ext.Button.html#toggleGroup">Button</a></td>
599    </tr>
600        <tr class="config-row inherited expandable">
601        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
602        <td class="sig">
603        <a id="Ext.SplitButton-toggleHandler"></a>
604            <b>toggleHandler</b> : Function            <div class="mdesc">
605                        <div class="short">Function called when a Button with enableToggle set to true is clicked. Two arguments are passed: button : Ext.Button...</div>
606            <div class="long">
607                Function called when a Button with <a ext:cls="Ext.Button" ext:member="enableToggle" href="output/Ext.Button.html#enableToggle">enableToggle</a> set to true is clicked. Two arguments are passed:<ul class="mdetail-params"> <li><b>button</b> : Ext.Button<div class="sub-desc">this Button object</div></li> <li><b>state</b> : Boolean<div class="sub-desc">The next state if the Button, true means pressed.</div></li> </ul>            </div>
608                        </div>
609        </td>
610        <td class="msource"><a ext:cls="Ext.Button" ext:member="#toggleHandler" href="output/Ext.Button.html#toggleHandler">Button</a></td>
611    </tr>
612        <tr class="config-row inherited alt">
613        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
614        <td class="sig">
615        <a id="Ext.SplitButton-tooltip"></a>
616            <b>tooltip</b> : String/Object            <div class="mdesc">
617                            The tooltip for the button - can be a string or QuickTips config object                        </div>
618        </td>
619        <td class="msource"><a ext:cls="Ext.Button" ext:member="#tooltip" href="output/Ext.Button.html#tooltip">Button</a></td>
620    </tr>
621        <tr class="config-row inherited">
622        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
623        <td class="sig">
624        <a id="Ext.SplitButton-tooltipType"></a>
625            <b>tooltipType</b> : String            <div class="mdesc">
626                            The type of tooltip to use. Either "qtip" (default) for QuickTips or "title" for title attribute.                        </div>
627        </td>
628        <td class="msource"><a ext:cls="Ext.Button" ext:member="#tooltipType" href="output/Ext.Button.html#tooltipType">Button</a></td>
629    </tr>
630        <tr class="config-row inherited alt">
631        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
632        <td class="sig">
633        <a id="Ext.SplitButton-type"></a>
634            <b>type</b> : String            <div class="mdesc">
635                            submit, reset or button - defaults to 'button'                        </div>
636        </td>
637        <td class="msource"><a ext:cls="Ext.Button" ext:member="#type" href="output/Ext.Button.html#type">Button</a></td>
638    </tr>
639        <tr class="config-row inherited expandable">
640        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
641        <td class="sig">
642        <a id="Ext.SplitButton-xtype"></a>
643            <b>xtype</b> : String            <div class="mdesc">
644                        <div class="short">The registered xtype to create. This config option is not used when passing a config object into a constructor. This ...</div>
645            <div class="long">
646                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>
647                        </div>
648        </td>
649        <td class="msource"><a ext:cls="Ext.Component" ext:member="#xtype" href="output/Ext.Component.html#xtype">Component</a></td>
650    </tr>
651            </table>
652                <a id="Ext.SplitButton-props"></a>
653        <h2>Public Properties</h2>
654                <table cellspacing="0" class="member-table">
655            <tr>
656                <th class="sig-header" colspan="2">Property</th>
657                <th class="msource-header">Defined By</th>
658            </tr>
659                <tr class="property-row inherited">
660        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
661        <td class="sig">
662        <a id="Ext.SplitButton-disabled"></a>
663            <b>disabled</b> : Boolean            <div class="mdesc">
664                            True if this component is disabled. Read-only.                        </div>
665        </td>
666        <td class="msource"><a ext:cls="Ext.Component" ext:member="#disabled" href="output/Ext.Component.html#disabled">Component</a></td>
667    </tr>
668        <tr class="property-row inherited alt">
669        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
670        <td class="sig">
671        <a id="Ext.SplitButton-hidden"></a>
672            <b>hidden</b> : Boolean            <div class="mdesc">
673                           
674True if this component is hidden. Read-only.                        </div>
675        </td>
676        <td class="msource"><a ext:cls="Ext.Component" ext:member="#hidden" href="output/Ext.Component.html#hidden">Component</a></td>
677    </tr>
678        <tr class="property-row inherited">
679        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
680        <td class="sig">
681        <a id="Ext.SplitButton-initialConfig"></a>
682            <b>initialConfig</b> : Object            <div class="mdesc">
683                            This Component's initial configuration specification. Read-only.                        </div>
684        </td>
685        <td class="msource"><a ext:cls="Ext.Component" ext:member="#initialConfig" href="output/Ext.Component.html#initialConfig">Component</a></td>
686    </tr>
687        <tr class="property-row inherited alt expandable">
688        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
689        <td class="sig">
690        <a id="Ext.SplitButton-ownerCt"></a>
691            <b>ownerCt</b> : Ext.Container            <div class="mdesc">
692                        <div class="short">The component's owner Ext.Container (defaults to undefined, and is set automatically when
693the component is added to a...</div>
694            <div class="long">
695                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
696the component is added to a container).  Read-only.            </div>
697                        </div>
698        </td>
699        <td class="msource"><a ext:cls="Ext.Component" ext:member="#ownerCt" href="output/Ext.Component.html#ownerCt">Component</a></td>
700    </tr>
701        <tr class="property-row inherited">
702        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
703        <td class="sig">
704        <a id="Ext.SplitButton-pressed"></a>
705            <b>pressed</b> : Boolean            <div class="mdesc">
706                            Read-only. True if this button is pressed (only if enableToggle = true)                        </div>
707        </td>
708        <td class="msource"><a ext:cls="Ext.Button" ext:member="#pressed" href="output/Ext.Button.html#pressed">Button</a></td>
709    </tr>
710        <tr class="property-row inherited alt">
711        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
712        <td class="sig">
713        <a id="Ext.SplitButton-rendered"></a>
714            <b>rendered</b> : Boolean            <div class="mdesc">
715                            True if this component has been rendered. Read-only.                        </div>
716        </td>
717        <td class="msource"><a ext:cls="Ext.Component" ext:member="#rendered" href="output/Ext.Component.html#rendered">Component</a></td>
718    </tr>
719            </table>
720                <a id="Ext.SplitButton-methods"></a>
721        <h2>Public Methods</h2>
722                <table cellspacing="0" class="member-table">
723            <tr>
724                <th class="sig-header" colspan="2">Method</th>
725                <th class="msource-header">Defined By</th>
726            </tr>
727                <tr class="method-row expandable">
728        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
729        <td class="sig">
730        <a id="Ext.SplitButton-SplitButton"></a>
731            <b>SplitButton</b>(&nbsp;<code>Object config</code>&nbsp;)            <div class="mdesc">
732                        <div class="short">Create a new menu button</div>
733            <div class="long">
734                Create a new menu button    <div class="mdetail-params">
735        <strong>Parameters:</strong>
736        <ul><li><code>config</code> : Object<div class="sub-desc">The config object</div></li>        </ul>
737        <strong>Returns:</strong>
738        <ul>
739            <li><code></code></li>
740        </ul>
741    </div>
742                </div>
743                        </div>
744        </td>
745        <td class="msource">SplitButton</td>
746    </tr>
747        <tr class="method-row inherited alt expandable">
748        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
749        <td class="sig">
750        <a id="Ext.SplitButton-addClass"></a>
751            <b>addClass</b>(&nbsp;<code>string cls</code>&nbsp;) : void            <div class="mdesc">
752                        <div class="short">Adds a CSS class to the component's underlying element.</div>
753            <div class="long">
754                Adds a CSS class to the component's underlying element.    <div class="mdetail-params">
755        <strong>Parameters:</strong>
756        <ul><li><code>cls</code> : string<div class="sub-desc">The CSS class name to add</div></li>        </ul>
757        <strong>Returns:</strong>
758        <ul>
759            <li><code>void</code></li>
760        </ul>
761    </div>
762                </div>
763                        </div>
764        </td>
765        <td class="msource"><a ext:cls="Ext.Component" ext:member="#addClass" href="output/Ext.Component.html#addClass">Component</a></td>
766    </tr>
767        <tr class="method-row inherited expandable">
768        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
769        <td class="sig">
770        <a id="Ext.SplitButton-addEvents"></a>
771            <b>addEvents</b>(&nbsp;<code>Object object</code>&nbsp;) : void            <div class="mdesc">
772                        <div class="short">Used to define events on this Observable</div>
773            <div class="long">
774                Used to define events on this Observable    <div class="mdetail-params">
775        <strong>Parameters:</strong>
776        <ul><li><code>object</code> : Object<div class="sub-desc">The object with the events defined</div></li>        </ul>
777        <strong>Returns:</strong>
778        <ul>
779            <li><code>void</code></li>
780        </ul>
781    </div>
782                </div>
783                        </div>
784        </td>
785        <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#addEvents" href="output/Ext.util.Observable.html#addEvents">Observable</a></td>
786    </tr>
787        <tr class="method-row inherited alt expandable">
788        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
789        <td class="sig">
790        <a id="Ext.SplitButton-addListener"></a>
791            <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">
792                        <div class="short">Appends an event handler to this component</div>
793            <div class="long">
794                Appends an event handler to this component    <div class="mdetail-params">
795        <strong>Parameters:</strong>
796        <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
797function. The handler function's "this" context.</div></li><li><code>options</code> : Object<div class="sub-desc">(optional) An object containing handler configuration
798properties. This may contain any of the following properties:<ul>
799<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>
800<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>
801<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>
802<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
803by the specified number of milliseconds. If the event fires again within that time, the original
804handler is <em>not</em> invoked, but the new handler is scheduled in its place.</p></li>
805</ul><br>
806<p>
807<b>Combining Options</b><br>
808Using the options argument, it is possible to combine different types of listeners:<br>
809<br>
810A normalized, delayed, one-time listener that auto stops the event and passes a custom argument (forumId)
811<pre><code>el.on(<em>'click'</em>, <b>this</b>.onClick, <b>this</b>, {
812    single: true,
813    delay: 100,
814    forumId: 4
815});</code></pre>
816<p>
817<b>Attaching multiple handlers in 1 call</b><br>
818The method also allows for a single argument to be passed which is a config object containing properties
819which specify multiple handlers.
820<p>
821<pre><code>foo.on({
822    <em>'click'</em> : {
823        fn: <b>this</b>.onClick,
824        scope: <b>this</b>,
825        delay: 100
826    },
827    <em>'mouseover'</em> : {
828        fn: <b>this</b>.onMouseOver,
829        scope: <b>this</b>
830    },
831    <em>'mouseout'</em> : {
832        fn: <b>this</b>.onMouseOut,
833        scope: <b>this</b>
834    }
835});</code></pre>
836<p>
837Or a shorthand syntax:<br>
838<pre><code>foo.on({
839    <em>'click'</em> : <b>this</b>.onClick,
840    <em>'mouseover'</em> : <b>this</b>.onMouseOver,
841    <em>'mouseout'</em> : <b>this</b>.onMouseOut,
842     scope: <b>this</b>
843});</code></pre></div></li>        </ul>
844        <strong>Returns:</strong>
845        <ul>
846            <li><code>void</code></li>
847        </ul>
848    </div>
849                </div>
850                        </div>
851        </td>
852        <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#addListener" href="output/Ext.util.Observable.html#addListener">Observable</a></td>
853    </tr>
854        <tr class="method-row inherited expandable">
855        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
856        <td class="sig">
857        <a id="Ext.SplitButton-applyToMarkup"></a>
858            <b>applyToMarkup</b>(&nbsp;<code>String/HTMLElement el</code>&nbsp;) : void            <div class="mdesc">
859                        <div class="short">Apply this component to existing markup that is valid. With this function, no call to render() is required.</div>
860            <div class="long">
861                Apply this component to existing markup that is valid. With this function, no call to render() is required.    <div class="mdetail-params">
862        <strong>Parameters:</strong>
863        <ul><li><code>el</code> : String/HTMLElement<div class="sub-desc"></div></li>        </ul>
864        <strong>Returns:</strong>
865        <ul>
866            <li><code>void</code></li>
867        </ul>
868    </div>
869                </div>
870                        </div>
871        </td>
872        <td class="msource"><a ext:cls="Ext.Component" ext:member="#applyToMarkup" href="output/Ext.Component.html#applyToMarkup">Component</a></td>
873    </tr>
874        <tr class="method-row inherited alt expandable">
875        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
876        <td class="sig">
877        <a id="Ext.SplitButton-cloneConfig"></a>
878            <b>cloneConfig</b>(&nbsp;<code>Object overrides</code>&nbsp;) : Ext.Component            <div class="mdesc">
879                        <div class="short">Clone the current component using the original config values passed into this instance by default.</div>
880            <div class="long">
881                Clone the current component using the original config values passed into this instance by default.    <div class="mdetail-params">
882        <strong>Parameters:</strong>
883        <ul><li><code>overrides</code> : Object<div class="sub-desc">A new config containing any properties to override in the cloned version.
884An id property can be passed on this object, otherwise one will be generated to avoid duplicates.</div></li>        </ul>
885        <strong>Returns:</strong>
886        <ul>
887            <li><code>Ext.Component</code><div class="sub-desc">clone The cloned copy of this component</div></li>
888        </ul>
889    </div>
890                </div>
891                        </div>
892        </td>
893        <td class="msource"><a ext:cls="Ext.Component" ext:member="#cloneConfig" href="output/Ext.Component.html#cloneConfig">Component</a></td>
894    </tr>
895        <tr class="method-row inherited expandable">
896        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
897        <td class="sig">
898        <a id="Ext.SplitButton-destroy"></a>
899            <b>destroy</b>() : void            <div class="mdesc">
900                        <div class="short">Destroys this component by purging any event listeners, removing the component's element from the DOM,
901removing the c...</div>
902            <div class="long">
903                Destroys this component by purging any event listeners, removing the component's element from the DOM,
904removing the component from its <a ext:cls="Ext.Container" href="output/Ext.Container.html">Ext.Container</a> (if applicable) and unregistering it from
905<a ext:cls="Ext.ComponentMgr" href="output/Ext.ComponentMgr.html">Ext.ComponentMgr</a>.  Destruction is generally handled automatically by the framework and this method
906should usually not need to be called directly.    <div class="mdetail-params">
907        <strong>Parameters:</strong>
908        <ul><li>None.</li>        </ul>
909        <strong>Returns:</strong>
910        <ul>
911            <li><code>void</code></li>
912        </ul>
913    </div>
914                </div>
915                        </div>
916        </td>
917        <td class="msource"><a ext:cls="Ext.Component" ext:member="#destroy" href="output/Ext.Component.html#destroy">Component</a></td>
918    </tr>
919        <tr class="method-row inherited alt expandable">
920        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
921        <td class="sig">
922        <a id="Ext.SplitButton-disable"></a>
923            <b>disable</b>() : Ext.Component            <div class="mdesc">
924                        <div class="short">Disable this component.</div>
925            <div class="long">
926                Disable this component.    <div class="mdetail-params">
927        <strong>Parameters:</strong>
928        <ul><li>None.</li>        </ul>
929        <strong>Returns:</strong>
930        <ul>
931            <li><code>Ext.Component</code><div class="sub-desc">this</div></li>
932        </ul>
933    </div>
934                </div>
935                        </div>
936        </td>
937        <td class="msource"><a ext:cls="Ext.Component" ext:member="#disable" href="output/Ext.Component.html#disable">Component</a></td>
938    </tr>
939        <tr class="method-row inherited expandable">
940        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
941        <td class="sig">
942        <a id="Ext.SplitButton-enable"></a>
943            <b>enable</b>() : Ext.Component            <div class="mdesc">
944                        <div class="short">Enable this component.</div>
945            <div class="long">
946                Enable this component.    <div class="mdetail-params">
947        <strong>Parameters:</strong>
948        <ul><li>None.</li>        </ul>
949        <strong>Returns:</strong>
950        <ul>
951            <li><code>Ext.Component</code><div class="sub-desc">this</div></li>
952        </ul>
953    </div>
954                </div>
955                        </div>
956        </td>
957        <td class="msource"><a ext:cls="Ext.Component" ext:member="#enable" href="output/Ext.Component.html#enable">Component</a></td>
958    </tr>
959        <tr class="method-row inherited alt expandable">
960        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
961        <td class="sig">
962        <a id="Ext.SplitButton-findParentBy"></a>
963            <b>findParentBy</b>(&nbsp;<code>Function fcn</code>, <span class="optional" title="Optional">[<code>Object scope</code>]</span>&nbsp;) : Ext.Container            <div class="mdesc">
964                        <div class="short">Find a container above this component at any level by a custom function. If the passed function returns
965true, the con...</div>
966            <div class="long">
967                Find a container above this component at any level by a custom function. If the passed function returns
968true, the container will be returned. The passed function is called with the arguments (container, this component).    <div class="mdetail-params">
969        <strong>Parameters:</strong>
970        <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>
971        <strong>Returns:</strong>
972        <ul>
973            <li><code>Ext.Container</code><div class="sub-desc">The first Container for which the custom function returns true</div></li>
974        </ul>
975    </div>
976                </div>
977                        </div>
978        </td>
979        <td class="msource"><a ext:cls="Ext.Component" ext:member="#findParentBy" href="output/Ext.Component.html#findParentBy">Component</a></td>
980    </tr>
981        <tr class="method-row inherited expandable">
982        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
983        <td class="sig">
984        <a id="Ext.SplitButton-findParentByType"></a>
985            <b>findParentByType</b>(&nbsp;<code>String/Class xtype</code>&nbsp;) : Ext.Container            <div class="mdesc">
986                        <div class="short">Find a container above this component at any level by xtype or class</div>
987            <div class="long">
988                Find a container above this component at any level by xtype or class    <div class="mdetail-params">
989        <strong>Parameters:</strong>
990        <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>
991        <strong>Returns:</strong>
992        <ul>
993            <li><code>Ext.Container</code><div class="sub-desc">The first Container which matches the given xtype or class</div></li>
994        </ul>
995    </div>
996                </div>
997                        </div>
998        </td>
999        <td class="msource"><a ext:cls="Ext.Component" ext:member="#findParentByType" href="output/Ext.Component.html#findParentByType">Component</a></td>
1000    </tr>
1001        <tr class="method-row inherited alt expandable">
1002        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1003        <td class="sig">
1004        <a id="Ext.SplitButton-fireEvent"></a>
1005            <b>fireEvent</b>(&nbsp;<code>String eventName</code>, <code>Object... args</code>&nbsp;) : Boolean            <div class="mdesc">
1006                        <div class="short">Fires the specified event with the passed parameters (minus the event name).</div>
1007            <div class="long">
1008                Fires the specified event with the passed parameters (minus the event name).    <div class="mdetail-params">
1009        <strong>Parameters:</strong>
1010        <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>
1011        <strong>Returns:</strong>
1012        <ul>
1013            <li><code>Boolean</code><div class="sub-desc">returns false if any of the handlers return false otherwise it returns true</div></li>
1014        </ul>
1015    </div>
1016                </div>
1017                        </div>
1018        </td>
1019        <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#fireEvent" href="output/Ext.util.Observable.html#fireEvent">Observable</a></td>
1020    </tr>
1021        <tr class="method-row inherited expandable">
1022        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1023        <td class="sig">
1024        <a id="Ext.SplitButton-focus"></a>
1025            <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">
1026                        <div class="short">Try to focus this component.</div>
1027            <div class="long">
1028                Try to focus this component.    <div class="mdetail-params">
1029        <strong>Parameters:</strong>
1030        <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>
1031        <strong>Returns:</strong>
1032        <ul>
1033            <li><code>Ext.Component</code><div class="sub-desc">this</div></li>
1034        </ul>
1035    </div>
1036                </div>
1037                        </div>
1038        </td>
1039        <td class="msource"><a ext:cls="Ext.Component" ext:member="#focus" href="output/Ext.Component.html#focus">Component</a></td>
1040    </tr>
1041        <tr class="method-row inherited alt expandable">
1042        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1043        <td class="sig">
1044        <a id="Ext.SplitButton-getEl"></a>
1045            <b>getEl</b>() : Ext.Element            <div class="mdesc">
1046                        <div class="short">Returns the underlying <a ext:cls="Ext.Element" href="output/Ext.Element.html">Ext.Element</a>.</div>
1047            <div class="long">
1048                Returns the underlying <a ext:cls="Ext.Element" href="output/Ext.Element.html">Ext.Element</a>.    <div class="mdetail-params">
1049        <strong>Parameters:</strong>
1050        <ul><li>None.</li>        </ul>
1051        <strong>Returns:</strong>
1052        <ul>
1053            <li><code>Ext.Element</code><div class="sub-desc">The element</div></li>
1054        </ul>
1055    </div>
1056                </div>
1057                        </div>
1058        </td>
1059        <td class="msource"><a ext:cls="Ext.Component" ext:member="#getEl" href="output/Ext.Component.html#getEl">Component</a></td>
1060    </tr>
1061        <tr class="method-row inherited expandable">
1062        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1063        <td class="sig">
1064        <a id="Ext.SplitButton-getId"></a>
1065            <b>getId</b>() : String            <div class="mdesc">
1066                        <div class="short">Returns the id of this component.</div>
1067            <div class="long">
1068                Returns the id of this component.    <div class="mdetail-params">
1069        <strong>Parameters:</strong>
1070        <ul><li>None.</li>        </ul>
1071        <strong>Returns:</strong>
1072        <ul>
1073            <li><code>String</code></li>
1074        </ul>
1075    </div>
1076                </div>
1077                        </div>
1078        </td>
1079        <td class="msource"><a ext:cls="Ext.Component" ext:member="#getId" href="output/Ext.Component.html#getId">Component</a></td>
1080    </tr>
1081        <tr class="method-row inherited alt expandable">
1082        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1083        <td class="sig">
1084        <a id="Ext.SplitButton-getItemId"></a>
1085            <b>getItemId</b>() : String            <div class="mdesc">
1086                        <div class="short">Returns the item id of this component.</div>
1087            <div class="long">
1088                Returns the item id of this component.    <div class="mdetail-params">
1089        <strong>Parameters:</strong>
1090        <ul><li>None.</li>        </ul>
1091        <strong>Returns:</strong>
1092        <ul>
1093            <li><code>String</code></li>
1094        </ul>
1095    </div>
1096                </div>
1097                        </div>
1098        </td>
1099        <td class="msource"><a ext:cls="Ext.Component" ext:member="#getItemId" href="output/Ext.Component.html#getItemId">Component</a></td>
1100    </tr>
1101        <tr class="method-row inherited expandable">
1102        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1103        <td class="sig">
1104        <a id="Ext.SplitButton-getText"></a>
1105            <b>getText</b>() : String            <div class="mdesc">
1106                        <div class="short">Gets the text for this button</div>
1107            <div class="long">
1108                Gets the text for this button    <div class="mdetail-params">
1109        <strong>Parameters:</strong>
1110        <ul><li>None.</li>        </ul>
1111        <strong>Returns:</strong>
1112        <ul>
1113            <li><code>String</code><div class="sub-desc">The button text</div></li>
1114        </ul>
1115    </div>
1116                </div>
1117                        </div>
1118        </td>
1119        <td class="msource"><a ext:cls="Ext.Button" ext:member="#getText" href="output/Ext.Button.html#getText">Button</a></td>
1120    </tr>
1121        <tr class="method-row inherited alt expandable">
1122        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1123        <td class="sig">
1124        <a id="Ext.SplitButton-getXType"></a>
1125            <b>getXType</b>() : String            <div class="mdesc">
1126                        <div class="short">Gets the xtype for this component as registered with Ext.ComponentMgr. For a list of all
1127available xtypes, see the Ex...</div>
1128            <div class="long">
1129                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
1130available xtypes, see the <a ext:cls="Ext.Component" href="output/Ext.Component.html">Ext.Component</a> header. Example usage:
1131<pre><code>var t = <b>new</b> Ext.form.TextField();
1132alert(t.getXType());  // alerts <em>'textfield'</em></code></pre>    <div class="mdetail-params">
1133        <strong>Parameters:</strong>
1134        <ul><li>None.</li>        </ul>
1135        <strong>Returns:</strong>
1136        <ul>
1137            <li><code>String</code><div class="sub-desc">The xtype</div></li>
1138        </ul>
1139    </div>
1140                </div>
1141                        </div>
1142        </td>
1143        <td class="msource"><a ext:cls="Ext.Component" ext:member="#getXType" href="output/Ext.Component.html#getXType">Component</a></td>
1144    </tr>
1145        <tr class="method-row inherited expandable">
1146        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1147        <td class="sig">
1148        <a id="Ext.SplitButton-getXTypes"></a>
1149            <b>getXTypes</b>() : String            <div class="mdesc">
1150                        <div class="short">Returns this Component's xtype hierarchy as a slash-delimited string. For a list of all
1151available xtypes, see the Ext...</div>
1152            <div class="long">
1153                <p>Returns this Component's xtype hierarchy as a slash-delimited string. For a list of all
1154available xtypes, see the <a ext:cls="Ext.Component" href="output/Ext.Component.html">Ext.Component</a> header.</p>
1155<p><b>If using your own subclasses, be aware that a Component must register its own xtype
1156to participate in determination of inherited xtypes.</b></p>
1157<p>Example usage:</p>
1158<pre><code>
1159var t = new Ext.form.TextField();
1160alert(t.getXTypes());  // alerts 'component/box/field/textfield'</pre></code>    <div class="mdetail-params">
1161        <strong>Parameters:</strong>
1162        <ul><li>None.</li>        </ul>
1163        <strong>Returns:</strong>
1164        <ul>
1165            <li><code>String</code><div class="sub-desc">The xtype hierarchy string</div></li>
1166        </ul>
1167    </div>
1168                </div>
1169                        </div>
1170        </td>
1171        <td class="msource"><a ext:cls="Ext.Component" ext:member="#getXTypes" href="output/Ext.Component.html#getXTypes">Component</a></td>
1172    </tr>
1173        <tr class="method-row inherited alt expandable">
1174        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1175        <td class="sig">
1176        <a id="Ext.SplitButton-hasListener"></a>
1177            <b>hasListener</b>(&nbsp;<code>String eventName</code>&nbsp;) : Boolean            <div class="mdesc">
1178                        <div class="short">Checks to see if this object has any listeners for a specified event</div>
1179            <div class="long">
1180                Checks to see if this object has any listeners for a specified event    <div class="mdetail-params">
1181        <strong>Parameters:</strong>
1182        <ul><li><code>eventName</code> : String<div class="sub-desc">The name of the event to check for</div></li>        </ul>
1183        <strong>Returns:</strong>
1184        <ul>
1185            <li><code>Boolean</code><div class="sub-desc">True if the event is being listened for, else false</div></li>
1186        </ul>
1187    </div>
1188                </div>
1189                        </div>
1190        </td>
1191        <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#hasListener" href="output/Ext.util.Observable.html#hasListener">Observable</a></td>
1192    </tr>
1193        <tr class="method-row inherited expandable">
1194        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1195        <td class="sig">
1196        <a id="Ext.SplitButton-hasVisibleMenu"></a>
1197            <b>hasVisibleMenu</b>() : Boolean            <div class="mdesc">
1198                        <div class="short">Returns true if the button has a menu and it is visible</div>
1199            <div class="long">
1200                Returns true if the button has a menu and it is visible    <div class="mdetail-params">
1201        <strong>Parameters:</strong>
1202        <ul><li>None.</li>        </ul>
1203        <strong>Returns:</strong>
1204        <ul>
1205            <li><code>Boolean</code></li>
1206        </ul>
1207    </div>
1208                </div>
1209                        </div>
1210        </td>
1211        <td class="msource"><a ext:cls="Ext.Button" ext:member="#hasVisibleMenu" href="output/Ext.Button.html#hasVisibleMenu">Button</a></td>
1212    </tr>
1213        <tr class="method-row inherited alt expandable">
1214        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1215        <td class="sig">
1216        <a id="Ext.SplitButton-hide"></a>
1217            <b>hide</b>() : Ext.Component            <div class="mdesc">
1218                        <div class="short">Hide this component.</div>
1219            <div class="long">
1220                Hide this component.    <div class="mdetail-params">
1221        <strong>Parameters:</strong>
1222        <ul><li>None.</li>        </ul>
1223        <strong>Returns:</strong>
1224        <ul>
1225            <li><code>Ext.Component</code><div class="sub-desc">this</div></li>
1226        </ul>
1227    </div>
1228                </div>
1229                        </div>
1230        </td>
1231        <td class="msource"><a ext:cls="Ext.Component" ext:member="#hide" href="output/Ext.Component.html#hide">Component</a></td>
1232    </tr>
1233        <tr class="method-row inherited expandable">
1234        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1235        <td class="sig">
1236        <a id="Ext.SplitButton-hideMenu"></a>
1237            <b>hideMenu</b>() : void            <div class="mdesc">
1238                        <div class="short">Hide this button's menu (if it has one)</div>
1239            <div class="long">
1240                Hide this button's menu (if it has one)    <div class="mdetail-params">
1241        <strong>Parameters:</strong>
1242        <ul><li>None.</li>        </ul>
1243        <strong>Returns:</strong>
1244        <ul>
1245            <li><code>void</code></li>
1246        </ul>
1247    </div>
1248                </div>
1249                        </div>
1250        </td>
1251        <td class="msource"><a ext:cls="Ext.Button" ext:member="#hideMenu" href="output/Ext.Button.html#hideMenu">Button</a></td>
1252    </tr>
1253        <tr class="method-row inherited alt expandable">
1254        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1255        <td class="sig">
1256        <a id="Ext.SplitButton-initComponent"></a>
1257            <b>initComponent</b>() : void            <div class="mdesc">
1258                        <div class="short"></div>
1259            <div class="long">
1260                    <div class="mdetail-params">
1261        <strong>Parameters:</strong>
1262        <ul><li>None.</li>        </ul>
1263        <strong>Returns:</strong>
1264        <ul>
1265            <li><code>void</code></li>
1266        </ul>
1267    </div>
1268                </div>
1269                        </div>
1270        </td>
1271        <td class="msource"><a ext:cls="Ext.Button" ext:member="#initComponent" href="output/Ext.Button.html#initComponent">Button</a></td>
1272    </tr>
1273        <tr class="method-row inherited expandable">
1274        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1275        <td class="sig">
1276        <a id="Ext.SplitButton-isVisible"></a>
1277            <b>isVisible</b>() : void            <div class="mdesc">
1278                        <div class="short">Returns true if this component is visible.</div>
1279            <div class="long">
1280                Returns true if this component is visible.    <div class="mdetail-params">
1281        <strong>Parameters:</strong>
1282        <ul><li>None.</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.Component" ext:member="#isVisible" href="output/Ext.Component.html#isVisible">Component</a></td>
1292    </tr>
1293        <tr class="method-row inherited alt expandable">
1294        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1295        <td class="sig">
1296        <a id="Ext.SplitButton-isXType"></a>
1297            <b>isXType</b>(&nbsp;<code>String xtype</code>, <span class="optional" title="Optional">[<code>Boolean shallow</code>]</span>&nbsp;) : void            <div class="mdesc">
1298                        <div class="short">Tests whether or not this Component is of a specific xtype. This can test whether this Component is descended
1299from th...</div>
1300            <div class="long">
1301                <p>Tests whether or not this Component is of a specific xtype. This can test whether this Component is descended
1302from the xtype (default) or whether it is directly of the xtype specified (shallow = true).</p>
1303<p><b>If using your own subclasses, be aware that a Component must register its own xtype
1304to participate in determination of inherited xtypes.</b></p>
1305<p>For a list of all available xtypes, see the <a ext:cls="Ext.Component" href="output/Ext.Component.html">Ext.Component</a> header.</p>
1306<p>Example usage:</p>
1307<pre><code>var t = <b>new</b> Ext.form.TextField();
1308<b>var</b> isText = t.isXType(<em>'textfield'</em>);        <i>// true</i>
1309<b>var</b> isBoxSubclass = t.isXType(<em>'box'</em>);       <i>// true, descended from BoxComponent</i>
1310<b>var</b> isBoxInstance = t.isXType(<em>'box'</em>, true); // false, not a direct BoxComponent instance</code></pre>    <div class="mdetail-params">
1311        <strong>Parameters:</strong>
1312        <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
1313the default), or true to check whether this Component is directly of the specified xtype.</div></li>        </ul>
1314        <strong>Returns:</strong>
1315        <ul>
1316            <li><code>void</code></li>
1317        </ul>
1318    </div>
1319                </div>
1320                        </div>
1321        </td>
1322        <td class="msource"><a ext:cls="Ext.Component" ext:member="#isXType" href="output/Ext.Component.html#isXType">Component</a></td>
1323    </tr>
1324        <tr class="method-row inherited expandable">
1325        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1326        <td class="sig">
1327        <a id="Ext.SplitButton-on"></a>
1328            <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">
1329                        <div class="short">Appends an event handler to this element (shorthand for addListener)</div>
1330            <div class="long">
1331                Appends an event handler to this element (shorthand for addListener)    <div class="mdetail-params">
1332        <strong>Parameters:</strong>
1333        <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
1334function. The handler function's "this" context.</div></li><li><code>options</code> : Object<div class="sub-desc">(optional)</div></li>        </ul>
1335        <strong>Returns:</strong>
1336        <ul>
1337            <li><code>void</code></li>
1338        </ul>
1339    </div>
1340                </div>
1341                        </div>
1342        </td>
1343        <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#on" href="output/Ext.util.Observable.html#on">Observable</a></td>
1344    </tr>
1345        <tr class="method-row inherited alt expandable">
1346        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1347        <td class="sig">
1348        <a id="Ext.SplitButton-purgeListeners"></a>
1349            <b>purgeListeners</b>() : void            <div class="mdesc">
1350                        <div class="short">Removes all listeners for this object</div>
1351            <div class="long">
1352                Removes all listeners for this object    <div class="mdetail-params">
1353        <strong>Parameters:</strong>
1354        <ul><li>None.</li>        </ul>
1355        <strong>Returns:</strong>
1356        <ul>
1357            <li><code>void</code></li>
1358        </ul>
1359    </div>
1360                </div>
1361                        </div>
1362        </td>
1363        <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#purgeListeners" href="output/Ext.util.Observable.html#purgeListeners">Observable</a></td>
1364    </tr>
1365        <tr class="method-row inherited expandable">
1366        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1367        <td class="sig">
1368        <a id="Ext.SplitButton-relayEvents"></a>
1369            <b>relayEvents</b>(&nbsp;<code>Object o</code>, <code>Array events</code>&nbsp;) : void            <div class="mdesc">
1370                        <div class="short">Relays selected events from the specified Observable as if the events were fired by <tt><b>this</b></tt>.</div>
1371            <div class="long">
1372                Relays selected events from the specified Observable as if the events were fired by <tt><b>this</b></tt>.    <div class="mdetail-params">
1373        <strong>Parameters:</strong>
1374        <ul><li><code>o</code> : Object<div class="sub-desc">The Observable whose events this object is to relay.</div></li><li><code>events</code> : Array<div class="sub-desc">Array of event names to relay.</div></li>        </ul>
1375        <strong>Returns:</strong>
1376        <ul>
1377            <li><code>void</code></li>
1378        </ul>
1379    </div>
1380                </div>
1381                        </div>
1382        </td>
1383        <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#relayEvents" href="output/Ext.util.Observable.html#relayEvents">Observable</a></td>
1384    </tr>
1385        <tr class="method-row inherited alt expandable">
1386        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1387        <td class="sig">
1388        <a id="Ext.SplitButton-removeClass"></a>
1389            <b>removeClass</b>(&nbsp;<code>string cls</code>&nbsp;) : void            <div class="mdesc">
1390                        <div class="short">Removes a CSS class from the component's underlying element.</div>
1391            <div class="long">
1392                Removes a CSS class from the component's underlying element.    <div class="mdetail-params">
1393        <strong>Parameters:</strong>
1394        <ul><li><code>cls</code> : string<div class="sub-desc">The CSS class name to remove</div></li>        </ul>
1395        <strong>Returns:</strong>
1396        <ul>
1397            <li><code>void</code></li>
1398        </ul>
1399    </div>
1400                </div>
1401                        </div>
1402        </td>
1403        <td class="msource"><a ext:cls="Ext.Component" ext:member="#removeClass" href="output/Ext.Component.html#removeClass">Component</a></td>
1404    </tr>
1405        <tr class="method-row inherited expandable">
1406        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1407        <td class="sig">
1408        <a id="Ext.SplitButton-removeListener"></a>
1409            <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">
1410                        <div class="short">Removes a listener</div>
1411            <div class="long">
1412                Removes a listener    <div class="mdetail-params">
1413        <strong>Parameters:</strong>
1414        <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>
1415        <strong>Returns:</strong>
1416        <ul>
1417            <li><code>void</code></li>
1418        </ul>
1419    </div>
1420                </div>
1421                        </div>
1422        </td>
1423        <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#removeListener" href="output/Ext.util.Observable.html#removeListener">Observable</a></td>
1424    </tr>
1425        <tr class="method-row inherited alt expandable">
1426        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1427        <td class="sig">
1428        <a id="Ext.SplitButton-render"></a>
1429            <b>render</b>(&nbsp;<span class="optional" title="Optional">[<code>Element/HTMLElement/String container</code>]</span>, <span class="optional" title="Optional">[<code>String/Number position</code>]</span>&nbsp;) : void            <div class="mdesc">
1430                        <div class="short">Render this Component into the passed HTML element.
1431If you are using a Container object to house this Component, then...</div>
1432            <div class="long">
1433                <p>Render this Component into the passed HTML element.</p>
1434<p><b>If you are using a <a ext:cls="Ext.Container" href="output/Ext.Container.html">Container</a> object to house this Component, then
1435do not use the render method.</b></p>
1436<p>A Container's child Components are rendered by that Container's
1437<a ext:cls="Ext.Container" ext:member="layout" href="output/Ext.Container.html#layout">layout</a> manager when the Container is first rendered.</p>
1438<p>Certain layout managers allow dynamic addition of child components. Those that do
1439include <a ext:cls="Ext.layout.CardLayout" href="output/Ext.layout.CardLayout.html">Ext.layout.CardLayout</a>, <a ext:cls="Ext.layout.AnchorLayout" href="output/Ext.layout.AnchorLayout.html">Ext.layout.AnchorLayout</a>,
1440<a ext:cls="Ext.layout.FormLayout" href="output/Ext.layout.FormLayout.html">Ext.layout.FormLayout</a>, <a ext:cls="Ext.layout.TableLayout" href="output/Ext.layout.TableLayout.html">Ext.layout.TableLayout</a>.</p>
1441<p>If the Container is already rendered when a new child Component is added, you may need to call
1442the Container's <a ext:cls="Ext.Container" ext:member="doLayout" href="output/Ext.Container.html#doLayout">doLayout</a> to refresh the view which causes any
1443unrendered child Components to be rendered. This is required so that you can add multiple
1444child components if needed while only refreshing the layout once.</p>
1445<p>When creating complex UIs, it is important to remember that sizing and positioning
1446of child items is the responsibility of the Container's <a ext:cls="Ext.Container" ext:member="layout" href="output/Ext.Container.html#layout">layout</a> manager.
1447If you expect child items to be sized in response to user interactions, you must
1448configure the Container with a layout manager which creates and manages the type of layout you
1449have in mind.</p>
1450<p><b>Omitting the Container's <a ext:cls="Ext.Container" ext:member="layout" href="output/Ext.Container.html#layout">layout</a> config means that a basic
1451layout manager is used which does nothing but render child components sequentially into the
1452Container. No sizing or positioning will be performed in this situation.</b></p>    <div class="mdetail-params">
1453        <strong>Parameters:</strong>
1454        <ul><li><code>container</code> : Element/HTMLElement/String<div class="sub-desc">(optional) The element this Component should be
1455rendered into. If it is being created from existing markup, this should be omitted.</div></li><li><code>position</code> : String/Number<div class="sub-desc">(optional) The element ID or DOM node index within the container <b>before</b>
1456which this component will be inserted (defaults to appending to the end of the container)</div></li>        </ul>
1457        <strong>Returns:</strong>
1458        <ul>
1459            <li><code>void</code></li>
1460        </ul>
1461    </div>
1462                </div>
1463                        </div>
1464        </td>
1465        <td class="msource"><a ext:cls="Ext.Component" ext:member="#render" href="output/Ext.Component.html#render">Component</a></td>
1466    </tr>
1467        <tr class="method-row inherited expandable">
1468        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1469        <td class="sig">
1470        <a id="Ext.SplitButton-resumeEvents"></a>
1471            <b>resumeEvents</b>() : void            <div class="mdesc">
1472                        <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>
1473            <div class="long">
1474                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">
1475        <strong>Parameters:</strong>
1476        <ul><li>None.</li>        </ul>
1477        <strong>Returns:</strong>
1478        <ul>
1479            <li><code>void</code></li>
1480        </ul>
1481    </div>
1482                </div>
1483                        </div>
1484        </td>
1485        <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#resumeEvents" href="output/Ext.util.Observable.html#resumeEvents">Observable</a></td>
1486    </tr>
1487        <tr class="method-row alt expandable">
1488        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1489        <td class="sig">
1490        <a id="Ext.SplitButton-setArrowHandler"></a>
1491            <b>setArrowHandler</b>(&nbsp;<code>Function handler</code>, <span class="optional" title="Optional">[<code>Object scope</code>]</span>&nbsp;) : void            <div class="mdesc">
1492                        <div class="short">Sets this button's arrow click handler.</div>
1493            <div class="long">
1494                Sets this button's arrow click handler.    <div class="mdetail-params">
1495        <strong>Parameters:</strong>
1496        <ul><li><code>handler</code> : Function<div class="sub-desc">The function to call when the arrow is clicked</div></li><li><code>scope</code> : Object<div class="sub-desc">(optional) Scope for the function passed above</div></li>        </ul>
1497        <strong>Returns:</strong>
1498        <ul>
1499            <li><code>void</code></li>
1500        </ul>
1501    </div>
1502                </div>
1503                        </div>
1504        </td>
1505        <td class="msource">SplitButton</td>
1506    </tr>
1507        <tr class="method-row inherited expandable">
1508        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1509        <td class="sig">
1510        <a id="Ext.SplitButton-setDisabled"></a>
1511            <b>setDisabled</b>(&nbsp;<code>Boolean disabled</code>&nbsp;) : void            <div class="mdesc">
1512                        <div class="short">Convenience function for setting disabled/enabled by boolean.</div>
1513            <div class="long">
1514                Convenience function for setting disabled/enabled by boolean.    <div class="mdetail-params">
1515        <strong>Parameters:</strong>
1516        <ul><li><code>disabled</code> : Boolean<div class="sub-desc"></div></li>        </ul>
1517        <strong>Returns:</strong>
1518        <ul>
1519            <li><code>void</code></li>
1520        </ul>
1521    </div>
1522                </div>
1523                        </div>
1524        </td>
1525        <td class="msource"><a ext:cls="Ext.Component" ext:member="#setDisabled" href="output/Ext.Component.html#setDisabled">Component</a></td>
1526    </tr>
1527        <tr class="method-row inherited alt expandable">
1528        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1529        <td class="sig">
1530        <a id="Ext.SplitButton-setHandler"></a>
1531            <b>setHandler</b>(&nbsp;<code>Function handler</code>, <span class="optional" title="Optional">[<code>Object scope</code>]</span>&nbsp;) : void            <div class="mdesc">
1532                        <div class="short">Assigns this button's click handler</div>
1533            <div class="long">
1534                Assigns this button's click handler    <div class="mdetail-params">
1535        <strong>Parameters:</strong>
1536        <ul><li><code>handler</code> : Function<div class="sub-desc">The function to call when the button is clicked</div></li><li><code>scope</code> : Object<div class="sub-desc">(optional) Scope for the function passed in</div></li>        </ul>
1537        <strong>Returns:</strong>
1538        <ul>
1539            <li><code>void</code></li>
1540        </ul>
1541    </div>
1542                </div>
1543                        </div>
1544        </td>
1545        <td class="msource"><a ext:cls="Ext.Button" ext:member="#setHandler" href="output/Ext.Button.html#setHandler">Button</a></td>
1546    </tr>
1547        <tr class="method-row inherited expandable">
1548        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1549        <td class="sig">
1550        <a id="Ext.SplitButton-setIconClass"></a>
1551            <b>setIconClass</b>(&nbsp;<code>String cls</code>&nbsp;) : void            <div class="mdesc">
1552                        <div class="short">Sets the CSS class that provides a background image to use as the button's icon.  This method also changes
1553the value ...</div>
1554            <div class="long">
1555                Sets the CSS class that provides a background image to use as the button's icon.  This method also changes
1556the value of the <a ext:cls="iconCls" href="output/iconCls.html">iconCls</a> config internally.    <div class="mdetail-params">
1557        <strong>Parameters:</strong>
1558        <ul><li><code>cls</code> : String<div class="sub-desc">The CSS class providing the icon image</div></li>        </ul>
1559        <strong>Returns:</strong>
1560        <ul>
1561            <li><code>void</code></li>
1562        </ul>
1563    </div>
1564                </div>
1565                        </div>
1566        </td>
1567        <td class="msource"><a ext:cls="Ext.Button" ext:member="#setIconClass" href="output/Ext.Button.html#setIconClass">Button</a></td>
1568    </tr>
1569        <tr class="method-row inherited alt expandable">
1570        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1571        <td class="sig">
1572        <a id="Ext.SplitButton-setText"></a>
1573            <b>setText</b>(&nbsp;<code>String text</code>&nbsp;) : void            <div class="mdesc">
1574                        <div class="short">Sets this button's text</div>
1575            <div class="long">
1576                Sets this button's text    <div class="mdetail-params">
1577        <strong>Parameters:</strong>
1578        <ul><li><code>text</code> : String<div class="sub-desc">The button text</div></li>        </ul>
1579        <strong>Returns:</strong>
1580        <ul>
1581            <li><code>void</code></li>
1582        </ul>
1583    </div>
1584                </div>
1585                        </div>
1586        </td>
1587        <td class="msource"><a ext:cls="Ext.Button" ext:member="#setText" href="output/Ext.Button.html#setText">Button</a></td>
1588    </tr>
1589        <tr class="method-row inherited expandable">
1590        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1591        <td class="sig">
1592        <a id="Ext.SplitButton-setVisible"></a>
1593            <b>setVisible</b>(&nbsp;<code>Boolean visible</code>&nbsp;) : Ext.Component            <div class="mdesc">
1594                        <div class="short">Convenience function to hide or show this component by boolean.</div>
1595            <div class="long">
1596                Convenience function to hide or show this component by boolean.    <div class="mdetail-params">
1597        <strong>Parameters:</strong>
1598        <ul><li><code>visible</code> : Boolean<div class="sub-desc">True to show, false to hide</div></li>        </ul>
1599        <strong>Returns:</strong>
1600        <ul>
1601            <li><code>Ext.Component</code><div class="sub-desc">this</div></li>
1602        </ul>
1603    </div>
1604                </div>
1605                        </div>
1606        </td>
1607        <td class="msource"><a ext:cls="Ext.Component" ext:member="#setVisible" href="output/Ext.Component.html#setVisible">Component</a></td>
1608    </tr>
1609        <tr class="method-row inherited alt expandable">
1610        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1611        <td class="sig">
1612        <a id="Ext.SplitButton-show"></a>
1613            <b>show</b>() : Ext.Component            <div class="mdesc">
1614                        <div class="short">Show this component.</div>
1615            <div class="long">
1616                Show this component.    <div class="mdetail-params">
1617        <strong>Parameters:</strong>
1618        <ul><li>None.</li>        </ul>
1619        <strong>Returns:</strong>
1620        <ul>
1621            <li><code>Ext.Component</code><div class="sub-desc">this</div></li>
1622        </ul>
1623    </div>
1624                </div>
1625                        </div>
1626        </td>
1627        <td class="msource"><a ext:cls="Ext.Component" ext:member="#show" href="output/Ext.Component.html#show">Component</a></td>
1628    </tr>
1629        <tr class="method-row inherited expandable">
1630        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1631        <td class="sig">
1632        <a id="Ext.SplitButton-showMenu"></a>
1633            <b>showMenu</b>() : void            <div class="mdesc">
1634                        <div class="short">Show this button's menu (if it has one)</div>
1635            <div class="long">
1636                Show this button's menu (if it has one)    <div class="mdetail-params">
1637        <strong>Parameters:</strong>
1638        <ul><li>None.</li>        </ul>
1639        <strong>Returns:</strong>
1640        <ul>
1641            <li><code>void</code></li>
1642        </ul>
1643    </div>
1644                </div>
1645                        </div>
1646        </td>
1647        <td class="msource"><a ext:cls="Ext.Button" ext:member="#showMenu" href="output/Ext.Button.html#showMenu">Button</a></td>
1648    </tr>
1649        <tr class="method-row inherited alt expandable">
1650        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1651        <td class="sig">
1652        <a id="Ext.SplitButton-suspendEvents"></a>
1653            <b>suspendEvents</b>() : void            <div class="mdesc">
1654                        <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>
1655            <div class="long">
1656                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">
1657        <strong>Parameters:</strong>
1658        <ul><li>None.</li>        </ul>
1659        <strong>Returns:</strong>
1660        <ul>
1661            <li><code>void</code></li>
1662        </ul>
1663    </div>
1664                </div>
1665                        </div>
1666        </td>
1667        <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#suspendEvents" href="output/Ext.util.Observable.html#suspendEvents">Observable</a></td>
1668    </tr>
1669        <tr class="method-row inherited expandable">
1670        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1671        <td class="sig">
1672        <a id="Ext.SplitButton-toggle"></a>
1673            <b>toggle</b>(&nbsp;<span class="optional" title="Optional">[<code>Boolean state</code>]</span>&nbsp;) : void            <div class="mdesc">
1674                        <div class="short">If a state it passed, it becomes the pressed state otherwise the current state is toggled.</div>
1675            <div class="long">
1676                If a state it passed, it becomes the pressed state otherwise the current state is toggled.    <div class="mdetail-params">
1677        <strong>Parameters:</strong>
1678        <ul><li><code>state</code> : Boolean<div class="sub-desc">(optional) Force a particular state</div></li>        </ul>
1679        <strong>Returns:</strong>
1680        <ul>
1681            <li><code>void</code></li>
1682        </ul>
1683    </div>
1684                </div>
1685                        </div>
1686        </td>
1687        <td class="msource"><a ext:cls="Ext.Button" ext:member="#toggle" href="output/Ext.Button.html#toggle">Button</a></td>
1688    </tr>
1689        <tr class="method-row inherited alt expandable">
1690        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1691        <td class="sig">
1692        <a id="Ext.SplitButton-un"></a>
1693            <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">
1694                        <div class="short">Removes a listener (shorthand for removeListener)</div>
1695            <div class="long">
1696                Removes a listener (shorthand for removeListener)    <div class="mdetail-params">
1697        <strong>Parameters:</strong>
1698        <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>
1699        <strong>Returns:</strong>
1700        <ul>
1701            <li><code>void</code></li>
1702        </ul>
1703    </div>
1704                </div>
1705                        </div>
1706        </td>
1707        <td class="msource"><a ext:cls="Ext.util.Observable" ext:member="#un" href="output/Ext.util.Observable.html#un">Observable</a></td>
1708    </tr>
1709            </table>
1710                <a id="Ext.SplitButton-events"></a>
1711        <h2>Public Events</h2>
1712                <table cellspacing="0" class="member-table">
1713            <tr>
1714                <th class="sig-header" colspan="2">Event</th>
1715                <th class="msource-header">Defined By</th>
1716            </tr>
1717                <tr class="event-row expandable">
1718        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1719        <td class="sig">
1720        <a id="Ext.SplitButton-arrowclick"></a>
1721            <b>arrowclick</b> : (&nbsp;<code>MenuButton this</code>, <code>EventObject e</code>&nbsp;)            <div class="mdesc">
1722                        <div class="short">Fires when this button's arrow is clicked</div>
1723            <div class="long">
1724                Fires when this button's arrow is clicked    <div class="mdetail-params">
1725        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
1726        <ul><li><code>this</code> : MenuButton<div class="sub-desc"></div></li><li><code>e</code> : EventObject<div class="sub-desc">The click event</div></li>        </ul>
1727    </div>
1728                </div>
1729                        </div>
1730        </td>
1731        <td class="msource">SplitButton</td>
1732    </tr>
1733        <tr class="event-row inherited alt expandable">
1734        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1735        <td class="sig">
1736        <a id="Ext.SplitButton-beforedestroy"></a>
1737            <b>beforedestroy</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">
1738                        <div class="short">Fires before the component is destroyed. Return false to stop the destroy.</div>
1739            <div class="long">
1740                Fires before the component is destroyed. Return false to stop the destroy.    <div class="mdetail-params">
1741        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
1742        <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>
1743    </div>
1744                </div>
1745                        </div>
1746        </td>
1747        <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-beforedestroy" href="output/Ext.Component.html#event-beforedestroy">Component</a></td>
1748    </tr>
1749        <tr class="event-row inherited expandable">
1750        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1751        <td class="sig">
1752        <a id="Ext.SplitButton-beforehide"></a>
1753            <b>beforehide</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">
1754                        <div class="short">Fires before the component is hidden. Return false to stop the hide.</div>
1755            <div class="long">
1756                Fires before the component is hidden. Return false to stop the hide.    <div class="mdetail-params">
1757        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
1758        <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>
1759    </div>
1760                </div>
1761                        </div>
1762        </td>
1763        <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-beforehide" href="output/Ext.Component.html#event-beforehide">Component</a></td>
1764    </tr>
1765        <tr class="event-row inherited alt expandable">
1766        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1767        <td class="sig">
1768        <a id="Ext.SplitButton-beforerender"></a>
1769            <b>beforerender</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">
1770                        <div class="short">Fires before the component is rendered. Return false to stop the render.</div>
1771            <div class="long">
1772                Fires before the component is rendered. Return false to stop the render.    <div class="mdetail-params">
1773        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
1774        <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>
1775    </div>
1776                </div>
1777                        </div>
1778        </td>
1779        <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-beforerender" href="output/Ext.Component.html#event-beforerender">Component</a></td>
1780    </tr>
1781        <tr class="event-row inherited expandable">
1782        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1783        <td class="sig">
1784        <a id="Ext.SplitButton-beforeshow"></a>
1785            <b>beforeshow</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">
1786                        <div class="short">Fires before the component is shown. Return false to stop the show.</div>
1787            <div class="long">
1788                Fires before the component is shown. Return false to stop the show.    <div class="mdetail-params">
1789        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
1790        <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>
1791    </div>
1792                </div>
1793                        </div>
1794        </td>
1795        <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-beforeshow" href="output/Ext.Component.html#event-beforeshow">Component</a></td>
1796    </tr>
1797        <tr class="event-row inherited alt expandable">
1798        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1799        <td class="sig">
1800        <a id="Ext.SplitButton-beforestaterestore"></a>
1801            <b>beforestaterestore</b> : (&nbsp;<code>Ext.Component this</code>, <code>Object state</code>&nbsp;)            <div class="mdesc">
1802                        <div class="short">Fires before the state of the component is restored. Return false to stop the restore.</div>
1803            <div class="long">
1804                Fires before the state of the component is restored. Return false to stop the restore.    <div class="mdetail-params">
1805        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
1806        <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>
1807    </div>
1808                </div>
1809                        </div>
1810        </td>
1811        <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-beforestaterestore" href="output/Ext.Component.html#event-beforestaterestore">Component</a></td>
1812    </tr>
1813        <tr class="event-row inherited expandable">
1814        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1815        <td class="sig">
1816        <a id="Ext.SplitButton-beforestatesave"></a>
1817            <b>beforestatesave</b> : (&nbsp;<code>Ext.Component this</code>, <code>Object state</code>&nbsp;)            <div class="mdesc">
1818                        <div class="short">Fires before the state of the component is saved to the configured state provider. Return false to stop the save.</div>
1819            <div class="long">
1820                Fires before the state of the component is saved to the configured state provider. Return false to stop the save.    <div class="mdetail-params">
1821        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
1822        <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>
1823    </div>
1824                </div>
1825                        </div>
1826        </td>
1827        <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-beforestatesave" href="output/Ext.Component.html#event-beforestatesave">Component</a></td>
1828    </tr>
1829        <tr class="event-row inherited alt expandable">
1830        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1831        <td class="sig">
1832        <a id="Ext.SplitButton-click"></a>
1833            <b>click</b> : (&nbsp;<code>Button this</code>, <code>EventObject e</code>&nbsp;)            <div class="mdesc">
1834                        <div class="short">Fires when this button is clicked</div>
1835            <div class="long">
1836                Fires when this button is clicked    <div class="mdetail-params">
1837        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
1838        <ul><li><code>this</code> : Button<div class="sub-desc"></div></li><li><code>e</code> : EventObject<div class="sub-desc">The click event</div></li>        </ul>
1839    </div>
1840                </div>
1841                        </div>
1842        </td>
1843        <td class="msource"><a ext:cls="Ext.Button" ext:member="#event-click" href="output/Ext.Button.html#event-click">Button</a></td>
1844    </tr>
1845        <tr class="event-row inherited expandable">
1846        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1847        <td class="sig">
1848        <a id="Ext.SplitButton-destroy"></a>
1849            <b>destroy</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">
1850                        <div class="short">Fires after the component is destroyed.</div>
1851            <div class="long">
1852                Fires after the component is destroyed.    <div class="mdetail-params">
1853        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
1854        <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>
1855    </div>
1856                </div>
1857                        </div>
1858        </td>
1859        <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-destroy" href="output/Ext.Component.html#event-destroy">Component</a></td>
1860    </tr>
1861        <tr class="event-row inherited alt expandable">
1862        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1863        <td class="sig">
1864        <a id="Ext.SplitButton-disable"></a>
1865            <b>disable</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">
1866                        <div class="short">Fires after the component is disabled.</div>
1867            <div class="long">
1868                Fires after the component is disabled.    <div class="mdetail-params">
1869        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
1870        <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>
1871    </div>
1872                </div>
1873                        </div>
1874        </td>
1875        <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-disable" href="output/Ext.Component.html#event-disable">Component</a></td>
1876    </tr>
1877        <tr class="event-row inherited expandable">
1878        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1879        <td class="sig">
1880        <a id="Ext.SplitButton-enable"></a>
1881            <b>enable</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">
1882                        <div class="short">Fires after the component is enabled.</div>
1883            <div class="long">
1884                Fires after the component is enabled.    <div class="mdetail-params">
1885        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
1886        <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>
1887    </div>
1888                </div>
1889                        </div>
1890        </td>
1891        <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-enable" href="output/Ext.Component.html#event-enable">Component</a></td>
1892    </tr>
1893        <tr class="event-row inherited alt expandable">
1894        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1895        <td class="sig">
1896        <a id="Ext.SplitButton-hide"></a>
1897            <b>hide</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">
1898                        <div class="short">Fires after the component is hidden.</div>
1899            <div class="long">
1900                Fires after the component is hidden.    <div class="mdetail-params">
1901        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
1902        <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>
1903    </div>
1904                </div>
1905                        </div>
1906        </td>
1907        <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-hide" href="output/Ext.Component.html#event-hide">Component</a></td>
1908    </tr>
1909        <tr class="event-row inherited expandable">
1910        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1911        <td class="sig">
1912        <a id="Ext.SplitButton-menuhide"></a>
1913            <b>menuhide</b> : (&nbsp;<code>Button this</code>, <code>Menu menu</code>&nbsp;)            <div class="mdesc">
1914                        <div class="short">If this button has a menu, this event fires when it is hidden</div>
1915            <div class="long">
1916                If this button has a menu, this event fires when it is hidden    <div class="mdetail-params">
1917        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
1918        <ul><li><code>this</code> : Button<div class="sub-desc"></div></li><li><code>menu</code> : Menu<div class="sub-desc"></div></li>        </ul>
1919    </div>
1920                </div>
1921                        </div>
1922        </td>
1923        <td class="msource"><a ext:cls="Ext.Button" ext:member="#event-menuhide" href="output/Ext.Button.html#event-menuhide">Button</a></td>
1924    </tr>
1925        <tr class="event-row inherited alt expandable">
1926        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1927        <td class="sig">
1928        <a id="Ext.SplitButton-menushow"></a>
1929            <b>menushow</b> : (&nbsp;<code>Button this</code>, <code>Menu menu</code>&nbsp;)            <div class="mdesc">
1930                        <div class="short">If this button has a menu, this event fires when it is shown</div>
1931            <div class="long">
1932                If this button has a menu, this event fires when it is shown    <div class="mdetail-params">
1933        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
1934        <ul><li><code>this</code> : Button<div class="sub-desc"></div></li><li><code>menu</code> : Menu<div class="sub-desc"></div></li>        </ul>
1935    </div>
1936                </div>
1937                        </div>
1938        </td>
1939        <td class="msource"><a ext:cls="Ext.Button" ext:member="#event-menushow" href="output/Ext.Button.html#event-menushow">Button</a></td>
1940    </tr>
1941        <tr class="event-row inherited expandable">
1942        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1943        <td class="sig">
1944        <a id="Ext.SplitButton-menutriggerout"></a>
1945            <b>menutriggerout</b> : (&nbsp;<code>Button this</code>, <code>Menu menu</code>, <code>EventObject e</code>&nbsp;)            <div class="mdesc">
1946                        <div class="short">If this button has a menu, this event fires when the mouse leaves the menu triggering element</div>
1947            <div class="long">
1948                If this button has a menu, this event fires when the mouse leaves the menu triggering element    <div class="mdetail-params">
1949        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
1950        <ul><li><code>this</code> : Button<div class="sub-desc"></div></li><li><code>menu</code> : Menu<div class="sub-desc"></div></li><li><code>e</code> : EventObject<div class="sub-desc"></div></li>        </ul>
1951    </div>
1952                </div>
1953                        </div>
1954        </td>
1955        <td class="msource"><a ext:cls="Ext.Button" ext:member="#event-menutriggerout" href="output/Ext.Button.html#event-menutriggerout">Button</a></td>
1956    </tr>
1957        <tr class="event-row inherited alt expandable">
1958        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1959        <td class="sig">
1960        <a id="Ext.SplitButton-menutriggerover"></a>
1961            <b>menutriggerover</b> : (&nbsp;<code>Button this</code>, <code>Menu menu</code>, <code>EventObject e</code>&nbsp;)            <div class="mdesc">
1962                        <div class="short">If this button has a menu, this event fires when the mouse enters the menu triggering element</div>
1963            <div class="long">
1964                If this button has a menu, this event fires when the mouse enters the menu triggering element    <div class="mdetail-params">
1965        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
1966        <ul><li><code>this</code> : Button<div class="sub-desc"></div></li><li><code>menu</code> : Menu<div class="sub-desc"></div></li><li><code>e</code> : EventObject<div class="sub-desc"></div></li>        </ul>
1967    </div>
1968                </div>
1969                        </div>
1970        </td>
1971        <td class="msource"><a ext:cls="Ext.Button" ext:member="#event-menutriggerover" href="output/Ext.Button.html#event-menutriggerover">Button</a></td>
1972    </tr>
1973        <tr class="event-row inherited expandable">
1974        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1975        <td class="sig">
1976        <a id="Ext.SplitButton-mouseout"></a>
1977            <b>mouseout</b> : (&nbsp;<code>Button this</code>, <code>Event e</code>&nbsp;)            <div class="mdesc">
1978                        <div class="short">Fires when the mouse exits the button</div>
1979            <div class="long">
1980                Fires when the mouse exits the button    <div class="mdetail-params">
1981        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
1982        <ul><li><code>this</code> : Button<div class="sub-desc"></div></li><li><code>e</code> : Event<div class="sub-desc">The event object</div></li>        </ul>
1983    </div>
1984                </div>
1985                        </div>
1986        </td>
1987        <td class="msource"><a ext:cls="Ext.Button" ext:member="#event-mouseout" href="output/Ext.Button.html#event-mouseout">Button</a></td>
1988    </tr>
1989        <tr class="event-row inherited alt expandable">
1990        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
1991        <td class="sig">
1992        <a id="Ext.SplitButton-mouseover"></a>
1993            <b>mouseover</b> : (&nbsp;<code>Button this</code>, <code>Event e</code>&nbsp;)            <div class="mdesc">
1994                        <div class="short">Fires when the mouse hovers over the button</div>
1995            <div class="long">
1996                Fires when the mouse hovers over the button    <div class="mdetail-params">
1997        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
1998        <ul><li><code>this</code> : Button<div class="sub-desc"></div></li><li><code>e</code> : Event<div class="sub-desc">The event object</div></li>        </ul>
1999    </div>
2000                </div>
2001                        </div>
2002        </td>
2003        <td class="msource"><a ext:cls="Ext.Button" ext:member="#event-mouseover" href="output/Ext.Button.html#event-mouseover">Button</a></td>
2004    </tr>
2005        <tr class="event-row inherited expandable">
2006        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
2007        <td class="sig">
2008        <a id="Ext.SplitButton-render"></a>
2009            <b>render</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">
2010                        <div class="short">Fires after the component is rendered.</div>
2011            <div class="long">
2012                Fires after the component is rendered.    <div class="mdetail-params">
2013        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
2014        <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>
2015    </div>
2016                </div>
2017                        </div>
2018        </td>
2019        <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-render" href="output/Ext.Component.html#event-render">Component</a></td>
2020    </tr>
2021        <tr class="event-row inherited alt expandable">
2022        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
2023        <td class="sig">
2024        <a id="Ext.SplitButton-show"></a>
2025            <b>show</b> : (&nbsp;<code>Ext.Component this</code>&nbsp;)            <div class="mdesc">
2026                        <div class="short">Fires after the component is shown.</div>
2027            <div class="long">
2028                Fires after the component is shown.    <div class="mdetail-params">
2029        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
2030        <ul><li><code>this</code> : Ext.Component<div class="sub-desc"></div></li>        </ul>
2031    </div>
2032                </div>
2033                        </div>
2034        </td>
2035        <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-show" href="output/Ext.Component.html#event-show">Component</a></td>
2036    </tr>
2037        <tr class="event-row inherited expandable">
2038        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
2039        <td class="sig">
2040        <a id="Ext.SplitButton-staterestore"></a>
2041            <b>staterestore</b> : (&nbsp;<code>Ext.Component this</code>, <code>Object state</code>&nbsp;)            <div class="mdesc">
2042                        <div class="short">Fires after the state of the component is restored.</div>
2043            <div class="long">
2044                Fires after the state of the component is restored.    <div class="mdetail-params">
2045        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
2046        <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>
2047    </div>
2048                </div>
2049                        </div>
2050        </td>
2051        <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-staterestore" href="output/Ext.Component.html#event-staterestore">Component</a></td>
2052    </tr>
2053        <tr class="event-row inherited alt expandable">
2054        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
2055        <td class="sig">
2056        <a id="Ext.SplitButton-statesave"></a>
2057            <b>statesave</b> : (&nbsp;<code>Ext.Component this</code>, <code>Object state</code>&nbsp;)            <div class="mdesc">
2058                        <div class="short">Fires after the state of the component is saved to the configured state provider.</div>
2059            <div class="long">
2060                Fires after the state of the component is saved to the configured state provider.    <div class="mdetail-params">
2061        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
2062        <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>
2063    </div>
2064                </div>
2065                        </div>
2066        </td>
2067        <td class="msource"><a ext:cls="Ext.Component" ext:member="#event-statesave" href="output/Ext.Component.html#event-statesave">Component</a></td>
2068    </tr>
2069        <tr class="event-row inherited expandable">
2070        <td class="micon"><a class="exi" href="#expand">&nbsp;</a></td>
2071        <td class="sig">
2072        <a id="Ext.SplitButton-toggle"></a>
2073            <b>toggle</b> : (&nbsp;<code>Button this</code>, <code>Boolean pressed</code>&nbsp;)            <div class="mdesc">
2074                        <div class="short">Fires when the "pressed" state of this button changes (only if enableToggle = true)</div>
2075            <div class="long">
2076                Fires when the "pressed" state of this button changes (only if enableToggle = true)    <div class="mdetail-params">
2077        <strong style="font-weight:normal;">Listeners will be called with the following arguments:</strong>
2078        <ul><li><code>this</code> : Button<div class="sub-desc"></div></li><li><code>pressed</code> : Boolean<div class="sub-desc"></div></li>        </ul>
2079    </div>
2080                </div>
2081                        </div>
2082        </td>
2083        <td class="msource"><a ext:cls="Ext.Button" ext:member="#event-toggle" href="output/Ext.Button.html#event-toggle">Button</a></td>
2084    </tr>
2085            </table>
2086       
2087        </div>
Note: See TracBrowser for help on using the repository browser.