我的 app.js 中有一个card
布局设置。这是代码;
...
launch: function() {
var vp = Ext.create('Ext.container.Viewport', {
layout: 'card',
items: [
{
xtype: 'doctor'
},
{
xtype:'nurse'
}
]
});
}, ...
并且,将加载的第一个视图。这是代码;
Ext.define('RoyProject.view.user.Doctor', {
extend:'Ext.form.Panel',
alias : 'widget.doctor',
id:'docform',
defaultType: 'textfield',
items: [{
fieldLabel: 'Name',
name: 'name'
}],
buttons: [, {
text: 'Send',
action:'send'
}]
});
由于我card
在 app.js 中使用布局,所有第一个视图都被拉伸,并占据了整个屏幕。因此,为了摆脱这一点,我想在其中添加一个Panel
andPanel
来添加我的视图(即RoyProject.view.user.Doctor
)。有人可以帮我将此视图添加到面板中,而无需更改代码的逻辑:)