直接设置labelWidth属性,但是要注意一点,这个属性要设置在FormPanel中而不是items中,例如
- var reorm = new Ext.form.FormPanel({
- autoHeight : true,
- id : '_id',
- url:'',
- width : 500,
- height:450,
- border: false,
- labelWidth:40,//要设置在这里
- items: [{
- layout:'column',
- columnWidth:1,
- items: [{
- layout:'form',
- border:false,
- items:[{
- xtype : 'textfield',
- fieldLabel: '测试',
- id:'_aaa',
- readOnly:true,
- columnWidth:.9,
- width:200,
- name:'aaa
- }]
- }
本文转自sucre03 51CTO博客,原文链接:http://blog.51cto.com/sucre/884176,如需转载请自行联系原作者