博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
转帖01
阅读量:6623 次
发布时间:2019-06-25

本文共 718 字,大约阅读时间需要 2 分钟。

{
            region:
'
west
'
,
            collapsible:
true
,
            title:
'
导航菜单
'
,
            xtype:
'
treepanel
'
,
            width:
200
,
            autoScroll:
true
,
            split:
true
,
            loader:
new
Ext.tree.TreeLoader({dataUrl:
'
tree.aspx
'
}),
            root: {
                nodeType:
'
async
'
,
                text :
'
root
'
,
                draggable :
false
,
                id :
'
0
'
            },
            rootVisible :
false
,
            listeners: {
                
'
click
'
:
function
(node, event) {   
                 event.stopEvent();   
                
var
n
=
Ext.getCmp(
'
tab
'
).getComponent(node.id);   
                
if
(
!
n
&&
node.attributes.href
!=
null
) {
                    n
=
Ext.getCmp(
'
tab
'
).add({
                      
'
id
'
:node.id,
                      
'
title
'
:node.text,
                       closable:
true
,
                       autoLoad:{url:node.attributes.href, scripts:
true
}
                    });   
                 }   
                 Ext.getCmp(
'
tab
'
).setActiveTab(n);
              }   
            }
        }

转载于:https://www.cnblogs.com/umlzhang/archive/2011/10/30/2229656.html

你可能感兴趣的文章
Swift 表达式
查看>>
FFmpeg(8)-打开音视频解码器,配置解码器上下文(avcodec_find_decoder()、avcodec_alloc_context3())...
查看>>
andriod自定义视图
查看>>
linux下vim更改注释颜色
查看>>
在SSL / https下托管SignalR
查看>>
Using JRuby with Maven
查看>>
poj 3308 (最大流)
查看>>
Netty了解与小试
查看>>
醒醒吧少年,只用Cucumber不能帮助你BDD
查看>>
一名女程序员对iOS的想法
查看>>
Cloud Native未来值得关注的方向:Service Mesh简介
查看>>
西班牙现新型电费退款网络诈骗 侨胞需谨防上当
查看>>
JVM新生代和老年代配置原则
查看>>
ArrayList
查看>>
源码阅读:AFNetworking(二)——AFURLRequestSerialization
查看>>
Angular学习笔记(一) - 之安装教程
查看>>
Spring Websocket实现文本、图片、声音、文件下载及推送、接收及显示(集群模式)...
查看>>
Python学习
查看>>
阿里云文件存储NAS简介及应用场景
查看>>
“数据结构+算法”视角的Asprova
查看>>