Extjs panel自动适应页面高度

listeners :{

//进入页面执行事件设置高度和宽度
'render':function(){
this.setWidth(document.body.offsetWidth);
this.setHeight(document.body.offsetHeight);
},
bodyresize:function() {
this.setWidth(window.screen.width);
}
}
注意:当monitorResize设为false时,容器size改变,里面的元素的size不会重新设置
附:
javascript 如何获得当前窗口的宽度和高度

你可能感兴趣的:(extjs)