定义全局变量: companyListPanel.
在js 中添加如下代码:
[color=red][b]最优方案,[/b][/color]
a. 创建一Panel :
b. 将GridPanel放置在panel中, 并设置region: "center", 不设置宽高
在js 中添加如下代码:
window.onresize=function(){
companyListPanel.setHeight(document.documentElement.clientHeight - 40);
companyListPanel.setWidth(document.documentElement.clientWidth);
};
[color=red][b]最优方案,[/b][/color]
a. 创建一Panel :
var panel = new Ext.Panel({
width:'100%',
height:'100%',
region:'center',
layout:'border',
items:[companyListPanel]
});
b. 将GridPanel放置在panel中, 并设置region: "center", 不设置宽高