robl
19 Oct 2011, 10:35 AM
This simple app does NOT display:
Ext.application({
name: 'Sencha',
launch: function() {
Ext.create("Ext.form.Panel", {
fullscreen: true,
items: [
{
xtype: 'panel',
items: [
{
xtype: 'toolbar',
docked: 'top',
title: 'test'
},
{
xtype: 'formpanel',
items: [
{
xtype: 'textfield',
name : 'name',
label: 'Name'
},
{
xtype: 'emailfield',
name : 'email',
label: 'Email'
},
{
xtype: 'passwordfield',
name : 'password',
label: 'Password'
}
]
}
]
}
]
});
}
});
BUT this one does. Note that the only thing that changed was "formpanel" => "panel". If the code looks familiar, it's from the "Getting Started" guide: docs/index.html#!/guide/forms
Ext.application({
name: 'Sencha',
launch: function() {
Ext.create("Ext.form.Panel", {
fullscreen: true,
items: [
{
xtype: 'panel',
items: [
{
xtype: 'toolbar',
docked: 'top',
title: 'test'
},
{
xtype: 'panel',
items: [
{
xtype: 'textfield',
name : 'name',
label: 'Name'
},
{
xtype: 'emailfield',
name : 'email',
label: 'Email'
},
{
xtype: 'passwordfield',
name : 'password',
label: 'Password'
}
]
}
]
}
]
});
}
});
Ext.application({
name: 'Sencha',
launch: function() {
Ext.create("Ext.form.Panel", {
fullscreen: true,
items: [
{
xtype: 'panel',
items: [
{
xtype: 'toolbar',
docked: 'top',
title: 'test'
},
{
xtype: 'formpanel',
items: [
{
xtype: 'textfield',
name : 'name',
label: 'Name'
},
{
xtype: 'emailfield',
name : 'email',
label: 'Email'
},
{
xtype: 'passwordfield',
name : 'password',
label: 'Password'
}
]
}
]
}
]
});
}
});
BUT this one does. Note that the only thing that changed was "formpanel" => "panel". If the code looks familiar, it's from the "Getting Started" guide: docs/index.html#!/guide/forms
Ext.application({
name: 'Sencha',
launch: function() {
Ext.create("Ext.form.Panel", {
fullscreen: true,
items: [
{
xtype: 'panel',
items: [
{
xtype: 'toolbar',
docked: 'top',
title: 'test'
},
{
xtype: 'panel',
items: [
{
xtype: 'textfield',
name : 'name',
label: 'Name'
},
{
xtype: 'emailfield',
name : 'email',
label: 'Email'
},
{
xtype: 'passwordfield',
name : 'password',
label: 'Password'
}
]
}
]
}
]
});
}
});