[img]http://dl.iteye.com/upload/attachment/228027/42e54dd0-2ad4-3d0a-a8bf-9be4191f34c1.png[/img]
就像Ext文档里的这个一样,一个下拉框一个输入框,中间间距很短(我试来试去中间的间距都消除不掉)
使用表格布局
设置他们的布局格式 具体看layout包下面的布局
function comp(){
var form=new Ext.Panel( {id:'vd',layout:'column',
items: [{ xtype: 'label', text: '姓名:',columnWidth:.2},
{ xtype: 'textfield' ,columnWidth:.4,value:'aa'},
{ xtype: 'textfield' ,columnWidth:.4,value:'bb'} ]
});
showWindow('e',form);
}
function showWindow(title,form){
var win=new Ext.Window({
title : title,closable : true,width : 320,height : 220,
modal: true,border:false,resizable :false,layout:'border',
items:[{layout: 'fit',items:[form],region:"center"}]
});
win.show();
}
⊙﹏⊙b汗 别的我也没试过 你要有想到更简单的多多指教下