我是 sencha touch 的新手,无法将表单加载到视图中。
在我的 app.js 中,我正在加载主视图
Ext.Viewport.add(Ext.create('app.view.Main'));
我的完整 app.js 如下
Ext.application({
name: 'app',
requires: [
'Ext.MessageBox',
'Ext.form.FieldSet',
],
views: ['Main'],
launch: function() {
// Initialize the main view
Ext.Viewport.add(Ext.create('PlanPouch.view.Main'));
},
});
我的主要观点是:
Ext.define("app.view.Main", {
extend: 'Ext.Container',
config:{
items:[
form
]
}
});
var form = Ext.create('Ext.form.Panel', {
fullscreen: true,
items: [
{
xtype: 'textfield',
name: 'name',
label: 'Name'
},
{
xtype: 'emailfield',
name: 'email',
label: 'Email'
},
{
xtype: 'passwordfield',
name: 'password',
label: 'Password'
}
]
});
我从官方文档中获取了表格,但由于某种原因表格没有加载。那么如何将表单添加到我的主视图中呢?