Upgrade to ExtJS 3.2.0 - Released 03/30/2010
[extjs.git] / src / widgets / form / Combo.js
1 /*!
2  * Ext JS Library 3.2.0
3  * Copyright(c) 2006-2010 Ext JS, Inc.
4  * licensing@extjs.com
5  * http://www.extjs.com/license
6  */
7 /**
8  * @class Ext.form.ComboBox
9  * @extends Ext.form.TriggerField
10  * <p>A combobox control with support for autocomplete, remote-loading, paging and many other features.</p>
11  * <p>A ComboBox works in a similar manner to a traditional HTML &lt;select> field. The difference is
12  * that to submit the {@link #valueField}, you must specify a {@link #hiddenName} to create a hidden input
13  * field to hold the value of the valueField. The <i>{@link #displayField}</i> is shown in the text field
14  * which is named according to the {@link #name}.</p>
15  * <p><b><u>Events</u></b></p>
16  * <p>To do something when something in ComboBox is selected, configure the select event:<pre><code>
17 var cb = new Ext.form.ComboBox({
18     // all of your config options
19     listeners:{
20          scope: yourScope,
21          'select': yourFunction
22     }
23 });
24
25 // Alternatively, you can assign events after the object is created:
26 var cb = new Ext.form.ComboBox(yourOptions);
27 cb.on('select', yourFunction, yourScope);
28  * </code></pre></p>
29  *
30  * <p><b><u>ComboBox in Grid</u></b></p>
31  * <p>If using a ComboBox in an {@link Ext.grid.EditorGridPanel Editor Grid} a {@link Ext.grid.Column#renderer renderer}
32  * will be needed to show the displayField when the editor is not active.  Set up the renderer manually, or implement
33  * a reusable render, for example:<pre><code>
34 // create reusable renderer
35 Ext.util.Format.comboRenderer = function(combo){
36     return function(value){
37         var record = combo.findRecord(combo.{@link #valueField}, value);
38         return record ? record.get(combo.{@link #displayField}) : combo.{@link #valueNotFoundText};
39     }
40 }
41
42 // create the combo instance
43 var combo = new Ext.form.ComboBox({
44     {@link #typeAhead}: true,
45     {@link #triggerAction}: 'all',
46     {@link #lazyRender}:true,
47     {@link #mode}: 'local',
48     {@link #store}: new Ext.data.ArrayStore({
49         id: 0,
50         fields: [
51             'myId',
52             'displayText'
53         ],
54         data: [[1, 'item1'], [2, 'item2']]
55     }),
56     {@link #valueField}: 'myId',
57     {@link #displayField}: 'displayText'
58 });
59
60 // snippet of column model used within grid
61 var cm = new Ext.grid.ColumnModel([{
62        ...
63     },{
64        header: "Some Header",
65        dataIndex: 'whatever',
66        width: 130,
67        editor: combo, // specify reference to combo instance
68        renderer: Ext.util.Format.comboRenderer(combo) // pass combo instance to reusable renderer
69     },
70     ...
71 ]);
72  * </code></pre></p>
73  *
74  * <p><b><u>Filtering</u></b></p>
75  * <p>A ComboBox {@link #doQuery uses filtering itself}, for information about filtering the ComboBox
76  * store manually see <tt>{@link #lastQuery}</tt>.</p>
77  * @constructor
78  * Create a new ComboBox.
79  * @param {Object} config Configuration options
80  * @xtype combo
81  */
82 Ext.form.ComboBox = Ext.extend(Ext.form.TriggerField, {
83     /**
84      * @cfg {Mixed} transform The id, DOM node or element of an existing HTML SELECT to convert to a ComboBox.
85      * Note that if you specify this and the combo is going to be in an {@link Ext.form.BasicForm} or
86      * {@link Ext.form.FormPanel}, you must also set <tt>{@link #lazyRender} = true</tt>.
87      */
88     /**
89      * @cfg {Boolean} lazyRender <tt>true</tt> to prevent the ComboBox from rendering until requested
90      * (should always be used when rendering into an {@link Ext.Editor} (e.g. {@link Ext.grid.EditorGridPanel Grids}),
91      * defaults to <tt>false</tt>).
92      */
93     /**
94      * @cfg {String/Object} autoCreate <p>A {@link Ext.DomHelper DomHelper} element spec, or <tt>true</tt> for a default
95      * element spec. Used to create the {@link Ext.Component#getEl Element} which will encapsulate this Component.
96      * See <tt>{@link Ext.Component#autoEl autoEl}</tt> for details.  Defaults to:</p>
97      * <pre><code>{tag: "input", type: "text", size: "24", autocomplete: "off"}</code></pre>
98      */
99     /**
100      * @cfg {Ext.data.Store/Array} store The data source to which this combo is bound (defaults to <tt>undefined</tt>).
101      * Acceptable values for this property are:
102      * <div class="mdetail-params"><ul>
103      * <li><b>any {@link Ext.data.Store Store} subclass</b></li>
104      * <li><b>an Array</b> : Arrays will be converted to a {@link Ext.data.ArrayStore} internally,
105      * automatically generating {@link Ext.data.Field#name field names} to work with all data components.
106      * <div class="mdetail-params"><ul>
107      * <li><b>1-dimensional array</b> : (e.g., <tt>['Foo','Bar']</tt>)<div class="sub-desc">
108      * A 1-dimensional array will automatically be expanded (each array item will be used for both the combo
109      * {@link #valueField} and {@link #displayField})</div></li>
110      * <li><b>2-dimensional array</b> : (e.g., <tt>[['f','Foo'],['b','Bar']]</tt>)<div class="sub-desc">
111      * For a multi-dimensional array, the value in index 0 of each item will be assumed to be the combo
112      * {@link #valueField}, while the value at index 1 is assumed to be the combo {@link #displayField}.
113      * </div></li></ul></div></li></ul></div>
114      * <p>See also <tt>{@link #mode}</tt>.</p>
115      */
116     /**
117      * @cfg {String} title If supplied, a header element is created containing this text and added into the top of
118      * the dropdown list (defaults to undefined, with no header element)
119      */
120
121     // private
122     defaultAutoCreate : {tag: "input", type: "text", size: "24", autocomplete: "off"},
123     /**
124      * @cfg {Number} listWidth The width (used as a parameter to {@link Ext.Element#setWidth}) of the dropdown
125      * list (defaults to the width of the ComboBox field).  See also <tt>{@link #minListWidth}
126      */
127     /**
128      * @cfg {String} displayField The underlying {@link Ext.data.Field#name data field name} to bind to this
129      * ComboBox (defaults to undefined if <tt>{@link #mode} = 'remote'</tt> or <tt>'field1'</tt> if
130      * {@link #transform transforming a select} or if the {@link #store field name is autogenerated based on
131      * the store configuration}).
132      * <p>See also <tt>{@link #valueField}</tt>.</p>
133      * <p><b>Note</b>: if using a ComboBox in an {@link Ext.grid.EditorGridPanel Editor Grid} a
134      * {@link Ext.grid.Column#renderer renderer} will be needed to show the displayField when the editor is not
135      * active.</p>
136      */
137     /**
138      * @cfg {String} valueField The underlying {@link Ext.data.Field#name data value name} to bind to this
139      * ComboBox (defaults to undefined if <tt>{@link #mode} = 'remote'</tt> or <tt>'field2'</tt> if
140      * {@link #transform transforming a select} or if the {@link #store field name is autogenerated based on
141      * the store configuration}).
142      * <p><b>Note</b>: use of a <tt>valueField</tt> requires the user to make a selection in order for a value to be
143      * mapped.  See also <tt>{@link #hiddenName}</tt>, <tt>{@link #hiddenValue}</tt>, and <tt>{@link #displayField}</tt>.</p>
144      */
145     /**
146      * @cfg {String} hiddenName If specified, a hidden form field with this name is dynamically generated to store the
147      * field's data value (defaults to the underlying DOM element's name). Required for the combo's value to automatically
148      * post during a form submission.  See also {@link #valueField}.
149      * <p><b>Note</b>: the hidden field's id will also default to this name if {@link #hiddenId} is not specified.
150      * The ComboBox {@link Ext.Component#id id} and the <tt>{@link #hiddenId}</tt> <b>should be different</b>, since
151      * no two DOM nodes should share the same id.  So, if the ComboBox <tt>{@link Ext.form.Field#name name}</tt> and
152      * <tt>hiddenName</tt> are the same, you should specify a unique <tt>{@link #hiddenId}</tt>.</p>
153      */
154     /**
155      * @cfg {String} hiddenId If <tt>{@link #hiddenName}</tt> is specified, <tt>hiddenId</tt> can also be provided
156      * to give the hidden field a unique id (defaults to the <tt>{@link #hiddenName}</tt>).  The <tt>hiddenId</tt>
157      * and combo {@link Ext.Component#id id} should be different, since no two DOM
158      * nodes should share the same id.
159      */
160     /**
161      * @cfg {String} hiddenValue Sets the initial value of the hidden field if {@link #hiddenName} is
162      * specified to contain the selected {@link #valueField}, from the Store. Defaults to the configured
163      * <tt>{@link Ext.form.Field#value value}</tt>.
164      */
165     /**
166      * @cfg {String} listClass The CSS class to add to the predefined <tt>'x-combo-list'</tt> class
167      * applied the dropdown list element (defaults to '').
168      */
169     listClass : '',
170     /**
171      * @cfg {String} selectedClass CSS class to apply to the selected item in the dropdown list
172      * (defaults to <tt>'x-combo-selected'</tt>)
173      */
174     selectedClass : 'x-combo-selected',
175     /**
176      * @cfg {String} listEmptyText The empty text to display in the data view if no items are found.
177      * (defaults to '')
178      */
179     listEmptyText: '',
180     /**
181      * @cfg {String} triggerClass An additional CSS class used to style the trigger button.  The trigger will always
182      * get the class <tt>'x-form-trigger'</tt> and <tt>triggerClass</tt> will be <b>appended</b> if specified
183      * (defaults to <tt>'x-form-arrow-trigger'</tt> which displays a downward arrow icon).
184      */
185     triggerClass : 'x-form-arrow-trigger',
186     /**
187      * @cfg {Boolean/String} shadow <tt>true</tt> or <tt>"sides"</tt> for the default effect, <tt>"frame"</tt> for
188      * 4-way shadow, and <tt>"drop"</tt> for bottom-right
189      */
190     shadow : 'sides',
191     /**
192      * @cfg {String/Array} listAlign A valid anchor position value. See <tt>{@link Ext.Element#alignTo}</tt> for details
193      * on supported anchor positions and offsets. To specify x/y offsets as well, this value
194      * may be specified as an Array of <tt>{@link Ext.Element#alignTo}</tt> method arguments.</p>
195      * <pre><code>[ 'tl-bl?', [6,0] ]</code></pre>(defaults to <tt>'tl-bl?'</tt>)
196      */
197     listAlign : 'tl-bl?',
198     /**
199      * @cfg {Number} maxHeight The maximum height in pixels of the dropdown list before scrollbars are shown
200      * (defaults to <tt>300</tt>)
201      */
202     maxHeight : 300,
203     /**
204      * @cfg {Number} minHeight The minimum height in pixels of the dropdown list when the list is constrained by its
205      * distance to the viewport edges (defaults to <tt>90</tt>)
206      */
207     minHeight : 90,
208     /**
209      * @cfg {String} triggerAction The action to execute when the trigger is clicked.
210      * <div class="mdetail-params"><ul>
211      * <li><b><tt>'query'</tt></b> : <b>Default</b>
212      * <p class="sub-desc">{@link #doQuery run the query} using the {@link Ext.form.Field#getRawValue raw value}.</p></li>
213      * <li><b><tt>'all'</tt></b> :
214      * <p class="sub-desc">{@link #doQuery run the query} specified by the <tt>{@link #allQuery}</tt> config option</p></li>
215      * </ul></div>
216      * <p>See also <code>{@link #queryParam}</code>.</p>
217      */
218     triggerAction : 'query',
219     /**
220      * @cfg {Number} minChars The minimum number of characters the user must type before autocomplete and
221      * {@link #typeAhead} activate (defaults to <tt>4</tt> if <tt>{@link #mode} = 'remote'</tt> or <tt>0</tt> if
222      * <tt>{@link #mode} = 'local'</tt>, does not apply if
223      * <tt>{@link Ext.form.TriggerField#editable editable} = false</tt>).
224      */
225     minChars : 4,
226     /**
227      * @cfg {Boolean} autoSelect <tt>true</tt> to select the first result gathered by the data store (defaults
228      * to <tt>true</tt>).  A false value would require a manual selection from the dropdown list to set the components value
229      * unless the value of ({@link #typeAheadDelay}) were true.
230      */
231     autoSelect : true,
232     /**
233      * @cfg {Boolean} typeAhead <tt>true</tt> to populate and autoselect the remainder of the text being
234      * typed after a configurable delay ({@link #typeAheadDelay}) if it matches a known value (defaults
235      * to <tt>false</tt>)
236      */
237     typeAhead : false,
238     /**
239      * @cfg {Number} queryDelay The length of time in milliseconds to delay between the start of typing and
240      * sending the query to filter the dropdown list (defaults to <tt>500</tt> if <tt>{@link #mode} = 'remote'</tt>
241      * or <tt>10</tt> if <tt>{@link #mode} = 'local'</tt>)
242      */
243     queryDelay : 500,
244     /**
245      * @cfg {Number} pageSize If greater than <tt>0</tt>, a {@link Ext.PagingToolbar} is displayed in the
246      * footer of the dropdown list and the {@link #doQuery filter queries} will execute with page start and
247      * {@link Ext.PagingToolbar#pageSize limit} parameters. Only applies when <tt>{@link #mode} = 'remote'</tt>
248      * (defaults to <tt>0</tt>).
249      */
250     pageSize : 0,
251     /**
252      * @cfg {Boolean} selectOnFocus <tt>true</tt> to select any existing text in the field immediately on focus.
253      * Only applies when <tt>{@link Ext.form.TriggerField#editable editable} = true</tt> (defaults to
254      * <tt>false</tt>).
255      */
256     selectOnFocus : false,
257     /**
258      * @cfg {String} queryParam Name of the query ({@link Ext.data.Store#baseParam baseParam} name for the store)
259      * as it will be passed on the querystring (defaults to <tt>'query'</tt>)
260      */
261     queryParam : 'query',
262     /**
263      * @cfg {String} loadingText The text to display in the dropdown list while data is loading.  Only applies
264      * when <tt>{@link #mode} = 'remote'</tt> (defaults to <tt>'Loading...'</tt>)
265      */
266     loadingText : 'Loading...',
267     /**
268      * @cfg {Boolean} resizable <tt>true</tt> to add a resize handle to the bottom of the dropdown list
269      * (creates an {@link Ext.Resizable} with 'se' {@link Ext.Resizable#pinned pinned} handles).
270      * Defaults to <tt>false</tt>.
271      */
272     resizable : false,
273     /**
274      * @cfg {Number} handleHeight The height in pixels of the dropdown list resize handle if
275      * <tt>{@link #resizable} = true</tt> (defaults to <tt>8</tt>)
276      */
277     handleHeight : 8,
278     /**
279      * @cfg {String} allQuery The text query to send to the server to return all records for the list
280      * with no filtering (defaults to '')
281      */
282     allQuery: '',
283     /**
284      * @cfg {String} mode Acceptable values are:
285      * <div class="mdetail-params"><ul>
286      * <li><b><tt>'remote'</tt></b> : <b>Default</b>
287      * <p class="sub-desc">Automatically loads the <tt>{@link #store}</tt> the <b>first</b> time the trigger
288      * is clicked. If you do not want the store to be automatically loaded the first time the trigger is
289      * clicked, set to <tt>'local'</tt> and manually load the store.  To force a requery of the store
290      * <b>every</b> time the trigger is clicked see <tt>{@link #lastQuery}</tt>.</p></li>
291      * <li><b><tt>'local'</tt></b> :
292      * <p class="sub-desc">ComboBox loads local data</p>
293      * <pre><code>
294 var combo = new Ext.form.ComboBox({
295     renderTo: document.body,
296     mode: 'local',
297     store: new Ext.data.ArrayStore({
298         id: 0,
299         fields: [
300             'myId',  // numeric value is the key
301             'displayText'
302         ],
303         data: [[1, 'item1'], [2, 'item2']]  // data is local
304     }),
305     valueField: 'myId',
306     displayField: 'displayText',
307     triggerAction: 'all'
308 });
309      * </code></pre></li>
310      * </ul></div>
311      */
312     mode: 'remote',
313     /**
314      * @cfg {Number} minListWidth The minimum width of the dropdown list in pixels (defaults to <tt>70</tt>, will
315      * be ignored if <tt>{@link #listWidth}</tt> has a higher value)
316      */
317     minListWidth : 70,
318     /**
319      * @cfg {Boolean} forceSelection <tt>true</tt> to restrict the selected value to one of the values in the list,
320      * <tt>false</tt> to allow the user to set arbitrary text into the field (defaults to <tt>false</tt>)
321      */
322     forceSelection : false,
323     /**
324      * @cfg {Number} typeAheadDelay The length of time in milliseconds to wait until the typeahead text is displayed
325      * if <tt>{@link #typeAhead} = true</tt> (defaults to <tt>250</tt>)
326      */
327     typeAheadDelay : 250,
328     /**
329      * @cfg {String} valueNotFoundText When using a name/value combo, if the value passed to setValue is not found in
330      * the store, valueNotFoundText will be displayed as the field text if defined (defaults to undefined). If this
331      * default text is used, it means there is no value set and no validation will occur on this field.
332      */
333
334     /**
335      * @cfg {Boolean} lazyInit <tt>true</tt> to not initialize the list for this combo until the field is focused
336      * (defaults to <tt>true</tt>)
337      */
338     lazyInit : true,
339
340     /**
341      * @cfg {Boolean} clearFilterOnReset <tt>true</tt> to clear any filters on the store (when in local mode) when reset is called
342      * (defaults to <tt>true</tt>)
343      */
344     clearFilterOnReset : true,
345
346     /**
347      * @cfg {Boolean} submitValue False to clear the name attribute on the field so that it is not submitted during a form post.
348      * If a hiddenName is specified, setting this to true will cause both the hidden field and the element to be submitted.
349      * Defaults to <tt>undefined</tt>.
350      */
351     submitValue: undefined,
352
353     /**
354      * The value of the match string used to filter the store. Delete this property to force a requery.
355      * Example use:
356      * <pre><code>
357 var combo = new Ext.form.ComboBox({
358     ...
359     mode: 'remote',
360     ...
361     listeners: {
362         // delete the previous query in the beforequery event or set
363         // combo.lastQuery = null (this will reload the store the next time it expands)
364         beforequery: function(qe){
365             delete qe.combo.lastQuery;
366         }
367     }
368 });
369      * </code></pre>
370      * To make sure the filter in the store is not cleared the first time the ComboBox trigger is used
371      * configure the combo with <tt>lastQuery=''</tt>. Example use:
372      * <pre><code>
373 var combo = new Ext.form.ComboBox({
374     ...
375     mode: 'local',
376     triggerAction: 'all',
377     lastQuery: ''
378 });
379      * </code></pre>
380      * @property lastQuery
381      * @type String
382      */
383
384     // private
385     initComponent : function(){
386         Ext.form.ComboBox.superclass.initComponent.call(this);
387         this.addEvents(
388             /**
389              * @event expand
390              * Fires when the dropdown list is expanded
391              * @param {Ext.form.ComboBox} combo This combo box
392              */
393             'expand',
394             /**
395              * @event collapse
396              * Fires when the dropdown list is collapsed
397              * @param {Ext.form.ComboBox} combo This combo box
398              */
399             'collapse',
400
401             /**
402              * @event beforeselect
403              * Fires before a list item is selected. Return false to cancel the selection.
404              * @param {Ext.form.ComboBox} combo This combo box
405              * @param {Ext.data.Record} record The data record returned from the underlying store
406              * @param {Number} index The index of the selected item in the dropdown list
407              */
408             'beforeselect',
409             /**
410              * @event select
411              * Fires when a list item is selected
412              * @param {Ext.form.ComboBox} combo This combo box
413              * @param {Ext.data.Record} record The data record returned from the underlying store
414              * @param {Number} index The index of the selected item in the dropdown list
415              */
416             'select',
417             /**
418              * @event beforequery
419              * Fires before all queries are processed. Return false to cancel the query or set the queryEvent's
420              * cancel property to true.
421              * @param {Object} queryEvent An object that has these properties:<ul>
422              * <li><code>combo</code> : Ext.form.ComboBox <div class="sub-desc">This combo box</div></li>
423              * <li><code>query</code> : String <div class="sub-desc">The query</div></li>
424              * <li><code>forceAll</code> : Boolean <div class="sub-desc">True to force "all" query</div></li>
425              * <li><code>cancel</code> : Boolean <div class="sub-desc">Set to true to cancel the query</div></li>
426              * </ul>
427              */
428             'beforequery'
429         );
430         if(this.transform){
431             var s = Ext.getDom(this.transform);
432             if(!this.hiddenName){
433                 this.hiddenName = s.name;
434             }
435             if(!this.store){
436                 this.mode = 'local';
437                 var d = [], opts = s.options;
438                 for(var i = 0, len = opts.length;i < len; i++){
439                     var o = opts[i],
440                         value = (o.hasAttribute ? o.hasAttribute('value') : o.getAttributeNode('value').specified) ? o.value : o.text;
441                     if(o.selected && Ext.isEmpty(this.value, true)) {
442                         this.value = value;
443                     }
444                     d.push([value, o.text]);
445                 }
446                 this.store = new Ext.data.ArrayStore({
447                     'id': 0,
448                     fields: ['value', 'text'],
449                     data : d,
450                     autoDestroy: true
451                 });
452                 this.valueField = 'value';
453                 this.displayField = 'text';
454             }
455             s.name = Ext.id(); // wipe out the name in case somewhere else they have a reference
456             if(!this.lazyRender){
457                 this.target = true;
458                 this.el = Ext.DomHelper.insertBefore(s, this.autoCreate || this.defaultAutoCreate);
459                 this.render(this.el.parentNode, s);
460             }
461             Ext.removeNode(s);
462         }
463         //auto-configure store from local array data
464         else if(this.store){
465             this.store = Ext.StoreMgr.lookup(this.store);
466             if(this.store.autoCreated){
467                 this.displayField = this.valueField = 'field1';
468                 if(!this.store.expandData){
469                     this.displayField = 'field2';
470                 }
471                 this.mode = 'local';
472             }
473         }
474
475         this.selectedIndex = -1;
476         if(this.mode == 'local'){
477             if(!Ext.isDefined(this.initialConfig.queryDelay)){
478                 this.queryDelay = 10;
479             }
480             if(!Ext.isDefined(this.initialConfig.minChars)){
481                 this.minChars = 0;
482             }
483         }
484     },
485
486     // private
487     onRender : function(ct, position){
488         if(this.hiddenName && !Ext.isDefined(this.submitValue)){
489             this.submitValue = false;
490         }
491         Ext.form.ComboBox.superclass.onRender.call(this, ct, position);
492         if(this.hiddenName){
493             this.hiddenField = this.el.insertSibling({tag:'input', type:'hidden', name: this.hiddenName,
494                     id: (this.hiddenId||this.hiddenName)}, 'before', true);
495
496         }
497         if(Ext.isGecko){
498             this.el.dom.setAttribute('autocomplete', 'off');
499         }
500
501         if(!this.lazyInit){
502             this.initList();
503         }else{
504             this.on('focus', this.initList, this, {single: true});
505         }
506     },
507
508     // private
509     initValue : function(){
510         Ext.form.ComboBox.superclass.initValue.call(this);
511         if(this.hiddenField){
512             this.hiddenField.value =
513                 Ext.value(Ext.isDefined(this.hiddenValue) ? this.hiddenValue : this.value, '');
514         }
515     },
516
517     getParentZIndex : function(){
518         var zindex;
519         if (this.ownerCt){
520             this.findParentBy(function(ct){
521                 zindex = parseInt(ct.getPositionEl().getStyle('z-index'), 10);
522                 return !!zindex;
523             });
524         }
525         return zindex;
526     },
527
528     // private
529     initList : function(){
530         if(!this.list){
531             var cls = 'x-combo-list',
532                 listParent = Ext.getDom(this.getListParent() || Ext.getBody()),
533                 zindex = parseInt(Ext.fly(listParent).getStyle('z-index'), 10);
534
535             if (!zindex) {
536                 zindex = this.getParentZIndex();
537             }
538
539             this.list = new Ext.Layer({
540                 parentEl: listParent,
541                 shadow: this.shadow,
542                 cls: [cls, this.listClass].join(' '),
543                 constrain:false,
544                 zindex: (zindex || 12000) + 5
545             });
546
547             var lw = this.listWidth || Math.max(this.wrap.getWidth(), this.minListWidth);
548             this.list.setSize(lw, 0);
549             this.list.swallowEvent('mousewheel');
550             this.assetHeight = 0;
551             if(this.syncFont !== false){
552                 this.list.setStyle('font-size', this.el.getStyle('font-size'));
553             }
554             if(this.title){
555                 this.header = this.list.createChild({cls:cls+'-hd', html: this.title});
556                 this.assetHeight += this.header.getHeight();
557             }
558
559             this.innerList = this.list.createChild({cls:cls+'-inner'});
560             this.mon(this.innerList, 'mouseover', this.onViewOver, this);
561             this.mon(this.innerList, 'mousemove', this.onViewMove, this);
562             this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
563
564             if(this.pageSize){
565                 this.footer = this.list.createChild({cls:cls+'-ft'});
566                 this.pageTb = new Ext.PagingToolbar({
567                     store: this.store,
568                     pageSize: this.pageSize,
569                     renderTo:this.footer
570                 });
571                 this.assetHeight += this.footer.getHeight();
572             }
573
574             if(!this.tpl){
575                 /**
576                 * @cfg {String/Ext.XTemplate} tpl <p>The template string, or {@link Ext.XTemplate} instance to
577                 * use to display each item in the dropdown list. The dropdown list is displayed in a
578                 * DataView. See {@link #view}.</p>
579                 * <p>The default template string is:</p><pre><code>
580                   '&lt;tpl for=".">&lt;div class="x-combo-list-item">{' + this.displayField + '}&lt;/div>&lt;/tpl>'
581                 * </code></pre>
582                 * <p>Override the default value to create custom UI layouts for items in the list.
583                 * For example:</p><pre><code>
584                   '&lt;tpl for=".">&lt;div ext:qtip="{state}. {nick}" class="x-combo-list-item">{state}&lt;/div>&lt;/tpl>'
585                 * </code></pre>
586                 * <p>The template <b>must</b> contain one or more substitution parameters using field
587                 * names from the Combo's</b> {@link #store Store}. In the example above an
588                 * <pre>ext:qtip</pre> attribute is added to display other fields from the Store.</p>
589                 * <p>To preserve the default visual look of list items, add the CSS class name
590                 * <pre>x-combo-list-item</pre> to the template's container element.</p>
591                 * <p>Also see {@link #itemSelector} for additional details.</p>
592                 */
593                 this.tpl = '<tpl for="."><div class="'+cls+'-item">{' + this.displayField + '}</div></tpl>';
594                 /**
595                  * @cfg {String} itemSelector
596                  * <p>A simple CSS selector (e.g. div.some-class or span:first-child) that will be
597                  * used to determine what nodes the {@link #view Ext.DataView} which handles the dropdown
598                  * display will be working with.</p>
599                  * <p><b>Note</b>: this setting is <b>required</b> if a custom XTemplate has been
600                  * specified in {@link #tpl} which assigns a class other than <pre>'x-combo-list-item'</pre>
601                  * to dropdown list items</b>
602                  */
603             }
604
605             /**
606             * The {@link Ext.DataView DataView} used to display the ComboBox's options.
607             * @type Ext.DataView
608             */
609             this.view = new Ext.DataView({
610                 applyTo: this.innerList,
611                 tpl: this.tpl,
612                 singleSelect: true,
613                 selectedClass: this.selectedClass,
614                 itemSelector: this.itemSelector || '.' + cls + '-item',
615                 emptyText: this.listEmptyText,
616                 deferEmptyText: false
617             });
618
619             this.mon(this.view, {
620                 containerclick : this.onViewClick,
621                 click : this.onViewClick,
622                 scope :this
623             });
624
625             this.bindStore(this.store, true);
626
627             if(this.resizable){
628                 this.resizer = new Ext.Resizable(this.list,  {
629                    pinned:true, handles:'se'
630                 });
631                 this.mon(this.resizer, 'resize', function(r, w, h){
632                     this.maxHeight = h-this.handleHeight-this.list.getFrameWidth('tb')-this.assetHeight;
633                     this.listWidth = w;
634                     this.innerList.setWidth(w - this.list.getFrameWidth('lr'));
635                     this.restrictHeight();
636                 }, this);
637
638                 this[this.pageSize?'footer':'innerList'].setStyle('margin-bottom', this.handleHeight+'px');
639             }
640         }
641     },
642
643     /**
644      * <p>Returns the element used to house this ComboBox's pop-up list. Defaults to the document body.</p>
645      * A custom implementation may be provided as a configuration option if the floating list needs to be rendered
646      * to a different Element. An example might be rendering the list inside a Menu so that clicking
647      * the list does not hide the Menu:<pre><code>
648 var store = new Ext.data.ArrayStore({
649     autoDestroy: true,
650     fields: ['initials', 'fullname'],
651     data : [
652         ['FF', 'Fred Flintstone'],
653         ['BR', 'Barney Rubble']
654     ]
655 });
656
657 var combo = new Ext.form.ComboBox({
658     store: store,
659     displayField: 'fullname',
660     emptyText: 'Select a name...',
661     forceSelection: true,
662     getListParent: function() {
663         return this.el.up('.x-menu');
664     },
665     iconCls: 'no-icon', //use iconCls if placing within menu to shift to right side of menu
666     mode: 'local',
667     selectOnFocus: true,
668     triggerAction: 'all',
669     typeAhead: true,
670     width: 135
671 });
672
673 var menu = new Ext.menu.Menu({
674     id: 'mainMenu',
675     items: [
676         combo // A Field in a Menu
677     ]
678 });
679 </code></pre>
680      */
681     getListParent : function() {
682         return document.body;
683     },
684
685     /**
686      * Returns the store associated with this combo.
687      * @return {Ext.data.Store} The store
688      */
689     getStore : function(){
690         return this.store;
691     },
692
693     // private
694     bindStore : function(store, initial){
695         if(this.store && !initial){
696             if(this.store !== store && this.store.autoDestroy){
697                 this.store.destroy();
698             }else{
699                 this.store.un('beforeload', this.onBeforeLoad, this);
700                 this.store.un('load', this.onLoad, this);
701                 this.store.un('exception', this.collapse, this);
702             }
703             if(!store){
704                 this.store = null;
705                 if(this.view){
706                     this.view.bindStore(null);
707                 }
708                 if(this.pageTb){
709                     this.pageTb.bindStore(null);
710                 }
711             }
712         }
713         if(store){
714             if(!initial) {
715                 this.lastQuery = null;
716                 if(this.pageTb) {
717                     this.pageTb.bindStore(store);
718                 }
719             }
720
721             this.store = Ext.StoreMgr.lookup(store);
722             this.store.on({
723                 scope: this,
724                 beforeload: this.onBeforeLoad,
725                 load: this.onLoad,
726                 exception: this.collapse
727             });
728
729             if(this.view){
730                 this.view.bindStore(store);
731             }
732         }
733     },
734
735     reset : function(){
736         Ext.form.ComboBox.superclass.reset.call(this);
737         if(this.clearFilterOnReset && this.mode == 'local'){
738             this.store.clearFilter();
739         }
740     },
741
742     // private
743     initEvents : function(){
744         Ext.form.ComboBox.superclass.initEvents.call(this);
745
746
747         this.keyNav = new Ext.KeyNav(this.el, {
748             "up" : function(e){
749                 this.inKeyMode = true;
750                 this.selectPrev();
751             },
752
753             "down" : function(e){
754                 if(!this.isExpanded()){
755                     this.onTriggerClick();
756                 }else{
757                     this.inKeyMode = true;
758                     this.selectNext();
759                 }
760             },
761
762             "enter" : function(e){
763                 this.onViewClick();
764             },
765
766             "esc" : function(e){
767                 this.collapse();
768             },
769
770             "tab" : function(e){
771                 if (this.forceSelection === true) {
772                     this.collapse();
773                 } else {
774                     this.onViewClick(false);
775                 }
776                 return true;
777             },
778
779             scope : this,
780
781             doRelay : function(e, h, hname){
782                 if(hname == 'down' || this.scope.isExpanded()){
783                     // this MUST be called before ComboBox#fireKey()
784                     var relay = Ext.KeyNav.prototype.doRelay.apply(this, arguments);
785                     if(!Ext.isIE && Ext.EventManager.useKeydown){
786                         // call Combo#fireKey() for browsers which use keydown event (except IE)
787                         this.scope.fireKey(e);
788                     }
789                     return relay;
790                 }
791                 return true;
792             },
793
794             forceKeyDown : true,
795             defaultEventAction: 'stopEvent'
796         });
797         this.queryDelay = Math.max(this.queryDelay || 10,
798                 this.mode == 'local' ? 10 : 250);
799         this.dqTask = new Ext.util.DelayedTask(this.initQuery, this);
800         if(this.typeAhead){
801             this.taTask = new Ext.util.DelayedTask(this.onTypeAhead, this);
802         }
803         if(!this.enableKeyEvents){
804             this.mon(this.el, 'keyup', this.onKeyUp, this);
805         }
806     },
807
808
809     // private
810     onDestroy : function(){
811         if (this.dqTask){
812             this.dqTask.cancel();
813             this.dqTask = null;
814         }
815         this.bindStore(null);
816         Ext.destroy(
817             this.resizer,
818             this.view,
819             this.pageTb,
820             this.list
821         );
822         Ext.destroyMembers(this, 'hiddenField');
823         Ext.form.ComboBox.superclass.onDestroy.call(this);
824     },
825
826     // private
827     fireKey : function(e){
828         if (!this.isExpanded()) {
829             Ext.form.ComboBox.superclass.fireKey.call(this, e);
830         }
831     },
832
833     // private
834     onResize : function(w, h){
835         Ext.form.ComboBox.superclass.onResize.apply(this, arguments);
836         if(!isNaN(w) && this.isVisible() && this.list){
837             this.doResize(w);
838         }else{
839             this.bufferSize = w;
840         }
841     },
842
843     doResize: function(w){
844         if(!Ext.isDefined(this.listWidth)){
845             var lw = Math.max(w, this.minListWidth);
846             this.list.setWidth(lw);
847             this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
848         }
849     },
850
851     // private
852     onEnable : function(){
853         Ext.form.ComboBox.superclass.onEnable.apply(this, arguments);
854         if(this.hiddenField){
855             this.hiddenField.disabled = false;
856         }
857     },
858
859     // private
860     onDisable : function(){
861         Ext.form.ComboBox.superclass.onDisable.apply(this, arguments);
862         if(this.hiddenField){
863             this.hiddenField.disabled = true;
864         }
865     },
866
867     // private
868     onBeforeLoad : function(){
869         if(!this.hasFocus){
870             return;
871         }
872         this.innerList.update(this.loadingText ?
873                '<div class="loading-indicator">'+this.loadingText+'</div>' : '');
874         this.restrictHeight();
875         this.selectedIndex = -1;
876     },
877
878     // private
879     onLoad : function(){
880         if(!this.hasFocus){
881             return;
882         }
883         if(this.store.getCount() > 0 || this.listEmptyText){
884             this.expand();
885             this.restrictHeight();
886             if(this.lastQuery == this.allQuery){
887                 if(this.editable){
888                     this.el.dom.select();
889                 }
890
891                 if(this.autoSelect !== false && !this.selectByValue(this.value, true)){
892                     this.select(0, true);
893                 }
894             }else{
895                 if(this.autoSelect !== false){
896                     this.selectNext();
897                 }
898                 if(this.typeAhead && this.lastKey != Ext.EventObject.BACKSPACE && this.lastKey != Ext.EventObject.DELETE){
899                     this.taTask.delay(this.typeAheadDelay);
900                 }
901             }
902         }else{
903             this.collapse();
904         }
905
906     },
907
908     // private
909     onTypeAhead : function(){
910         if(this.store.getCount() > 0){
911             var r = this.store.getAt(0);
912             var newValue = r.data[this.displayField];
913             var len = newValue.length;
914             var selStart = this.getRawValue().length;
915             if(selStart != len){
916                 this.setRawValue(newValue);
917                 this.selectText(selStart, newValue.length);
918             }
919         }
920     },
921
922     // private
923     assertValue  : function(){
924         var val = this.getRawValue(),
925             rec = this.findRecord(this.displayField, val);
926
927         if(!rec && this.forceSelection){
928             if(val.length > 0 && val != this.emptyText){
929                 this.el.dom.value = Ext.value(this.lastSelectionText, '');
930                 this.applyEmptyText();
931             }else{
932                 this.clearValue();
933             }
934         }else{
935             if(rec){
936                 // onSelect may have already set the value and by doing so
937                 // set the display field properly.  Let's not wipe out the
938                 // valueField here by just sending the displayField.
939                 if (val == rec.get(this.displayField) && this.value == rec.get(this.valueField)){
940                     return;
941                 }
942                 val = rec.get(this.valueField || this.displayField);
943             }
944             this.setValue(val);
945         }
946     },
947
948     // private
949     onSelect : function(record, index){
950         if(this.fireEvent('beforeselect', this, record, index) !== false){
951             this.setValue(record.data[this.valueField || this.displayField]);
952             this.collapse();
953             this.fireEvent('select', this, record, index);
954         }
955     },
956
957     // inherit docs
958     getName: function(){
959         var hf = this.hiddenField;
960         return hf && hf.name ? hf.name : this.hiddenName || Ext.form.ComboBox.superclass.getName.call(this);
961     },
962
963     /**
964      * Returns the currently selected field value or empty string if no value is set.
965      * @return {String} value The selected value
966      */
967     getValue : function(){
968         if(this.valueField){
969             return Ext.isDefined(this.value) ? this.value : '';
970         }else{
971             return Ext.form.ComboBox.superclass.getValue.call(this);
972         }
973     },
974
975     /**
976      * Clears any text/value currently set in the field
977      */
978     clearValue : function(){
979         if(this.hiddenField){
980             this.hiddenField.value = '';
981         }
982         this.setRawValue('');
983         this.lastSelectionText = '';
984         this.applyEmptyText();
985         this.value = '';
986     },
987
988     /**
989      * Sets the specified value into the field.  If the value finds a match, the corresponding record text
990      * will be displayed in the field.  If the value does not match the data value of an existing item,
991      * and the valueNotFoundText config option is defined, it will be displayed as the default field text.
992      * Otherwise the field will be blank (although the value will still be set).
993      * @param {String} value The value to match
994      * @return {Ext.form.Field} this
995      */
996     setValue : function(v){
997         var text = v;
998         if(this.valueField){
999             var r = this.findRecord(this.valueField, v);
1000             if(r){
1001                 text = r.data[this.displayField];
1002             }else if(Ext.isDefined(this.valueNotFoundText)){
1003                 text = this.valueNotFoundText;
1004             }
1005         }
1006         this.lastSelectionText = text;
1007         if(this.hiddenField){
1008             this.hiddenField.value = Ext.value(v, '');
1009         }
1010         Ext.form.ComboBox.superclass.setValue.call(this, text);
1011         this.value = v;
1012         return this;
1013     },
1014
1015     // private
1016     findRecord : function(prop, value){
1017         var record;
1018         if(this.store.getCount() > 0){
1019             this.store.each(function(r){
1020                 if(r.data[prop] == value){
1021                     record = r;
1022                     return false;
1023                 }
1024             });
1025         }
1026         return record;
1027     },
1028
1029     // private
1030     onViewMove : function(e, t){
1031         this.inKeyMode = false;
1032     },
1033
1034     // private
1035     onViewOver : function(e, t){
1036         if(this.inKeyMode){ // prevent key nav and mouse over conflicts
1037             return;
1038         }
1039         var item = this.view.findItemFromChild(t);
1040         if(item){
1041             var index = this.view.indexOf(item);
1042             this.select(index, false);
1043         }
1044     },
1045
1046     // private
1047     onViewClick : function(doFocus){
1048         var index = this.view.getSelectedIndexes()[0],
1049             s = this.store,
1050             r = s.getAt(index);
1051         if(r){
1052             this.onSelect(r, index);
1053         }else {
1054             this.collapse();
1055         }
1056         if(doFocus !== false){
1057             this.el.focus();
1058         }
1059     },
1060
1061
1062     // private
1063     restrictHeight : function(){
1064         this.innerList.dom.style.height = '';
1065         var inner = this.innerList.dom,
1066             pad = this.list.getFrameWidth('tb') + (this.resizable ? this.handleHeight : 0) + this.assetHeight,
1067             h = Math.max(inner.clientHeight, inner.offsetHeight, inner.scrollHeight),
1068             ha = this.getPosition()[1]-Ext.getBody().getScroll().top,
1069             hb = Ext.lib.Dom.getViewHeight()-ha-this.getSize().height,
1070             space = Math.max(ha, hb, this.minHeight || 0)-this.list.shadowOffset-pad-5;
1071
1072         h = Math.min(h, space, this.maxHeight);
1073
1074         this.innerList.setHeight(h);
1075         this.list.beginUpdate();
1076         this.list.setHeight(h+pad);
1077         this.list.alignTo.apply(this.list, [this.el].concat(this.listAlign));
1078         this.list.endUpdate();
1079     },
1080
1081     /**
1082      * Returns true if the dropdown list is expanded, else false.
1083      */
1084     isExpanded : function(){
1085         return this.list && this.list.isVisible();
1086     },
1087
1088     /**
1089      * Select an item in the dropdown list by its data value. This function does NOT cause the select event to fire.
1090      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
1091      * @param {String} value The data value of the item to select
1092      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
1093      * selected item if it is not currently in view (defaults to true)
1094      * @return {Boolean} True if the value matched an item in the list, else false
1095      */
1096     selectByValue : function(v, scrollIntoView){
1097         if(!Ext.isEmpty(v, true)){
1098             var r = this.findRecord(this.valueField || this.displayField, v);
1099             if(r){
1100                 this.select(this.store.indexOf(r), scrollIntoView);
1101                 return true;
1102             }
1103         }
1104         return false;
1105     },
1106
1107     /**
1108      * Select an item in the dropdown list by its numeric index in the list. This function does NOT cause the select event to fire.
1109      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
1110      * @param {Number} index The zero-based index of the list item to select
1111      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
1112      * selected item if it is not currently in view (defaults to true)
1113      */
1114     select : function(index, scrollIntoView){
1115         this.selectedIndex = index;
1116         this.view.select(index);
1117         if(scrollIntoView !== false){
1118             var el = this.view.getNode(index);
1119             if(el){
1120                 this.innerList.scrollChildIntoView(el, false);
1121             }
1122         }
1123
1124     },
1125
1126     // private
1127     selectNext : function(){
1128         var ct = this.store.getCount();
1129         if(ct > 0){
1130             if(this.selectedIndex == -1){
1131                 this.select(0);
1132             }else if(this.selectedIndex < ct-1){
1133                 this.select(this.selectedIndex+1);
1134             }
1135         }
1136     },
1137
1138     // private
1139     selectPrev : function(){
1140         var ct = this.store.getCount();
1141         if(ct > 0){
1142             if(this.selectedIndex == -1){
1143                 this.select(0);
1144             }else if(this.selectedIndex !== 0){
1145                 this.select(this.selectedIndex-1);
1146             }
1147         }
1148     },
1149
1150     // private
1151     onKeyUp : function(e){
1152         var k = e.getKey();
1153         if(this.editable !== false && this.readOnly !== true && (k == e.BACKSPACE || !e.isSpecialKey())){
1154
1155             this.lastKey = k;
1156             this.dqTask.delay(this.queryDelay);
1157         }
1158         Ext.form.ComboBox.superclass.onKeyUp.call(this, e);
1159     },
1160
1161     // private
1162     validateBlur : function(){
1163         return !this.list || !this.list.isVisible();
1164     },
1165
1166     // private
1167     initQuery : function(){
1168         this.doQuery(this.getRawValue());
1169     },
1170
1171     // private
1172     beforeBlur : function(){
1173         this.assertValue();
1174     },
1175
1176     // private
1177     postBlur  : function(){
1178         Ext.form.ComboBox.superclass.postBlur.call(this);
1179         this.collapse();
1180         this.inKeyMode = false;
1181     },
1182
1183     /**
1184      * Execute a query to filter the dropdown list.  Fires the {@link #beforequery} event prior to performing the
1185      * query allowing the query action to be canceled if needed.
1186      * @param {String} query The SQL query to execute
1187      * @param {Boolean} forceAll <tt>true</tt> to force the query to execute even if there are currently fewer
1188      * characters in the field than the minimum specified by the <tt>{@link #minChars}</tt> config option.  It
1189      * also clears any filter previously saved in the current store (defaults to <tt>false</tt>)
1190      */
1191     doQuery : function(q, forceAll){
1192         q = Ext.isEmpty(q) ? '' : q;
1193         var qe = {
1194             query: q,
1195             forceAll: forceAll,
1196             combo: this,
1197             cancel:false
1198         };
1199         if(this.fireEvent('beforequery', qe)===false || qe.cancel){
1200             return false;
1201         }
1202         q = qe.query;
1203         forceAll = qe.forceAll;
1204         if(forceAll === true || (q.length >= this.minChars)){
1205             if(this.lastQuery !== q){
1206                 this.lastQuery = q;
1207                 if(this.mode == 'local'){
1208                     this.selectedIndex = -1;
1209                     if(forceAll){
1210                         this.store.clearFilter();
1211                     }else{
1212                         this.store.filter(this.displayField, q);
1213                     }
1214                     this.onLoad();
1215                 }else{
1216                     this.store.baseParams[this.queryParam] = q;
1217                     this.store.load({
1218                         params: this.getParams(q)
1219                     });
1220                     this.expand();
1221                 }
1222             }else{
1223                 this.selectedIndex = -1;
1224                 this.onLoad();
1225             }
1226         }
1227     },
1228
1229     // private
1230     getParams : function(q){
1231         var p = {};
1232         //p[this.queryParam] = q;
1233         if(this.pageSize){
1234             p.start = 0;
1235             p.limit = this.pageSize;
1236         }
1237         return p;
1238     },
1239
1240     /**
1241      * Hides the dropdown list if it is currently expanded. Fires the {@link #collapse} event on completion.
1242      */
1243     collapse : function(){
1244         if(!this.isExpanded()){
1245             return;
1246         }
1247         this.list.hide();
1248         Ext.getDoc().un('mousewheel', this.collapseIf, this);
1249         Ext.getDoc().un('mousedown', this.collapseIf, this);
1250         this.fireEvent('collapse', this);
1251     },
1252
1253     // private
1254     collapseIf : function(e){
1255         if(!this.isDestroyed && !e.within(this.wrap) && !e.within(this.list)){
1256             this.collapse();
1257         }
1258     },
1259
1260     /**
1261      * Expands the dropdown list if it is currently hidden. Fires the {@link #expand} event on completion.
1262      */
1263     expand : function(){
1264         if(this.isExpanded() || !this.hasFocus){
1265             return;
1266         }
1267
1268         if(this.title || this.pageSize){
1269             this.assetHeight = 0;
1270             if(this.title){
1271                 this.assetHeight += this.header.getHeight();
1272             }
1273             if(this.pageSize){
1274                 this.assetHeight += this.footer.getHeight();
1275             }
1276         }
1277
1278         if(this.bufferSize){
1279             this.doResize(this.bufferSize);
1280             delete this.bufferSize;
1281         }
1282         this.list.alignTo.apply(this.list, [this.el].concat(this.listAlign));
1283
1284         // zindex can change, re-check it and set it if necessary
1285         var listParent = Ext.getDom(this.getListParent() || Ext.getBody()),
1286             zindex = parseInt(Ext.fly(listParent).getStyle('z-index') ,10);
1287         if (!zindex){
1288             zindex = this.getParentZIndex();
1289         }
1290         if (zindex) {
1291             this.list.setZIndex(zindex + 5);
1292         }
1293         this.list.show();
1294         if(Ext.isGecko2){
1295             this.innerList.setOverflow('auto'); // necessary for FF 2.0/Mac
1296         }
1297         this.mon(Ext.getDoc(), {
1298             scope: this,
1299             mousewheel: this.collapseIf,
1300             mousedown: this.collapseIf
1301         });
1302         this.fireEvent('expand', this);
1303     },
1304
1305     /**
1306      * @method onTriggerClick
1307      * @hide
1308      */
1309     // private
1310     // Implements the default empty TriggerField.onTriggerClick function
1311     onTriggerClick : function(){
1312         if(this.readOnly || this.disabled){
1313             return;
1314         }
1315         if(this.isExpanded()){
1316             this.collapse();
1317             this.el.focus();
1318         }else {
1319             this.onFocus({});
1320             if(this.triggerAction == 'all') {
1321                 this.doQuery(this.allQuery, true);
1322             } else {
1323                 this.doQuery(this.getRawValue());
1324             }
1325             this.el.focus();
1326         }
1327     }
1328
1329     /**
1330      * @hide
1331      * @method autoSize
1332      */
1333     /**
1334      * @cfg {Boolean} grow @hide
1335      */
1336     /**
1337      * @cfg {Number} growMin @hide
1338      */
1339     /**
1340      * @cfg {Number} growMax @hide
1341      */
1342
1343 });
1344 Ext.reg('combo', Ext.form.ComboBox);