它是空的。
Ext.define('odtu.view.Main', {
extend: 'Ext.tab.Panel',
xtype: 'main',
requires: [
'Ext.TitleBar',
'Ext.Video',
'Ext.form.Panel',
'Ext.form.FieldSet',
'Ext.field.Password',
'Ext.field.Email'
],
config: {
tabBarPosition: 'bottom',
items: [
{
title: 'Giriş',
iconCls: 'home',
styleHtmlContent: true,
scrollable: true,
items: [
{
docked: 'top',
xtype: 'titlebar',
title: 'm.odtu.lu'
},
{
xtype: 'formpanel',
url: 'register.php',
items:{
xtype: 'fieldset',
items:
[
{
xtype: 'textfield',
name : 'name',
label: 'Name'
},
{
xtype: 'emailfield',
name : 'email',
label: 'Email'
},
{
xtype: 'passwordfield',
name : 'password',
label: 'Password'
}
]
}
}
]
},
{
title: 'Kaydol',
iconCls: 'compose',
items: [
{
docked: 'top',
xtype: 'titlebar',
title: 'Kaydol'
},
{
xtype: 'video',
url: 'http://av.vimeo.com/64284/137/87347327.mp4?token=1330978144_f9b698fea38cd408d52a2393240c896c',
posterUrl: 'http://b.vimeocdn.com/ts/261/062/261062119_640.jpg'
}
]
}
]
}
});
答案 0 :(得分:4)
设置formpanel的高度
{
...
height: 100 // for instance
...
}
如果你想让formpanel占据整个高度,你可以在你的Giriş面板上使用合适的布局
{
title: 'Giriş',
iconCls: 'home',
layout: 'fit'
...
}
希望这有帮助