ext的panel怎么自定义页面内容
1个回答
展开全部
要达到你的效果,可以用2种方法
1是每次使用都new一个panel组件,使用相同配置
2是只创建一个panel组件,每次使用时更新它的内容
这里你自己取舍吧
方法1
function createNP(target){
var config = {
width: 200,
height: 200,
bodyStyle: {
background: '#F00'
},
renderTo: target
};
return Ext.create('Ext.panel.Panel', config);
}
方法2
var p = Ext.create('Ext.panel.Panel', {
width: 200,
height: 200,
bodyStyle: {
background: '#F00'
},
renderTo: Ext.getBody()
});
p.update('字符串或html');
p.removeAll();
p.add({
//新组件
})
1是每次使用都new一个panel组件,使用相同配置
2是只创建一个panel组件,每次使用时更新它的内容
这里你自己取舍吧
方法1
function createNP(target){
var config = {
width: 200,
height: 200,
bodyStyle: {
background: '#F00'
},
renderTo: target
};
return Ext.create('Ext.panel.Panel', config);
}
方法2
var p = Ext.create('Ext.panel.Panel', {
width: 200,
height: 200,
bodyStyle: {
background: '#F00'
},
renderTo: Ext.getBody()
});
p.update('字符串或html');
p.removeAll();
p.add({
//新组件
})
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询