Roo/form/ComboBox.js
[roojs1] / Roo / form / ComboBox.js
1 /*
2  * Based on:
3  * Ext JS Library 1.1.1
4  * Copyright(c) 2006-2007, Ext JS, LLC.
5  *
6  * Originally Released Under LGPL - original licence link has changed is not relivant.
7  *
8  * Fork - LGPL
9  * <script type="text/javascript">
10  */
11  
12
13 /**
14  * @class Roo.form.ComboBox
15  * @extends Roo.form.TriggerField
16  * A combobox control with support for autocomplete, remote-loading, paging and many other features.
17  * @constructor
18  * Create a new ComboBox.
19  * @param {Object} config Configuration options
20  */
21 Roo.form.ComboBox = function(config){
22     Roo.form.ComboBox.superclass.constructor.call(this, config);
23     this.addEvents({
24         /**
25          * @event expand
26          * Fires when the dropdown list is expanded
27              * @param {Roo.form.ComboBox} combo This combo box
28              */
29         'expand' : true,
30         /**
31          * @event collapse
32          * Fires when the dropdown list is collapsed
33              * @param {Roo.form.ComboBox} combo This combo box
34              */
35         'collapse' : true,
36         /**
37          * @event beforeselect
38          * Fires before a list item is selected. Return false to cancel the selection.
39              * @param {Roo.form.ComboBox} combo This combo box
40              * @param {Roo.data.Record} record The data record returned from the underlying store
41              * @param {Number} index The index of the selected item in the dropdown list
42              */
43         'beforeselect' : true,
44         /**
45          * @event select
46          * Fires when a list item is selected
47              * @param {Roo.form.ComboBox} combo This combo box
48              * @param {Roo.data.Record} record The data record returned from the underlying store (or false on clear)
49              * @param {Number} index The index of the selected item in the dropdown list
50              */
51         'select' : true,
52         /**
53          * @event beforequery
54          * Fires before all queries are processed. Return false to cancel the query or set cancel to true.
55          * The event object passed has these properties:
56              * @param {Roo.form.ComboBox} combo This combo box
57              * @param {String} query The query
58              * @param {Boolean} forceAll true to force "all" query
59              * @param {Boolean} cancel true to cancel the query
60              * @param {Object} e The query event object
61              */
62         'beforequery': true,
63          /**
64          * @event add
65          * Fires when the 'add' icon is pressed (add a listener to enable add button)
66              * @param {Roo.form.ComboBox} combo This combo box
67              */
68         'add' : true,
69         /**
70          * @event edit
71          * Fires when the 'edit' icon is pressed (add a listener to enable add button)
72              * @param {Roo.form.ComboBox} combo This combo box
73              * @param {Roo.data.Record|false} record The data record returned from the underlying store (or false on nothing selected)
74              */
75         'edit' : true
76         
77         
78     });
79     if(this.transform){
80         this.allowDomMove = false;
81         var s = Roo.getDom(this.transform);
82         if(!this.hiddenName){
83             this.hiddenName = s.name;
84         }
85         if(!this.store){
86             this.mode = 'local';
87             var d = [], opts = s.options;
88             for(var i = 0, len = opts.length;i < len; i++){
89                 var o = opts[i];
90                 var value = (Roo.isIE ? o.getAttributeNode('value').specified : o.hasAttribute('value')) ? o.value : o.text;
91                 if(o.selected) {
92                     this.value = value;
93                 }
94                 d.push([value, o.text]);
95             }
96             this.store = new Roo.data.SimpleStore({
97                 'id': 0,
98                 fields: ['value', 'text'],
99                 data : d
100             });
101             this.valueField = 'value';
102             this.displayField = 'text';
103         }
104         s.name = Roo.id(); // wipe out the name in case somewhere else they have a reference
105         if(!this.lazyRender){
106             this.target = true;
107             this.el = Roo.DomHelper.insertBefore(s, this.autoCreate || this.defaultAutoCreate);
108             s.parentNode.removeChild(s); // remove it
109             this.render(this.el.parentNode);
110         }else{
111             s.parentNode.removeChild(s); // remove it
112         }
113
114     }
115     if (this.store) {
116         this.store = Roo.factory(this.store, Roo.data);
117     }
118     
119     this.selectedIndex = -1;
120     if(this.mode == 'local'){
121         if(config.queryDelay === undefined){
122             this.queryDelay = 10;
123         }
124         if(config.minChars === undefined){
125             this.minChars = 0;
126         }
127     }
128 };
129
130 Roo.extend(Roo.form.ComboBox, Roo.form.TriggerField, {
131     /**
132      * @cfg {String/HTMLElement/Element} transform The id, DOM node or element of an existing select to convert to a ComboBox
133      */
134     /**
135      * @cfg {Boolean} lazyRender True to prevent the ComboBox from rendering until requested (should always be used when
136      * rendering into an Roo.Editor, defaults to false)
137      */
138     /**
139      * @cfg {Boolean/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to:
140      * {tag: "input", type: "text", size: "24", autocomplete: "off"})
141      */
142     /**
143      * @cfg {Roo.data.Store} store The data store to which this combo is bound (defaults to undefined)
144      */
145     /**
146      * @cfg {String} title If supplied, a header element is created containing this text and added into the top of
147      * the dropdown list (defaults to undefined, with no header element)
148      */
149
150      /**
151      * @cfg {String/Roo.Template} tpl The template to use to render the output
152      */
153      
154     // private
155     defaultAutoCreate : {tag: "input", type: "text", size: "24", autocomplete: "off"},
156     /**
157      * @cfg {Number} listWidth The width in pixels of the dropdown list (defaults to the width of the ComboBox field)
158      */
159     listWidth: undefined,
160     /**
161      * @cfg {String} displayField The underlying data field name to bind to this CombBox (defaults to undefined if
162      * mode = 'remote' or 'text' if mode = 'local')
163      */
164     displayField: undefined,
165     /**
166      * @cfg {String} valueField The underlying data value name to bind to this CombBox (defaults to undefined if
167      * mode = 'remote' or 'value' if mode = 'local'). 
168      * Note: use of a valueField requires the user make a selection
169      * in order for a value to be mapped.
170      */
171     valueField: undefined,
172     /**
173      * @cfg {String} hiddenName If specified, a hidden form field with this name is dynamically generated to store the
174      * field's data value (defaults to the underlying DOM element's name)
175      */
176     hiddenName: undefined,
177     /**
178      * @cfg {String} listClass CSS class to apply to the dropdown list element (defaults to '')
179      */
180     listClass: '',
181     /**
182      * @cfg {String} selectedClass CSS class to apply to the selected item in the dropdown list (defaults to 'x-combo-selected')
183      */
184     selectedClass: 'x-combo-selected',
185     /**
186      * @cfg {String} triggerClass An additional CSS class used to style the trigger button.  The trigger will always get the
187      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-arrow-trigger'
188      * which displays a downward arrow icon).
189      */
190     triggerClass : 'x-form-arrow-trigger',
191     /**
192      * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop" for bottom-right
193      */
194     shadow:'sides',
195     /**
196      * @cfg {String} listAlign A valid anchor position value. See {@link Roo.Element#alignTo} for details on supported
197      * anchor positions (defaults to 'tl-bl')
198      */
199     listAlign: 'tl-bl?',
200     /**
201      * @cfg {Number} maxHeight The maximum height in pixels of the dropdown list before scrollbars are shown (defaults to 300)
202      */
203     maxHeight: 300,
204     /**
205      * @cfg {String} triggerAction The action to execute when the trigger field is activated.  Use 'all' to run the
206      * query specified by the allQuery config option (defaults to 'query')
207      */
208     triggerAction: 'query',
209     /**
210      * @cfg {Number} minChars The minimum number of characters the user must type before autocomplete and typeahead activate
211      * (defaults to 4, does not apply if editable = false)
212      */
213     minChars : 4,
214     /**
215      * @cfg {Boolean} typeAhead True to populate and autoselect the remainder of the text being typed after a configurable
216      * delay (typeAheadDelay) if it matches a known value (defaults to false)
217      */
218     typeAhead: false,
219     /**
220      * @cfg {Number} queryDelay The length of time in milliseconds to delay between the start of typing and sending the
221      * query to filter the dropdown list (defaults to 500 if mode = 'remote' or 10 if mode = 'local')
222      */
223     queryDelay: 500,
224     /**
225      * @cfg {Number} pageSize If greater than 0, a paging toolbar is displayed in the footer of the dropdown list and the
226      * filter queries will execute with page start and limit parameters.  Only applies when mode = 'remote' (defaults to 0)
227      */
228     pageSize: 0,
229     /**
230      * @cfg {Boolean} selectOnFocus True to select any existing text in the field immediately on focus.  Only applies
231      * when editable = true (defaults to false)
232      */
233     selectOnFocus:false,
234     /**
235      * @cfg {String} queryParam Name of the query as it will be passed on the querystring (defaults to 'query')
236      */
237     queryParam: 'query',
238     /**
239      * @cfg {String} loadingText The text to display in the dropdown list while data is loading.  Only applies
240      * when mode = 'remote' (defaults to 'Loading...')
241      */
242     loadingText: 'Loading...',
243     /**
244      * @cfg {Boolean} resizable True to add a resize handle to the bottom of the dropdown list (defaults to false)
245      */
246     resizable: false,
247     /**
248      * @cfg {Number} handleHeight The height in pixels of the dropdown list resize handle if resizable = true (defaults to 8)
249      */
250     handleHeight : 8,
251     /**
252      * @cfg {Boolean} editable False to prevent the user from typing text directly into the field, just like a
253      * traditional select (defaults to true)
254      */
255     editable: true,
256     /**
257      * @cfg {String} allQuery The text query to send to the server to return all records for the list with no filtering (defaults to '')
258      */
259     allQuery: '',
260     /**
261      * @cfg {String} mode Set to 'local' if the ComboBox loads local data (defaults to 'remote' which loads from the server)
262      */
263     mode: 'remote',
264     /**
265      * @cfg {Number} minListWidth The minimum width of the dropdown list in pixels (defaults to 70, will be ignored if
266      * listWidth has a higher value)
267      */
268     minListWidth : 70,
269     /**
270      * @cfg {Boolean} forceSelection True to restrict the selected value to one of the values in the list, false to
271      * allow the user to set arbitrary text into the field (defaults to false)
272      */
273     forceSelection:false,
274     /**
275      * @cfg {Number} typeAheadDelay The length of time in milliseconds to wait until the typeahead text is displayed
276      * if typeAhead = true (defaults to 250)
277      */
278     typeAheadDelay : 250,
279     /**
280      * @cfg {String} valueNotFoundText When using a name/value combo, if the value passed to setValue is not found in
281      * the store, valueNotFoundText will be displayed as the field text if defined (defaults to undefined)
282      */
283     valueNotFoundText : undefined,
284     /**
285      * @cfg {bool} blockFocus Prevents all focus calls, so it can work with things like HTML edtor bar
286      */
287     blockFocus : false,
288     
289     /**
290      * @cfg {bool} disableClear Disable showing of clear button.
291      */
292     disableClear : false,
293     
294     //private
295     addicon : false,
296     editicon: false,
297     
298     
299     // private
300     onRender : function(ct, position){
301         Roo.form.ComboBox.superclass.onRender.call(this, ct, position);
302         if(this.hiddenName){
303             this.hiddenField = this.el.insertSibling({tag:'input', type:'hidden', name: this.hiddenName, id:  (this.hiddenId||this.hiddenName)},
304                     'before', true);
305             this.hiddenField.value =
306                 this.hiddenValue !== undefined ? this.hiddenValue :
307                 this.value !== undefined ? this.value : '';
308
309             // prevent input submission
310             this.el.dom.removeAttribute('name');
311         }
312         if(Roo.isGecko){
313             this.el.dom.setAttribute('autocomplete', 'off');
314         }
315
316         var cls = 'x-combo-list';
317
318         this.list = new Roo.Layer({
319             shadow: this.shadow, cls: [cls, this.listClass].join(' '), constrain:false
320         });
321
322         var lw = this.listWidth || Math.max(this.wrap.getWidth(), this.minListWidth);
323         this.list.setWidth(lw);
324         this.list.swallowEvent('mousewheel');
325         this.assetHeight = 0;
326
327         if(this.title){
328             this.header = this.list.createChild({cls:cls+'-hd', html: this.title});
329             this.assetHeight += this.header.getHeight();
330         }
331
332         this.innerList = this.list.createChild({cls:cls+'-inner'});
333         this.innerList.on('mouseover', this.onViewOver, this);
334         this.innerList.on('mousemove', this.onViewMove, this);
335         this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
336         
337         if(this.allowBlank && !this.pageSize && !this.disableClear){
338             this.footer = this.list.createChild({cls:cls+'-ft'});
339             this.pageTb = new Roo.Toolbar(this.footer);
340            
341         }
342         if(this.pageSize){
343             this.footer = this.list.createChild({cls:cls+'-ft'});
344             this.pageTb = new Roo.PagingToolbar(this.footer, this.store,
345                     {pageSize: this.pageSize});
346             
347         }
348         
349         if (this.pageTb && this.allowBlank && !this.disableClear) {
350             var _this = this;
351             this.pageTb.add(new Roo.Toolbar.Fill(), {
352                 cls: 'x-btn-icon x-btn-clear',
353                 text: '&#160;',
354                 handler: function()
355                 {
356                     _this.collapse();
357                     _this.clearValue();
358                     _this.onSelect(false, -1);
359                 }
360             });
361         }
362         if (this.footer) {
363             this.assetHeight += this.footer.getHeight();
364         }
365         
366
367         if(!this.tpl){
368             this.tpl = '<div class="'+cls+'-item">{' + this.displayField + '}</div>';
369         }
370
371         this.view = new Roo.View(this.innerList, this.tpl, {
372             singleSelect:true, store: this.store, selectedClass: this.selectedClass
373         });
374
375         this.view.on('click', this.onViewClick, this);
376
377         this.store.on('beforeload', this.onBeforeLoad, this);
378         this.store.on('load', this.onLoad, this);
379         this.store.on('loadexception', this.collapse, this);
380
381         if(this.resizable){
382             this.resizer = new Roo.Resizable(this.list,  {
383                pinned:true, handles:'se'
384             });
385             this.resizer.on('resize', function(r, w, h){
386                 this.maxHeight = h-this.handleHeight-this.list.getFrameWidth('tb')-this.assetHeight;
387                 this.listWidth = w;
388                 this.innerList.setWidth(w - this.list.getFrameWidth('lr'));
389                 this.restrictHeight();
390             }, this);
391             this[this.pageSize?'footer':'innerList'].setStyle('margin-bottom', this.handleHeight+'px');
392         }
393         if(!this.editable){
394             this.editable = true;
395             this.setEditable(false);
396         }  
397         
398         
399         if (typeof(this.events.add.listeners) != 'undefined') {
400             
401             this.addicon = this.wrap.createChild(
402                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-combo-add' });  
403        
404             this.addicon.on('click', function(e) {
405                 this.fireEvent('add', this);
406             }, this);
407         }
408         if (typeof(this.events.edit.listeners) != 'undefined') {
409             
410             this.editicon = this.wrap.createChild(
411                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-combo-edit' });  
412             if (this.addicon) {
413                 this.editicon.setStyle('margin-left', '40px');
414             }
415             this.editicon.on('click', function(e) {
416                 
417                 // we fire even  if inothing is selected..
418                 this.fireEvent('edit', this, this.lastData );
419                 
420             }, this);
421         }
422         
423         
424         
425     },
426
427     // private
428     initEvents : function(){
429         Roo.form.ComboBox.superclass.initEvents.call(this);
430
431         this.keyNav = new Roo.KeyNav(this.el, {
432             "up" : function(e){
433                 this.inKeyMode = true;
434                 this.selectPrev();
435             },
436
437             "down" : function(e){
438                 if(!this.isExpanded()){
439                     this.onTriggerClick();
440                 }else{
441                     this.inKeyMode = true;
442                     this.selectNext();
443                 }
444             },
445
446             "enter" : function(e){
447                 this.onViewClick();
448                 //return true;
449             },
450
451             "esc" : function(e){
452                 this.collapse();
453             },
454
455             "tab" : function(e){
456                 this.onViewClick(false);
457                 return true;
458             },
459
460             scope : this,
461
462             doRelay : function(foo, bar, hname){
463                 if(hname == 'down' || this.scope.isExpanded()){
464                    return Roo.KeyNav.prototype.doRelay.apply(this, arguments);
465                 }
466                 return true;
467             },
468
469             forceKeyDown: true
470         });
471         this.queryDelay = Math.max(this.queryDelay || 10,
472                 this.mode == 'local' ? 10 : 250);
473         this.dqTask = new Roo.util.DelayedTask(this.initQuery, this);
474         if(this.typeAhead){
475             this.taTask = new Roo.util.DelayedTask(this.onTypeAhead, this);
476         }
477         if(this.editable !== false){
478             this.el.on("keyup", this.onKeyUp, this);
479         }
480         if(this.forceSelection){
481             this.on('blur', this.doForce, this);
482         }
483     },
484
485     onDestroy : function(){
486         if(this.view){
487             this.view.setStore(null);
488             this.view.el.removeAllListeners();
489             this.view.el.remove();
490             this.view.purgeListeners();
491         }
492         if(this.list){
493             this.list.destroy();
494         }
495         if(this.store){
496             this.store.un('beforeload', this.onBeforeLoad, this);
497             this.store.un('load', this.onLoad, this);
498             this.store.un('loadexception', this.collapse, this);
499         }
500         Roo.form.ComboBox.superclass.onDestroy.call(this);
501     },
502
503     // private
504     fireKey : function(e){
505         if(e.isNavKeyPress() && !this.list.isVisible()){
506             this.fireEvent("specialkey", this, e);
507         }
508     },
509
510     // private
511     onResize: function(w, h){
512         Roo.form.ComboBox.superclass.onResize.apply(this, arguments);
513         
514         if(typeof w != 'number'){
515             // we do not handle it!?!?
516             return;
517         }
518         var tw = this.trigger.getWidth();
519         tw += this.addicon ? this.addicon.getWidth() : 0;
520         tw += this.editicon ? this.editicon.getWidth() : 0;
521         var x = w - tw;
522         this.el.setWidth( this.adjustWidth('input', x));
523             
524         this.trigger.setStyle('left', x+'px');
525         
526         if(this.list && this.listWidth === undefined){
527             var lw = Math.max(x + this.trigger.getWidth(), this.minListWidth);
528             this.list.setWidth(lw);
529             this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
530         }
531         
532     
533         
534     },
535
536     /**
537      * Allow or prevent the user from directly editing the field text.  If false is passed,
538      * the user will only be able to select from the items defined in the dropdown list.  This method
539      * is the runtime equivalent of setting the 'editable' config option at config time.
540      * @param {Boolean} value True to allow the user to directly edit the field text
541      */
542     setEditable : function(value){
543         if(value == this.editable){
544             return;
545         }
546         this.editable = value;
547         if(!value){
548             this.el.dom.setAttribute('readOnly', true);
549             this.el.on('mousedown', this.onTriggerClick,  this);
550             this.el.addClass('x-combo-noedit');
551         }else{
552             this.el.dom.setAttribute('readOnly', false);
553             this.el.un('mousedown', this.onTriggerClick,  this);
554             this.el.removeClass('x-combo-noedit');
555         }
556     },
557
558     // private
559     onBeforeLoad : function(){
560         if(!this.hasFocus){
561             return;
562         }
563         this.innerList.update(this.loadingText ?
564                '<div class="loading-indicator">'+this.loadingText+'</div>' : '');
565         this.restrictHeight();
566         this.selectedIndex = -1;
567     },
568
569     // private
570     onLoad : function(){
571         if(!this.hasFocus){
572             return;
573         }
574         if(this.store.getCount() > 0){
575             this.expand();
576             this.restrictHeight();
577             if(this.lastQuery == this.allQuery){
578                 if(this.editable){
579                     this.el.dom.select();
580                 }
581                 if(!this.selectByValue(this.value, true)){
582                     this.select(0, true);
583                 }
584             }else{
585                 this.selectNext();
586                 if(this.typeAhead && this.lastKey != Roo.EventObject.BACKSPACE && this.lastKey != Roo.EventObject.DELETE){
587                     this.taTask.delay(this.typeAheadDelay);
588                 }
589             }
590         }else{
591             this.onEmptyResults();
592         }
593         //this.el.focus();
594     },
595
596     // private
597     onTypeAhead : function(){
598         if(this.store.getCount() > 0){
599             var r = this.store.getAt(0);
600             var newValue = r.data[this.displayField];
601             var len = newValue.length;
602             var selStart = this.getRawValue().length;
603             if(selStart != len){
604                 this.setRawValue(newValue);
605                 this.selectText(selStart, newValue.length);
606             }
607         }
608     },
609
610     // private
611     onSelect : function(record, index){
612         if(this.fireEvent('beforeselect', this, record, index) !== false){
613             this.setFromData(index > -1 ? record.data : false);
614             this.collapse();
615             this.fireEvent('select', this, record, index);
616         }
617     },
618
619     /**
620      * Returns the currently selected field value or empty string if no value is set.
621      * @return {String} value The selected value
622      */
623     getValue : function(){
624         if(this.valueField){
625             return typeof this.value != 'undefined' ? this.value : '';
626         }else{
627             return Roo.form.ComboBox.superclass.getValue.call(this);
628         }
629     },
630
631     /**
632      * Clears any text/value currently set in the field
633      */
634     clearValue : function(){
635         if(this.hiddenField){
636             this.hiddenField.value = '';
637         }
638         this.value = '';
639         this.setRawValue('');
640         this.lastSelectionText = '';
641         this.applyEmptyText();
642     },
643
644     /**
645      * Sets the specified value into the field.  If the value finds a match, the corresponding record text
646      * will be displayed in the field.  If the value does not match the data value of an existing item,
647      * and the valueNotFoundText config option is defined, it will be displayed as the default field text.
648      * Otherwise the field will be blank (although the value will still be set).
649      * @param {String} value The value to match
650      */
651     setValue : function(v){
652         var text = v;
653         if(this.valueField){
654             var r = this.findRecord(this.valueField, v);
655             if(r){
656                 text = r.data[this.displayField];
657             }else if(this.valueNotFoundText !== undefined){
658                 text = this.valueNotFoundText;
659             }
660         }
661         this.lastSelectionText = text;
662         if(this.hiddenField){
663             this.hiddenField.value = v;
664         }
665         Roo.form.ComboBox.superclass.setValue.call(this, text);
666         this.value = v;
667     },
668     /**
669      * @property {Object} the last set data for the element
670      */
671     
672     lastData : false,
673     /**
674      * Sets the value of the field based on a object which is related to the record format for the store.
675      * @param {Object} value the value to set as. or false on reset?
676      */
677     setFromData : function(o){
678         var dv = ''; // display value
679         var vv = ''; // value value..
680         this.lastData = o;
681         if (this.displayField) {
682             dv = !o || typeof(o[this.displayField]) == 'undefined' ? '' : o[this.displayField];
683         } else {
684             // this is an error condition!!!
685             console.log('no value field set for '+ this.name);
686         }
687         
688         if(this.valueField){
689             vv = !o || typeof(o[this.valueField]) == 'undefined' ? dv : o[this.valueField];
690         }
691         if(this.hiddenField){
692             this.hiddenField.value = vv;
693             
694             this.lastSelectionText = dv;
695             Roo.form.ComboBox.superclass.setValue.call(this, dv);
696             this.value = vv;
697             return;
698         }
699         // no hidden field.. - we store the value in 'value', but still display
700         // display field!!!!
701         this.lastSelectionText = dv;
702         Roo.form.ComboBox.superclass.setValue.call(this, dv);
703         this.value = vv;
704         
705         
706     },
707     // private
708     reset : function(){
709         // overridden so that last data is reset..
710         this.setValue(this.originalValue);
711         this.clearInvalid();
712         this.lastData = false;
713     },
714     // private
715     findRecord : function(prop, value){
716         var record;
717         if(this.store.getCount() > 0){
718             this.store.each(function(r){
719                 if(r.data[prop] == value){
720                     record = r;
721                     return false;
722                 }
723             });
724         }
725         return record;
726     },
727
728     // private
729     onViewMove : function(e, t){
730         this.inKeyMode = false;
731     },
732
733     // private
734     onViewOver : function(e, t){
735         if(this.inKeyMode){ // prevent key nav and mouse over conflicts
736             return;
737         }
738         var item = this.view.findItemFromChild(t);
739         if(item){
740             var index = this.view.indexOf(item);
741             this.select(index, false);
742         }
743     },
744
745     // private
746     onViewClick : function(doFocus){
747         var index = this.view.getSelectedIndexes()[0];
748         var r = this.store.getAt(index);
749         if(r){
750             this.onSelect(r, index);
751         }
752         if(doFocus !== false && !this.blockFocus){
753             this.el.focus();
754         }
755     },
756
757     // private
758     restrictHeight : function(){
759         this.innerList.dom.style.height = '';
760         var inner = this.innerList.dom;
761         var h = Math.max(inner.clientHeight, inner.offsetHeight, inner.scrollHeight);
762         this.innerList.setHeight(h < this.maxHeight ? 'auto' : this.maxHeight);
763         this.list.beginUpdate();
764         this.list.setHeight(this.innerList.getHeight()+this.list.getFrameWidth('tb')+(this.resizable?this.handleHeight:0)+this.assetHeight);
765         this.list.alignTo(this.el, this.listAlign);
766         this.list.endUpdate();
767     },
768
769     // private
770     onEmptyResults : function(){
771         this.collapse();
772     },
773
774     /**
775      * Returns true if the dropdown list is expanded, else false.
776      */
777     isExpanded : function(){
778         return this.list.isVisible();
779     },
780
781     /**
782      * Select an item in the dropdown list by its data value. This function does NOT cause the select event to fire.
783      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
784      * @param {String} value The data value of the item to select
785      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
786      * selected item if it is not currently in view (defaults to true)
787      * @return {Boolean} True if the value matched an item in the list, else false
788      */
789     selectByValue : function(v, scrollIntoView){
790         if(v !== undefined && v !== null){
791             var r = this.findRecord(this.valueField || this.displayField, v);
792             if(r){
793                 this.select(this.store.indexOf(r), scrollIntoView);
794                 return true;
795             }
796         }
797         return false;
798     },
799
800     /**
801      * Select an item in the dropdown list by its numeric index in the list. This function does NOT cause the select event to fire.
802      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
803      * @param {Number} index The zero-based index of the list item to select
804      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
805      * selected item if it is not currently in view (defaults to true)
806      */
807     select : function(index, scrollIntoView){
808         this.selectedIndex = index;
809         this.view.select(index);
810         if(scrollIntoView !== false){
811             var el = this.view.getNode(index);
812             if(el){
813                 this.innerList.scrollChildIntoView(el, false);
814             }
815         }
816     },
817
818     // private
819     selectNext : function(){
820         var ct = this.store.getCount();
821         if(ct > 0){
822             if(this.selectedIndex == -1){
823                 this.select(0);
824             }else if(this.selectedIndex < ct-1){
825                 this.select(this.selectedIndex+1);
826             }
827         }
828     },
829
830     // private
831     selectPrev : function(){
832         var ct = this.store.getCount();
833         if(ct > 0){
834             if(this.selectedIndex == -1){
835                 this.select(0);
836             }else if(this.selectedIndex != 0){
837                 this.select(this.selectedIndex-1);
838             }
839         }
840     },
841
842     // private
843     onKeyUp : function(e){
844         if(this.editable !== false && !e.isSpecialKey()){
845             this.lastKey = e.getKey();
846             this.dqTask.delay(this.queryDelay);
847         }
848     },
849
850     // private
851     validateBlur : function(){
852         return !this.list || !this.list.isVisible();   
853     },
854
855     // private
856     initQuery : function(){
857         this.doQuery(this.getRawValue());
858     },
859
860     // private
861     doForce : function(){
862         if(this.el.dom.value.length > 0){
863             this.el.dom.value =
864                 this.lastSelectionText === undefined ? '' : this.lastSelectionText;
865             this.applyEmptyText();
866         }
867     },
868
869     /**
870      * Execute a query to filter the dropdown list.  Fires the beforequery event prior to performing the
871      * query allowing the query action to be canceled if needed.
872      * @param {String} query The SQL query to execute
873      * @param {Boolean} forceAll True to force the query to execute even if there are currently fewer characters
874      * in the field than the minimum specified by the minChars config option.  It also clears any filter previously
875      * saved in the current store (defaults to false)
876      */
877     doQuery : function(q, forceAll){
878         if(q === undefined || q === null){
879             q = '';
880         }
881         var qe = {
882             query: q,
883             forceAll: forceAll,
884             combo: this,
885             cancel:false
886         };
887         if(this.fireEvent('beforequery', qe)===false || qe.cancel){
888             return false;
889         }
890         q = qe.query;
891         forceAll = qe.forceAll;
892         if(forceAll === true || (q.length >= this.minChars)){
893             if(this.lastQuery != q){
894                 this.lastQuery = q;
895                 if(this.mode == 'local'){
896                     this.selectedIndex = -1;
897                     if(forceAll){
898                         this.store.clearFilter();
899                     }else{
900                         this.store.filter(this.displayField, q);
901                     }
902                     this.onLoad();
903                 }else{
904                     this.store.baseParams[this.queryParam] = q;
905                     this.store.load({
906                         params: this.getParams(q)
907                     });
908                     this.expand();
909                 }
910             }else{
911                 this.selectedIndex = -1;
912                 this.onLoad();   
913             }
914         }
915     },
916
917     // private
918     getParams : function(q){
919         var p = {};
920         //p[this.queryParam] = q;
921         if(this.pageSize){
922             p.start = 0;
923             p.limit = this.pageSize;
924         }
925         return p;
926     },
927
928     /**
929      * Hides the dropdown list if it is currently expanded. Fires the 'collapse' event on completion.
930      */
931     collapse : function(){
932         if(!this.isExpanded()){
933             return;
934         }
935         this.list.hide();
936         Roo.get(document).un('mousedown', this.collapseIf, this);
937         Roo.get(document).un('mousewheel', this.collapseIf, this);
938         if (!this.editable) {
939             Roo.get(document).un('keydown', this.listKeyPress, this);
940         }
941         this.fireEvent('collapse', this);
942     },
943
944     // private
945     collapseIf : function(e){
946         if(!e.within(this.wrap) && !e.within(this.list)){
947             this.collapse();
948         }
949     },
950
951     /**
952      * Expands the dropdown list if it is currently hidden. Fires the 'expand' event on completion.
953      */
954     expand : function(){
955         if(this.isExpanded() || !this.hasFocus){
956             return;
957         }
958         this.list.alignTo(this.el, this.listAlign);
959         this.list.show();
960         Roo.get(document).on('mousedown', this.collapseIf, this);
961         Roo.get(document).on('mousewheel', this.collapseIf, this);
962         if (!this.editable) {
963             Roo.get(document).on('keydown', this.listKeyPress, this);
964         }
965         
966         this.fireEvent('expand', this);
967     },
968
969     // private
970     // Implements the default empty TriggerField.onTriggerClick function
971     onTriggerClick : function(){
972         if(this.disabled){
973             return;
974         }
975         if(this.isExpanded()){
976             this.collapse();
977             if (!this.blockFocus) {
978                 this.el.focus();
979             }
980             
981         }else {
982             this.hasFocus = true;
983             if(this.triggerAction == 'all') {
984                 this.doQuery(this.allQuery, true);
985             } else {
986                 this.doQuery(this.getRawValue());
987             }
988             if (!this.blockFocus) {
989                 this.el.focus();
990             }
991         }
992     },
993     listKeyPress : function(e)
994     {
995         //Roo.log('listkeypress');
996         if (e.isSpecialKey()) {
997             return;
998         }
999         var k = String.fromCharCode(e.getKey()).toUpperCase();
1000         //Roo.log(k);
1001         var match  = false
1002         this.store.each(function(v) { 
1003             if (v.get(combo.displayField).substring(0,1).toUpperCase() == k) {
1004                 match = this.store.indexOf(v);
1005                 return false;
1006             }
1007         }, this);
1008         if (match === false) {
1009             return true; // no more action?
1010         }
1011         // scroll to?
1012         this.view.select(match);
1013         var sn = Roo.get(combo.view.getSelectedNodes()[0])
1014         sn.scrollIntoView(sn.dom.parentNode, false);
1015     }
1016
1017     /** 
1018     * @cfg {Boolean} grow 
1019     * @hide 
1020     */
1021     /** 
1022     * @cfg {Number} growMin 
1023     * @hide 
1024     */
1025     /** 
1026     * @cfg {Number} growMax 
1027     * @hide 
1028     */
1029     /**
1030      * @hide
1031      * @method autoSize
1032      */
1033 });