2011-09-29 80 views
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' 

    } 
] 
}); 

}); 

感謝您的高級。

回答

0

你需要申請css要做到這一點,或使用formpanel

0

另一種方式的x & y CONFIGS來解決這個問題: 使用

Ext.Window({ 
    maximizeble : false, 
    resizeble : false, 
    closable: false, 
    minimizeble: false, 
    ... 
})