nokia786
19 Mar 2009, 2:16 AM
i have a combobox like the below:
var timeZoneComboBox= new Ext.form.ComboBox({
width:200,
resizable : true,
store:new Ext.data.SimpleStore({
fields: ['TimeZones'],
data : [['Eastern Standard Time(EST)'],
['Central Standard Time(CST)'],
['Pacific Standard Time(PST)'],
['Mountain Standard Time(MST)'],
['Greenwich Mean Time(GMT)']]
}),
name:'selectTimeZone',
displayField:'TimeZones',
typeAhead: true,
mode:'local',
disabled:true,
forceSelection: true,
triggerAction: 'all',
emptyText:'Select the timeZone',
selectOnFocus:true
});
It does not display well and gets truncated- is this a known issue in FF3?
var timeZoneComboBox= new Ext.form.ComboBox({
width:200,
resizable : true,
store:new Ext.data.SimpleStore({
fields: ['TimeZones'],
data : [['Eastern Standard Time(EST)'],
['Central Standard Time(CST)'],
['Pacific Standard Time(PST)'],
['Mountain Standard Time(MST)'],
['Greenwich Mean Time(GMT)']]
}),
name:'selectTimeZone',
displayField:'TimeZones',
typeAhead: true,
mode:'local',
disabled:true,
forceSelection: true,
triggerAction: 'all',
emptyText:'Select the timeZone',
selectOnFocus:true
});
It does not display well and gets truncated- is this a known issue in FF3?