0

我在视口中的手风琴布局中创建了一个组合框,但 fildlabel 没有出现在我的组合框中。注意:我在 geoext 1-1 和 Extjs 3-4-0 上工作。这是我的代码:

new Ext.TabPanel({
    border: false, // already wrapped so don't add another border
    activeTab: 1, // second tab initially active
    tabPosition: 'bottom',
    items: [{
        html: '<p>A TabPanel component can be a region.</p>',
        title: 'A Tab',
        autoScroll: true,
        items: [  {
                xtype: 'button',
                text: 'test',
                tooltip: 'Test Button'
            },{
                xtype: 'combo',
                tooltip: 'promosCombo ',
                id : 'promosCombo',
                fieldLabel : "city",
                triggerAction : 'all',
                emptyText : "Select",
                editable : false,
                store : promosStore,
                mode : 'local',
                valueField : 'value',
                buttonAlign : 'center',
                labelAlign : 'right',
                labelWidth : 70,
                displayField : 'display'
}]})
4

1 回答 1

1

如果你想看到fieldLabel,你的组件应该添加到容器下FormLayout。添加layout: 'form'到您的选项卡配置中,您的标签将出现。

工作样本:http: //jsfiddle.net/Rvapq/3/

于 2013-10-28T11:16:13.287 回答