0
我是Ext-js的新用戶,我開發了一個窗體,但無法將它對齊到中心。 這是我的代碼使用Ext-js開發用戶界面
Ext.onReady(function()
{
Ext.QuickTips.init();
Ext.form.Field.prototype.msgTarget = 'side';
var reg_form = new Ext.FormPanel({
renderTo: document.body,
title: 'Employee Registration Form',
width:600,
height:500,
bodyStyle: 'padding:10px 10px 15px 15px;background:#dfe8f6;',
items: [
{
xtype: 'numberfield',
fieldLabel: 'Employee Id',
name: 'id',
decimalPrecision:2,
allowBlank: false
},
{
xtype: 'textfield',
fieldLabel: 'Employee Name',
name: 'name',
allowBlank: false,
vtype:'alpha'
}
]
});
});
感謝您的高級。