我似乎在这里有一个奇怪的问题。扩展组件具有以下代码:
MyApp.panels.RelationshipDetails = Ext.extend(Ext.FormPanel, {
closable: true,
relationshipId: null,
documentId: null,
title: 'Relationship',
initComponent: function () {
if (!this.verifyRequiredData()) {
MyApp.panels.RelationshipDetails.superclass.initComponent.call(this);
return;
}
// Build components
this.tbar = this.buildToolbar();
this.items = this.buildDetailItemArray();
MyApp.panels.RelationshipDetails.superclass.initComponent.call(this);
},
verifyRequiredData: function () {
// Verification code here
},
buildDetailItemArray: function () {
return [{
xtype: 'fieldset',
title: 'Details',
collapsible: true,
autoHeight: true,
items: [{
xtype: 'hidden',
name: 'Id'
}, {
xtype: 'textfield',
fieldLabel: 'Name',
name: 'Name'
}, {
xtype: 'textfield',
fieldLabel: 'Description',
name: 'Description'
}, {
xtype: 'button',
text: 'Save',
name: 'saveButton'
}]
}];
},
buildToolbar: function () {
return new Ext.Toolbar({
// Toolbar Config
});
}
});
问题在于,当此面板呈现时,工具栏是唯一呈现的内容。通过调试,我可以看到正确调用BuildDetailItemArray()
并返回正确的结果。
当我注释掉this.tbar =
行时,它甚至更奇怪,因为当工具栏不存在时,字段集和字段会正确呈现。即使我延长Panel
而不是FormPanel
,也会发生这种情况。我也尝试将表单字段抽象到它自己的组件中,同样的事情发生了。
任何人都知道为什么这似乎不起作用?
答案 0 :(得分:1)
您尝试将此面板放入哪种布局?另外,您是否为此面板设置了高度?
通常,如果您没有指定要添加的组件的高度(在您的情况下,此面板),或者如果使用AnchorLayout您没有设置锚点,则不会显示组件内容,但工具栏仍然会。
在整体布局中了解此面板的背景情况会很好。