我在视口中的手风琴布局中创建了一个组合框,但 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'
}]})