extjs动态向panel如何嵌套panel
2个回答
展开全部
Ext.namespace('DF.tjxs');
/**
* 配电设备
*
*/
DF.tjxs.pwsbPanel = function(config) {
// 定义成员变量 及方法
var cb = new Ext.form.ComboBox({
// all of your config options
// fieldLabel: '月份',
//
// listeners:{
// scope: this
//// 'select': yourFunction
// }
});
var toolbarPanel = new Ext.Panel({
// title : '工具栏面板',
region : 'north' ,
height : 40,
items :[cb]
});
var pwsbTreePanel = new Ext.Panel({
// title : '配网设备列表',
region : 'west' ,
width : 200,
minSize : 100,
maxSize : 300
});
var pwsbEditPanel = new Ext.Panel({
// title : '编辑功能面板',
region : 'center',
height : 100
});
var innerPanel = new Ext.Panel({
title : '配网设备管理',
region : 'center',
margins : '5 0 0 0',
layout : 'border',
width : 500,
height : 600,
items : [toolbarPanel,pwsbTreePanel, pwsbEditPanel]
});
// 调用构造函数
DF.tjxs.pwsbPanel.superclass.constructor.call(this, {
layout: 'border',
title : '配网设备',
closable : true,
scope : this,
items : [innerPanel]
});
Ext.apply(this, config);
};
Ext.extend(DF.tjxs.pwsbPanel, Ext.Panel, {
});
/**
* 配电设备
*
*/
DF.tjxs.pwsbPanel = function(config) {
// 定义成员变量 及方法
var cb = new Ext.form.ComboBox({
// all of your config options
// fieldLabel: '月份',
//
// listeners:{
// scope: this
//// 'select': yourFunction
// }
});
var toolbarPanel = new Ext.Panel({
// title : '工具栏面板',
region : 'north' ,
height : 40,
items :[cb]
});
var pwsbTreePanel = new Ext.Panel({
// title : '配网设备列表',
region : 'west' ,
width : 200,
minSize : 100,
maxSize : 300
});
var pwsbEditPanel = new Ext.Panel({
// title : '编辑功能面板',
region : 'center',
height : 100
});
var innerPanel = new Ext.Panel({
title : '配网设备管理',
region : 'center',
margins : '5 0 0 0',
layout : 'border',
width : 500,
height : 600,
items : [toolbarPanel,pwsbTreePanel, pwsbEditPanel]
});
// 调用构造函数
DF.tjxs.pwsbPanel.superclass.constructor.call(this, {
layout: 'border',
title : '配网设备',
closable : true,
scope : this,
items : [innerPanel]
});
Ext.apply(this, config);
};
Ext.extend(DF.tjxs.pwsbPanel, Ext.Panel, {
});
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-08-12
展开全部
var panel_outer = new Ext.Panel();var panel_one = new Ext.Panel();panel_outer.add(panel_one);panel_outer.doLayout();
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询