请问页面布局子菜单的问题!!!!!!
ciwan
2008-07-30
在a.js里生成了上左右的页面布局
我现在点击左边树的会触发事件 listeners:{ 'click':function(node,event) { event.stopEvent(); removeComponents(); n3 = centerPanel.getComponent(node.id); if (!n3) { n3 = centerPanel.add({ 'id':node.id, 'title':node.text, closable:true, html:'</script><iframe scrolling="auto" frameborder="0" width="100%" height="100%" src="content.html"></iframe>' }); } //centerPanel.addItem(n); Ext.getCmp('centerPanel').layout.setActiveItem(n3); } } 如果我在新打开的content.html里(此页面是右content.js生成)加上按扭事件, 显示子菜单在centerPanel里,请问如何操作?? |