团队我在 ext js 面板中的项目对齐方面面临两个问题。我正在使用 extjs 3.4 版。
基本上我想在每行中水平对齐两个面板文本框,但到目前为止,每行只有一个。
此外,面板和第一个文本框之间似乎没有空间。有什么方法可以在 EXTJS 3.4 中做到这一点
代码 :
<html>
<head>
<title>Hello World Window</title>
<link rel="stylesheet" type="text/css" href="ext-3.4.0/resources/css/ext-all.css" />
<script type="text/javascript" src="ext-3.4.0/adapter/ext/ext-base.js"></script>
<script type="text/javascript" src="ext-3.4.0/ext-all.js"></script>
</head>
<body>
<script type="text/javascript">
Ext.onReady(function(){
var tab2 = new Ext.FormPanel({
labelAlign: 'left',
labelStyle: 'font-weight:bold;',
labelWidth: 85,
title: 'formname',
bodyStyle:'padding:5px',
scrollable:'true',
border:'true',
width: 1200,
height:600,
items: [{
xtype:'panel',
height:200,
autoScroll:true,
defaults: {flex: 1, layout: 'form', border: false},
layout:'hbox',
items:[{
title:'Personal Details',
defaultType: 'textfield',
items: [
{
fieldLabel: 'First Name',
name: 'first',
width:200,
allowBlank:false,
value: 'Jack'
},{
fieldLabel: 'Last Name',
name: 'last',
width:200,
value: 'Slocum'
},{
xtype:'combo',
fieldLabel: 'Company',
name: 'company',
width:200,
value: 'Ext JS'
}, {
fieldLabel: 'Email',
name: 'email',
width:200,
vtype:'email'
}]
}]
}],
buttons: [{
text: 'Save'
},{
text: 'Cancel'
}]
});
tab2.render(document.body);
});
</script>
</div>
</body>
</html>