码迷,mamicode.com
首页 > Web开发 > 详细

extjs3 tree 指定内容qtip

时间:2017-07-26 13:38:35      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:UI   har   order   com   sheet   style   panel   image   nod   

技术分享


<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<link href="resources/css/ext-all.css" rel="stylesheet">
<script src="jslib/ext-base.js"></script>
<script src="jslib/ext-all.js"></script>
</head>
<body>
<script>
function init(){
var tree = new Ext.tree.TreePanel({
renderTo: Ext.getBody(),
useArrows: true,
autoScroll: true,
animate: true,
enableDD: true,
containerScroll: true,
border: false,
title:‘tree‘,
root: {
nodeType: ‘async‘,
text: ‘Ext JS‘,
draggable: false,
id: ‘source‘,
children: [{
text: ‘Menu Option 1‘,
leaf: true,
id:1,
code:‘1001‘
}, {
text: ‘Menu Option 2‘,
leaf: true,
id:2,
code:‘1002‘
}, {
text: ‘Menu Option 3‘,
leaf: true,
id : 3,
code:‘1003‘
}]
},
listeners: {
append: function (tree, parent, node, index ) {
Ext.QuickTips.init();
node.attributes.qtip=node.attributes.code;
}
}
});
tree.getRootNode().expand();
}
Ext.onReady(init);
</script>
</body>
</html>

extjs3 tree 指定内容qtip

标签:UI   har   order   com   sheet   style   panel   image   nod   

原文地址:http://www.cnblogs.com/a-long/p/7239074.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!