gridPanel 在浏览器中的自适应设定

定义全局变量: companyListPanel.
在js 中添加如下代码:
window.onresize=function(){
		        companyListPanel.setHeight(document.documentElement.clientHeight - 40);
		        companyListPanel.setWidth(document.documentElement.clientWidth);
		};

最优方案,
a. 创建一Panel :
var panel = new Ext.Panel({
					width:'100%',
					height:'100%',
			    	region:'center',
			    	layout:'border',
			    	items:[companyListPanel]
			    });


  b.  将GridPanel放置在panel中, 并设置region: "center", 不设置宽高

你可能感兴趣的:(浏览器,ext)