Combo.js
上传用户:dawnssy
上传日期:2022-08-06
资源大小:9345k
文件大小:46k
源码类别:

JavaScript

开发平台:

JavaScript

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