PDA

View Full Version : [2.2][DUP][FIXED] ComboBox disappears in ie when hidetrigger is true



LaurentD
11 Aug 2008, 3:27 AM
I tried to test combo : combo disappears with IE6 (works with Safari & Firefox) when hideTrigger is true. Is it a bug or did I miss something ?

Thanks.


simple.add( new Ext.form.ComboBox ({
fieldLabel:'club'
,id:'club'
//,xtype:'combo'
,typeAhead: false
,hideTrigger:false //with IE makes the combo disappears if true
,loadingText: 'Recherche...'
,valueNotFoundText: 'Aucun clubs'
,displayField:'club_nom'
,valueField:'club_id'
,store: clubsDataStore
,triggerAction:'all'
,mode:'remote'
,minChars:1
,width: 280
,allowBlank:false
,blankText:'ce champ est obligatoire'

}));

Condor
11 Aug 2008, 3:32 AM
Duplicate post (http://extjs.com/forum/showthread.php?t=43231)

LaurentD
11 Aug 2008, 3:58 AM
At least, I missed the thread ;)

Thank you.