当前位置: 代码迷 >> JavaScript >> extjs textfield 居间
  详细解决方案

extjs textfield 居间

热度:640   发布时间:2012-09-05 15:19:34.0
extjs textfield 居中

new Ext.Window({
  
  title: 'textfield 内容居中',
  
        width:400,

        height:300,

        loyout:'form',

       items:[

                xtype:'textfield',
    fieldLabel:'姓名',
    style:{'text-align':'center'}

               


      ]

 

});

 

  相关解决方案