使用 Ext-js 开发 ui
我是 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'
}
]
});
});
提前谢谢您。
I m new to Ext-js .I m developing a form.but not able to allign it to center.
This is my code
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'
}
]
});
});
Thank you in advanced.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要应用
css
来执行此操作,或使用x
&formpanel
的y
配置You'll need to apply
css
to do that, or use thex
&y
configs offormpanel
解决此问题的另一种方法:
使用
One more way to solve this problem:
use