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'
}));
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'
}));