Extjs4 Treegrid 使用心得分享(经验篇)


Posted in Javascript onJuly 01, 2013

最近调试EXTJS 4的treegrid实例,看了很多水友的文章,以及官方的demo, 没一个可靠的,全都无法显示出来。像对于我们习惯用C++的coder来说,EXTJS简直就是一群无政府土匪来维护的,官网上连个搜索框都没有,找资料基本靠遍历,还是人工的。

使用treegrid,需要在调用页面的head中加载以下几个文件:

<link rel="stylesheet" type="text/css" href="css/ext-all.css"> 
<script type="text/javascript" src="ext-all.js"></script> 
<script type="text/javascript" src="treegrid.js"></script>

然后在页面的body中写上一个div
 <div id="tree-example"></div>

以上官方就这么写的,BUT,蛋疼的是,JS里没有改,不改就没法运行成功。把treegrid.js中的renderto,改成我们的div的ID就行了。

记得把json数据文件和css文件等拷贝到调用目录下。
完成的treegrid.js代码为:

/* 
This file is part of Ext JS 4 
Copyright (c) 2011 Sencha Inc 
Contact: http://www.sencha.com/contact 
GNU General Public License Usage 
This file may be used under the terms of the GNU General Public License version 3.0 as published by the Free Software Foundation and appearing in the file LICENSE included in the packaging of this file. Please review the following information to ensure the GNU General Public License version 3.0 requirements will be met: http://www.gnu.org/copyleft/gpl.html. 
If you are unsure which license is appropriate for your use, please contact the sales department at http://www.sencha.com/contact. 
*/ 
Ext.require([ 
'Ext.data.*', 
'Ext.grid.*', 
'Ext.tree.*' 
]); 
Ext.onReady(function() { 
//we want to setup a model and store instead of using dataUrl 
Ext.define('Task', { 
extend: 'Ext.data.Model', 
fields: [ 
{name: 'task', type: 'string'}, 
{name: 'user', type: 'string'}, 
{name: 'duration', type: 'string'} 
] 
}); 
var store = Ext.create('Ext.data.TreeStore', { 
model: 'Task', 
proxy: { 
type: 'ajax', 
//the store will get the content from the .json file 
url: 'treegrid.json' 
}, 
folderSort: true 
}); 
//Ext.ux.tree.TreeGrid is no longer a Ux. You can simply use a tree.TreePanel 
var tree = Ext.create('Ext.tree.Panel', { 
title: 'Core Team Projects', 
width: 500, 
height: 300, 
renderTo: 'tree-example',//2B的官方和SV党们,这里竟然是getbody,bo你妹啊。 
collapsible: true, 
useArrows: true, 
rootVisible: false, 
store: store, 
multiSelect: true, 
singleExpand: true, 
//the 'columns' property is now 'headers' 
columns: [{ 
xtype: 'treecolumn', //this is so we know which column will show the tree 
text: 'Task', 
flex: 2, 
sortable: true, 
dataIndex: 'task' 
},{ 
//we must use the templateheader component so we can use a custom tpl 
xtype: 'templatecolumn', 
text: 'Duration', 
flex: 1, 
sortable: true, 
dataIndex: 'duration', 
align: 'center', 
//add in the custom tpl for the rows 
tpl: Ext.create('Ext.XTemplate', '{duration:this.formatHours}', { 
formatHours: function(v) { 
if (v < 1) { 
return Math.round(v * 60) + ' mins'; 
} else if (Math.floor(v) !== v) { 
var min = v - Math.floor(v); 
return Math.floor(v) + 'h ' + Math.round(min * 60) + 'm'; 
} else { 
return v + ' hour' + (v === 1 ? '' : 's'); 
} 
} 
}) 
},{ 
text: 'Assigned To', 
flex: 1, 
dataIndex: 'user', 
sortable: true 
}] 
}); 
});
Javascript 相关文章推荐
javascript 异步页面查询实现代码(asp.net)
May 26 Javascript
图片onload事件触发问题解决方法
Jul 31 Javascript
深入分析jsonp协议原理
Sep 26 Javascript
深入剖析javascript中的exec与match方法
May 18 Javascript
vue2实现数据请求显示loading图
Nov 28 Javascript
webpack实用小功能介绍
Jan 02 Javascript
详解如何实现一个简单的 vuex
Feb 10 Javascript
Vue 实现树形视图数据功能
May 07 Javascript
JS实现图片旋转动画效果封装与使用示例
Jul 09 Javascript
Vue循环组件加validate多表单验证的实例
Sep 18 Javascript
JavaScript鼠标拖拽事件详解
Apr 03 Javascript
vue + node如何通过一个Txt文件批量生成MP3并压缩成Zip
Jun 02 Javascript
原生javascript兼容性测试实例
Jul 01 #Javascript
面向对象继承实例(a如何继承b问题)(自写)
Jul 01 #Javascript
批量实现面向对象的实例代码
Jul 01 #Javascript
js原生appendChild的bug解决心得分享
Jul 01 #Javascript
Jquery时间验证和转换工具小例子
Jul 01 #Javascript
JS 两日期相减,获得天数的小例子(兼容IE,FF)
Jul 01 #Javascript
js函数排序的实例代码
Jul 01 #Javascript
You might like
swfupload 多文件上传实现代码
2008/08/27 PHP
php命令行(cli)模式下报require 加载路径错误的解决方法
2015/11/23 PHP
php+redis实现消息队列功能示例
2019/09/19 PHP
Extjs学习笔记之一 初识Extjs之MessageBox
2010/01/07 Javascript
jQuery1.6 类型判断实现代码
2011/09/01 Javascript
javascript中的startWith和endWith的几种实现方法
2013/05/07 Javascript
JS操作iframe里的dom(实例讲解)
2014/01/29 Javascript
JQuery中使用on方法绑定hover事件实例
2014/12/09 Javascript
浅谈javascript原型链与继承
2015/07/13 Javascript
js+css绘制颜色动态变化的圈中圈效果
2016/01/27 Javascript
JavaScript实现点击按钮字体放大、缩小
2016/02/29 Javascript
深入理解Javascript中的自执行匿名函数
2016/06/03 Javascript
Angularjs2不同组件间的通信实例代码
2017/05/06 Javascript
Vue关于数据绑定出错解决办法
2017/05/15 Javascript
Vue-Router进阶之滚动行为详解
2017/09/13 Javascript
JavaScript使用类似break机制中断forEach循环的方法
2018/11/13 Javascript
在 Vue.js中优雅地使用全局事件的方法
2019/02/01 Javascript
微信小程序开发之获取用户手机号码(php接口解密)
2020/05/17 Javascript
Python使用docx模块实现刷题功能代码
2020/02/13 Python
详解Python设计模式之策略模式
2020/06/15 Python
利用Python实现学生信息管理系统的完整实例
2020/12/30 Python
CSS3盒子模型详解
2013/04/24 HTML / CSS
HTML5 Canvas draw方法制作动画效果示例
2013/07/11 HTML / CSS
html5实现输入框fixed定位在屏幕最底部兼容性
2020/07/03 HTML / CSS
英国豪华文具和皮具配件经典老品牌:Smythson(斯迈森)
2018/04/19 全球购物
九州传奇上机题
2014/07/10 面试题
医学专业毕业生个人求职信
2013/12/25 职场文书
英语自我评价范文
2014/01/24 职场文书
《美丽的田园》教学反思
2014/03/01 职场文书
企业文明单位申报材料
2014/05/16 职场文书
幼儿园中班区域活动总结
2014/07/09 职场文书
踏青活动策划方案
2014/08/19 职场文书
酒店辞职书怎么写
2015/02/26 职场文书
2016年青少年禁毒宣传教育活动总结(学校)
2016/04/05 职场文书
【HBU】数据库第四周 单表查询
2021/04/05 SQL Server
你真的了解PHP中的引用符号(&)吗
2021/05/12 PHP