
ExtJS
文章平均质量分 72
HingKwan
厦门,Java开发
展开
-
ExtJS 2使用经验(树、表格树、RadioGroup)
1、 更改ExtJs2树的JSON数据格式 在ExtJs2中,要求的JSON格式为: [ {text:'01',children:[ {text:'01-01',leaf:true}, {text:'01-02',children:[ {text:'01-02-01',leaf:true}, {text:'01-02-02',leaf:true} ]},原创 2013-07-04 20:01:52 · 2103 阅读 · 0 评论 -
ExtJS2.2树的级联选择
在做项目的时候要用到树的级联选择,在我的影响中貌似ExtJs 2.2没有自带的级联选择。然后就有了下面的代码: tree.on('checkchange',function(node,checked){ selParent(node,checked); selChild(node,checked); },tree); //这个方法是选择父节点,自动选中所有的子节点 function selP原创 2013-08-24 20:51:23 · 1351 阅读 · 0 评论