升级easyUI到1.9.4版本
This commit is contained in:
47
erp_web/js/easyui/demo/tree/actions.html
Normal file
47
erp_web/js/easyui/demo/tree/actions.html
Normal file
@@ -0,0 +1,47 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Tree Actions - jQuery EasyUI Demo</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../themes/default/easyui.css">
|
||||
<link rel="stylesheet" type="text/css" href="../../themes/icon.css">
|
||||
<link rel="stylesheet" type="text/css" href="../demo.css">
|
||||
<script type="text/javascript" src="../../jquery.min.js"></script>
|
||||
<script type="text/javascript" src="../../jquery.easyui.min.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<h2>Tree Actions</h2>
|
||||
<p>Click the buttons below to perform actions.</p>
|
||||
<div style="margin:20px 0;">
|
||||
<a href="#" class="easyui-linkbutton" onclick="collapseAll()">CollapseAll</a>
|
||||
<a href="#" class="easyui-linkbutton" onclick="expandAll()">ExpandAll</a>
|
||||
<a href="#" class="easyui-linkbutton" onclick="expandTo()">ExpandTo</a>
|
||||
<a href="#" class="easyui-linkbutton" onclick="getSelected()">GetSelected</a>
|
||||
</div>
|
||||
<div class="easyui-panel" style="padding:5px">
|
||||
<ul id="tt" class="easyui-tree" data-options="url:'tree_data1.json',method:'get',animate:true"></ul>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
function collapseAll(){
|
||||
$('#tt').tree('collapseAll');
|
||||
}
|
||||
function expandAll(){
|
||||
$('#tt').tree('expandAll');
|
||||
}
|
||||
function expandTo(){
|
||||
var node = $('#tt').tree('find',113);
|
||||
$('#tt').tree('expandTo', node.target).tree('select', node.target);
|
||||
}
|
||||
function getSelected(){
|
||||
var node = $('#tt').tree('getSelected');
|
||||
if (node){
|
||||
var s = node.text;
|
||||
if (node.attributes){
|
||||
s += ","+node.attributes.p1+","+node.attributes.p2;
|
||||
}
|
||||
alert(s);
|
||||
}
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
20
erp_web/js/easyui/demo/tree/animation.html
Normal file
20
erp_web/js/easyui/demo/tree/animation.html
Normal file
@@ -0,0 +1,20 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Animation Tree - jQuery EasyUI Demo</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../themes/default/easyui.css">
|
||||
<link rel="stylesheet" type="text/css" href="../../themes/icon.css">
|
||||
<link rel="stylesheet" type="text/css" href="../demo.css">
|
||||
<script type="text/javascript" src="../../jquery.min.js"></script>
|
||||
<script type="text/javascript" src="../../jquery.easyui.min.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<h2>Animation Tree</h2>
|
||||
<p>Apply 'animate' property to true to enable animation effect.</p>
|
||||
<div style="margin:20px 0;"></div>
|
||||
<div class="easyui-panel" style="padding:5px">
|
||||
<ul class="easyui-tree" data-options="url:'tree_data1.json',method:'get',animate:true"></ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
53
erp_web/js/easyui/demo/tree/basic.html
Normal file
53
erp_web/js/easyui/demo/tree/basic.html
Normal file
@@ -0,0 +1,53 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Basic Tree - jQuery EasyUI Demo</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../themes/default/easyui.css">
|
||||
<link rel="stylesheet" type="text/css" href="../../themes/icon.css">
|
||||
<link rel="stylesheet" type="text/css" href="../demo.css">
|
||||
<script type="text/javascript" src="../../jquery.min.js"></script>
|
||||
<script type="text/javascript" src="../../jquery.easyui.min.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<h2>Basic Tree</h2>
|
||||
<p>Click the arrow on the left to expand or collapse nodes.</p>
|
||||
<div style="margin:20px 0;"></div>
|
||||
<div class="easyui-panel" style="padding:5px">
|
||||
<ul class="easyui-tree">
|
||||
<li>
|
||||
<span>My Documents</span>
|
||||
<ul>
|
||||
<li data-options="state:'closed'">
|
||||
<span>Photos</span>
|
||||
<ul>
|
||||
<li>
|
||||
<span>Friend</span>
|
||||
</li>
|
||||
<li>
|
||||
<span>Wife</span>
|
||||
</li>
|
||||
<li>
|
||||
<span>Company</span>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>
|
||||
<span>Program Files</span>
|
||||
<ul>
|
||||
<li>Intel</li>
|
||||
<li>Java</li>
|
||||
<li>Microsoft Office</li>
|
||||
<li>Games</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>index.html</li>
|
||||
<li>about.html</li>
|
||||
<li>welcome.html</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
37
erp_web/js/easyui/demo/tree/checkbox.html
Normal file
37
erp_web/js/easyui/demo/tree/checkbox.html
Normal file
@@ -0,0 +1,37 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>CheckBox Tree - jQuery EasyUI Demo</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../themes/default/easyui.css">
|
||||
<link rel="stylesheet" type="text/css" href="../../themes/icon.css">
|
||||
<link rel="stylesheet" type="text/css" href="../demo.css">
|
||||
<script type="text/javascript" src="../../jquery.min.js"></script>
|
||||
<script type="text/javascript" src="../../jquery.easyui.min.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<h2>CheckBox Tree</h2>
|
||||
<p>Tree nodes with check boxes.</p>
|
||||
<div style="margin:20px 0;">
|
||||
<a href="#" class="easyui-linkbutton" onclick="getChecked()">GetChecked</a>
|
||||
</div>
|
||||
<div style="margin:10px 0">
|
||||
<input type="checkbox" checked onchange="$('#tt').tree({cascadeCheck:$(this).is(':checked')})">CascadeCheck
|
||||
<input type="checkbox" onchange="$('#tt').tree({onlyLeafCheck:$(this).is(':checked')})">OnlyLeafCheck
|
||||
</div>
|
||||
<div class="easyui-panel" style="padding:5px">
|
||||
<ul id="tt" class="easyui-tree" data-options="url:'tree_data1.json',method:'get',animate:true,checkbox:true"></ul>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
function getChecked(){
|
||||
var nodes = $('#tt').tree('getChecked');
|
||||
var s = '';
|
||||
for(var i=0; i<nodes.length; i++){
|
||||
if (s != '') s += ',';
|
||||
s += nodes[i].text;
|
||||
}
|
||||
alert(s);
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
65
erp_web/js/easyui/demo/tree/contextmenu.html
Normal file
65
erp_web/js/easyui/demo/tree/contextmenu.html
Normal file
@@ -0,0 +1,65 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Tree Context Menu - jQuery EasyUI Demo</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../themes/default/easyui.css">
|
||||
<link rel="stylesheet" type="text/css" href="../../themes/icon.css">
|
||||
<link rel="stylesheet" type="text/css" href="../demo.css">
|
||||
<script type="text/javascript" src="../../jquery.min.js"></script>
|
||||
<script type="text/javascript" src="../../jquery.easyui.min.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<h2>Tree Context Menu</h2>
|
||||
<p>Right click on a node to display context menu.</p>
|
||||
<div style="margin:20px 0;"></div>
|
||||
<div class="easyui-panel" style="padding:5px">
|
||||
<ul id="tt" class="easyui-tree" data-options="
|
||||
url: 'tree_data1.json',
|
||||
method: 'get',
|
||||
animate: true,
|
||||
onContextMenu: function(e,node){
|
||||
e.preventDefault();
|
||||
$(this).tree('select',node.target);
|
||||
$('#mm').menu('show',{
|
||||
left: e.pageX,
|
||||
top: e.pageY
|
||||
});
|
||||
}
|
||||
"></ul>
|
||||
</div>
|
||||
<div id="mm" class="easyui-menu" style="width:120px;">
|
||||
<div onclick="append()" data-options="iconCls:'icon-add'">Append</div>
|
||||
<div onclick="removeit()" data-options="iconCls:'icon-remove'">Remove</div>
|
||||
<div class="menu-sep"></div>
|
||||
<div onclick="expand()">Expand</div>
|
||||
<div onclick="collapse()">Collapse</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
function append(){
|
||||
var t = $('#tt');
|
||||
var node = t.tree('getSelected');
|
||||
t.tree('append', {
|
||||
parent: (node?node.target:null),
|
||||
data: [{
|
||||
text: 'new item1'
|
||||
},{
|
||||
text: 'new item2'
|
||||
}]
|
||||
});
|
||||
}
|
||||
function removeit(){
|
||||
var node = $('#tt').tree('getSelected');
|
||||
$('#tt').tree('remove', node.target);
|
||||
}
|
||||
function collapse(){
|
||||
var node = $('#tt').tree('getSelected');
|
||||
$('#tt').tree('collapse',node.target);
|
||||
}
|
||||
function expand(){
|
||||
var node = $('#tt').tree('getSelected');
|
||||
$('#tt').tree('expand',node.target);
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
29
erp_web/js/easyui/demo/tree/customcheckbox.html
Normal file
29
erp_web/js/easyui/demo/tree/customcheckbox.html
Normal file
@@ -0,0 +1,29 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Custom CheckBox Tree - jQuery EasyUI Demo</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../themes/default/easyui.css">
|
||||
<link rel="stylesheet" type="text/css" href="../../themes/icon.css">
|
||||
<link rel="stylesheet" type="text/css" href="../demo.css">
|
||||
<script type="text/javascript" src="../../jquery.min.js"></script>
|
||||
<script type="text/javascript" src="../../jquery.easyui.min.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<h2>Custom CheckBox Tree</h2>
|
||||
<p>Tree nodes with customized check boxes.</p>
|
||||
<div style="margin:20px 0;"></div>
|
||||
<div class="easyui-panel" style="padding:5px">
|
||||
<ul class="easyui-tree" data-options="
|
||||
url:'tree_data1.json',
|
||||
method:'get',
|
||||
animate:true,
|
||||
checkbox:function(node){
|
||||
if (node.id == 11 || node.id == 122){
|
||||
return true;
|
||||
}
|
||||
}
|
||||
"></ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
20
erp_web/js/easyui/demo/tree/dnd.html
Normal file
20
erp_web/js/easyui/demo/tree/dnd.html
Normal file
@@ -0,0 +1,20 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Drag Drop Tree Nodes - jQuery EasyUI Demo</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../themes/default/easyui.css">
|
||||
<link rel="stylesheet" type="text/css" href="../../themes/icon.css">
|
||||
<link rel="stylesheet" type="text/css" href="../demo.css">
|
||||
<script type="text/javascript" src="../../jquery.min.js"></script>
|
||||
<script type="text/javascript" src="../../jquery.easyui.min.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<h2>Drag Drop Tree Nodes</h2>
|
||||
<p>Press mouse down and drag a node to another position.</p>
|
||||
<div style="margin:20px 0;"></div>
|
||||
<div class="easyui-panel" style="padding:5px">
|
||||
<ul class="easyui-tree" data-options="url:'tree_data1.json',method:'get',animate:true,dnd:true"></ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
27
erp_web/js/easyui/demo/tree/editable.html
Normal file
27
erp_web/js/easyui/demo/tree/editable.html
Normal file
@@ -0,0 +1,27 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Editable Tree - jQuery EasyUI Demo</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../themes/default/easyui.css">
|
||||
<link rel="stylesheet" type="text/css" href="../../themes/icon.css">
|
||||
<link rel="stylesheet" type="text/css" href="../demo.css">
|
||||
<script type="text/javascript" src="../../jquery.min.js"></script>
|
||||
<script type="text/javascript" src="../../jquery.easyui.min.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<h2>Editable Tree</h2>
|
||||
<p>Click the node to begin edit, press enter key to stop edit or esc key to cancel edit.</p>
|
||||
<div style="margin:20px 0;"></div>
|
||||
<div class="easyui-panel" style="padding:5px">
|
||||
<ul id="tt" class="easyui-tree" data-options="
|
||||
url: 'tree_data1.json',
|
||||
method: 'get',
|
||||
animate: true,
|
||||
onClick: function(node){
|
||||
$(this).tree('beginEdit',node.target);
|
||||
}
|
||||
"></ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
32
erp_web/js/easyui/demo/tree/formatting.html
Normal file
32
erp_web/js/easyui/demo/tree/formatting.html
Normal file
@@ -0,0 +1,32 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Formatting Tree Nodes - jQuery EasyUI Demo</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../themes/default/easyui.css">
|
||||
<link rel="stylesheet" type="text/css" href="../../themes/icon.css">
|
||||
<link rel="stylesheet" type="text/css" href="../demo.css">
|
||||
<script type="text/javascript" src="../../jquery.min.js"></script>
|
||||
<script type="text/javascript" src="../../jquery.easyui.min.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<h2>Formatting Tree Nodes</h2>
|
||||
<p>This example shows how to display extra information on nodes.</p>
|
||||
<div style="margin:20px 0;"></div>
|
||||
<div class="easyui-panel" style="padding:5px">
|
||||
<ul class="easyui-tree" data-options="
|
||||
url:'tree_data1.json',
|
||||
method:'get',
|
||||
animate:true,
|
||||
formatter:function(node){
|
||||
var s = node.text;
|
||||
if (node.children){
|
||||
s += ' <span style=\'color:blue\'>(' + node.children.length + ')</span>';
|
||||
}
|
||||
return s;
|
||||
}
|
||||
">
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
20
erp_web/js/easyui/demo/tree/icons.html
Normal file
20
erp_web/js/easyui/demo/tree/icons.html
Normal file
@@ -0,0 +1,20 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Tree Node Icons - jQuery EasyUI Demo</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../themes/default/easyui.css">
|
||||
<link rel="stylesheet" type="text/css" href="../../themes/icon.css">
|
||||
<link rel="stylesheet" type="text/css" href="../demo.css">
|
||||
<script type="text/javascript" src="../../jquery.min.js"></script>
|
||||
<script type="text/javascript" src="../../jquery.easyui.min.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<h2>Tree Node Icons</h2>
|
||||
<p>This sample illustrates how to add icons to tree node.</p>
|
||||
<div style="margin:20px 0;"></div>
|
||||
<div class="easyui-panel" style="padding:5px">
|
||||
<ul class="easyui-tree" data-options="url:'tree_data2.json',method:'get',animate:true"></ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
82
erp_web/js/easyui/demo/tree/lazyload.html
Normal file
82
erp_web/js/easyui/demo/tree/lazyload.html
Normal file
@@ -0,0 +1,82 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Lazy Load Tree Nodes - jQuery EasyUI Demo</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../themes/default/easyui.css">
|
||||
<link rel="stylesheet" type="text/css" href="../../themes/icon.css">
|
||||
<link rel="stylesheet" type="text/css" href="../demo.css">
|
||||
<script type="text/javascript" src="../../jquery.min.js"></script>
|
||||
<script type="text/javascript" src="../../jquery.easyui.min.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<h2>Lazy Load Tree Nodes</h2>
|
||||
<p>Get full hierarchical tree data but lazy load nodes level by level.</p>
|
||||
<div style="margin:20px 0;"></div>
|
||||
<div class="easyui-panel" style="padding:5px">
|
||||
<ul class="easyui-tree" data-options="url:'tree_data1.json',method:'get',loadFilter:myLoadFilter"></ul>
|
||||
</div>
|
||||
<script>
|
||||
function myLoadFilter(data, parent){
|
||||
var state = $.data(this, 'tree');
|
||||
|
||||
function setData(){
|
||||
var serno = 1;
|
||||
var todo = [];
|
||||
for(var i=0; i<data.length; i++){
|
||||
todo.push(data[i]);
|
||||
}
|
||||
while(todo.length){
|
||||
var node = todo.shift();
|
||||
if (node.id == undefined){
|
||||
node.id = '_node_' + (serno++);
|
||||
}
|
||||
if (node.children){
|
||||
node.state = 'closed';
|
||||
node.children1 = node.children;
|
||||
node.children = undefined;
|
||||
todo = todo.concat(node.children1);
|
||||
}
|
||||
}
|
||||
state.tdata = data;
|
||||
}
|
||||
function find(id){
|
||||
var data = state.tdata;
|
||||
var cc = [data];
|
||||
while(cc.length){
|
||||
var c = cc.shift();
|
||||
for(var i=0; i<c.length; i++){
|
||||
var node = c[i];
|
||||
if (node.id == id){
|
||||
return node;
|
||||
} else if (node.children1){
|
||||
cc.push(node.children1);
|
||||
}
|
||||
}
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
setData();
|
||||
|
||||
var t = $(this);
|
||||
var opts = t.tree('options');
|
||||
opts.onBeforeExpand = function(node){
|
||||
var n = find(node.id);
|
||||
if (n.children && n.children.length){return}
|
||||
if (n.children1){
|
||||
var filter = opts.loadFilter;
|
||||
opts.loadFilter = function(data){return data;};
|
||||
t.tree('append',{
|
||||
parent:node.target,
|
||||
data:n.children1
|
||||
});
|
||||
opts.loadFilter = filter;
|
||||
n.children = n.children1;
|
||||
}
|
||||
};
|
||||
return data;
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
20
erp_web/js/easyui/demo/tree/lines.html
Normal file
20
erp_web/js/easyui/demo/tree/lines.html
Normal file
@@ -0,0 +1,20 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Tree Lines - jQuery EasyUI Demo</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../themes/default/easyui.css">
|
||||
<link rel="stylesheet" type="text/css" href="../../themes/icon.css">
|
||||
<link rel="stylesheet" type="text/css" href="../demo.css">
|
||||
<script type="text/javascript" src="../../jquery.min.js"></script>
|
||||
<script type="text/javascript" src="../../jquery.easyui.min.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<h2>Tree Lines</h2>
|
||||
<p>This sample shows how to show tree lines.</p>
|
||||
<div style="margin:10px 0;"></div>
|
||||
<div class="easyui-panel" style="padding:5px">
|
||||
<ul class="easyui-tree" data-options="url:'tree_data1.json',method:'get',animate:true,lines:true"></ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
49
erp_web/js/easyui/demo/tree/tree_data1.json
Normal file
49
erp_web/js/easyui/demo/tree/tree_data1.json
Normal file
@@ -0,0 +1,49 @@
|
||||
[{
|
||||
"id":1,
|
||||
"text":"My Documents",
|
||||
"children":[{
|
||||
"id":11,
|
||||
"text":"Photos",
|
||||
"state":"closed",
|
||||
"children":[{
|
||||
"id":111,
|
||||
"text":"Friend"
|
||||
},{
|
||||
"id":112,
|
||||
"text":"Wife"
|
||||
},{
|
||||
"id":113,
|
||||
"text":"Company"
|
||||
}]
|
||||
},{
|
||||
"id":12,
|
||||
"text":"Program Files",
|
||||
"children":[{
|
||||
"id":121,
|
||||
"text":"Intel"
|
||||
},{
|
||||
"id":122,
|
||||
"text":"Java",
|
||||
"attributes":{
|
||||
"p1":"Custom Attribute1",
|
||||
"p2":"Custom Attribute2"
|
||||
}
|
||||
},{
|
||||
"id":123,
|
||||
"text":"Microsoft Office"
|
||||
},{
|
||||
"id":124,
|
||||
"text":"Games",
|
||||
"checked":true
|
||||
}]
|
||||
},{
|
||||
"id":13,
|
||||
"text":"index.html"
|
||||
},{
|
||||
"id":14,
|
||||
"text":"about.html"
|
||||
},{
|
||||
"id":15,
|
||||
"text":"welcome.html"
|
||||
}]
|
||||
}]
|
||||
61
erp_web/js/easyui/demo/tree/tree_data2.json
Normal file
61
erp_web/js/easyui/demo/tree/tree_data2.json
Normal file
@@ -0,0 +1,61 @@
|
||||
[{
|
||||
"id":1,
|
||||
"text":"My Documents",
|
||||
"children":[{
|
||||
"id":11,
|
||||
"text":"Photos",
|
||||
"state":"closed",
|
||||
"children":[{
|
||||
"id":111,
|
||||
"text":"Friend"
|
||||
},{
|
||||
"id":112,
|
||||
"text":"Wife"
|
||||
},{
|
||||
"id":113,
|
||||
"text":"Company"
|
||||
}]
|
||||
},{
|
||||
"id":12,
|
||||
"text":"Program Files",
|
||||
"state":"closed",
|
||||
"children":[{
|
||||
"id":121,
|
||||
"text":"Intel"
|
||||
},{
|
||||
"id":122,
|
||||
"text":"Java"
|
||||
},{
|
||||
"id":123,
|
||||
"text":"Microsoft Office"
|
||||
},{
|
||||
"id":124,
|
||||
"text":"Games"
|
||||
}]
|
||||
},{
|
||||
"id":16,
|
||||
"text":"Actions",
|
||||
"children":[{
|
||||
"text":"Add",
|
||||
"iconCls":"icon-add"
|
||||
},{
|
||||
"text":"Remove",
|
||||
"iconCls":"icon-remove"
|
||||
},{
|
||||
"text":"Save",
|
||||
"iconCls":"icon-save"
|
||||
},{
|
||||
"text":"Search",
|
||||
"iconCls":"icon-search"
|
||||
}]
|
||||
},{
|
||||
"id":13,
|
||||
"text":"index.html"
|
||||
},{
|
||||
"id":14,
|
||||
"text":"about.html"
|
||||
},{
|
||||
"id":15,
|
||||
"text":"welcome.html"
|
||||
}]
|
||||
}]
|
||||
Reference in New Issue
Block a user