EXTJS:怎么把tree菜单放到左面板里?

EXTJS:怎么把tree菜单放到左面板里Ext.onReady(function(){Ext.create('Ext.container.Viewport',{layo... EXTJS:怎么把tree菜单放到左面板里
Ext.onReady(function () {
Ext.create('Ext.container.Viewport', {
layout: 'border',
items: [{
region: 'north',
title: '顶部',
html: '<h1 class="x-panel-header">头部</h1>',
border: false,
margin: '0 0 5 0'
}, {
region: 'west',
collapsible: true,
title: '左面板',
width: 150,
items: store
}
}]
});
});
//创建tree菜单
var store = Ext.create('Ext.data.TreeStore', {
root: {
expanded: true,
children: [{
text: "detention",
leaf: true
}, {
text: "homework",
expanded: true,
children: [{
text: "book report",
leaf: true
}, {
text: "algebra",
leaf: true
}]
}, {
text: "buy lottery tickets",
leaf: true
}]
}
});
展开
 我来答
百度网友13b7853
推荐于2017-09-03 · 超过10用户采纳过TA的回答
知道答主
回答量:17
采纳率:0%
帮助的人:14.6万
展开全部
Ext.onReady(function () {
// 创建tree菜单
    var store = Ext.create('Ext.data.TreeStore', {
        root: {
            expanded: true,
            children: [{
                text: "detention",
                leaf: true
            }, {
                text: "homework",
                expanded: true,
                children: [{
                    text: "book report",
                    leaf: true
                }, {
                    text: "algebra",
                    leaf: true
                }]
            }, {
                text: "buy lottery tickets",
                leaf: true
            }]
        }
    });
    
    Ext.create('Ext.container.Viewport', {
        layout: 'border',
        items: [{
            region: 'north',
            xtype: 'panel',
            title: '顶部',
            html: '<h1 class="x-panel-header">头部</h1>',
            border: false,
            margin: '0 0 5 0'
        }, {
            region: 'west',
            xtype: 'panel',
            collapsible: true,
            title: '左面板',
            width: 150,
            layout: 'fit',
            items: [{
             xtype: 'treepanel', //这边引入treepanel
             store: store //上面定义的store
            }]
        }, {
         region: 'center',
            xtype: 'panel',
            title: '中间面板',
            html: '<h1 class="x-panel-header">中间面板</h1>',
        }]
    });
});
最爱花满楼1984
2014-08-22 · 超过18用户采纳过TA的回答
知道答主
回答量:31
采纳率:0%
帮助的人:38.1万
展开全部
不应该把treestore放到里面,应该是放treepanel
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式