博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Extjs4.x treepanel,treegrid 节点选择,选中某个节点
阅读量:6750 次
发布时间:2019-06-25

本文共 692 字,大约阅读时间需要 2 分钟。

//官方推荐this.getModuleGrid().getRootNode().cascadeBy(function () {            this.set("checked", false);            if (ids.indexOf(this.data["Id"].toString()) > -1) {                this.set("checked", true);            }        });//通过Children方式GetChilds: function (idArray, node) {        ts = this;        childnodes = node.childNodes;        Ext.each(childnodes, function () {            var nd = this;            idArray.push(nd.getId());            if (nd.hasChildNodes()) {                ts.GetChilds(idArray, nd);            }        });    }//根据ID获取Nodevar node=treepanel.getNodeById(node_id);    // treepanel.expandPath(node.getPath())    treepanel.getSelectionModel().select(node)

 

转载地址:http://tfvho.baihongyu.com/

你可能感兴趣的文章
cookie注入&中转注入笔记
查看>>
生产环境linux服务器系统安全配置
查看>>
我的友情链接
查看>>
MySql中 delimiter 详解
查看>>
浏览器history操作实现一些功能
查看>>
你那么喜欢看”干货“,是因为你根本不想下功夫。
查看>>
20172303 2017-2018-2 《程序设计与数据结构》结对编程项目-四则运算 第二周
查看>>
LCM性质 + 组合数 - HDU 5407 CRB and Candies
查看>>
python测试一
查看>>
比map更强大的multimap
查看>>
repo sync下载脚本
查看>>
spfa(前向星)
查看>>
第一个js程序
查看>>
命令纠正工具 thefuck 的简单使用
查看>>
SQL Server附加数据库出现错误5123的正确解决方法
查看>>
插入图片、背景图片
查看>>
c++官方文档-class
查看>>
腾讯2017暑期实习编程题2
查看>>
Android定位&地图&导航——基于百度地图,实现自定义图标绘制并点击时弹出泡泡...
查看>>
FPGA管脚约束
查看>>