Extjs中layout:column的布局,容器大小不能使用百分比,不能自适应
heroyanglei
2010-09-03
var infoForm = new Ext.FormPanel({ renderTo : "infoFormWin", title : '信息', width : '100%', layout : 'column', items : [{ columnWidth : .4, xtype : 'fieldset', labelAlign:'right', title : '信息1', id : 'oldcardinfo', }] )} 这里面的fieldset元素的大小不能随浏览器的缩放而改变。不能自适应大小!这个问题怎么解决?希望有能帮忙,或者建议一下,要不要该布局,不用column。谢谢! |
|
wp0615032
2012-08-29
width : '100%' 改成 anchor : '98%'
|