I have a tabpanel and combobox in it On first tab the comboboxes render perfectly i.e the dropdown list width is the same as of combobox But on second, third tab the dropdown list width is narrower than the width of the combobox

Here is the code for TabPanel:

var tabs = new Ext.TabPanel({

    renderTo: 'head-tabs',
    height: 580,
    autoWidth: true,
    activeTab: 0,
    frame: true,
    items: [
        { contentEl: 'DailyVmWare', 
          title: 'Daily VmWare Images' },
        { contentEl: 'OnDemandVmWare', 
          title: 'OnDemand VmWare Images' }
    ]
});

Following is the code for defining comboBox:

var plarformCombo = new Ext.form.ComboBox({
    store: platformStore,
    valueField: 'platformID',
    displayField: 'platformName',
    typeAhead: true,
    mode: 'local',
    forceSelection: true,
    triggerAction: 'all',
    emptyText: 'Select a platform...',
    selectOnFocus: true,
    applyTo: 'platformTypes',
    readOnly: true,
    listeners: {
        'select': platformComboChanged
    }
});

Is there any suggestion on this? Thanks!

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.