惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

D
Docker
阮一峰的网络日志
阮一峰的网络日志
T
Tailwind CSS Blog
博客园 - 【当耐特】
量子位
博客园 - 叶小钗
有赞技术团队
有赞技术团队
Jina AI
Jina AI
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - Franky
博客园 - 司徒正美
爱范儿
爱范儿
美团技术团队
小众软件
小众软件
酷 壳 – CoolShell
酷 壳 – CoolShell
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
V
V2EX
罗磊的独立博客
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Last Week in AI
Last Week in AI
Hugging Face - Blog
Hugging Face - Blog
I
InfoQ
D
DataBreaches.Net
宝玉的分享
宝玉的分享

博客园 - Andy

Delphi Access violations 问题的解决 Coolite Destop 动态生成菜单 - Andy ext js window的 AnimateTarget属性 - Andy ext 从头开始 extjs 控件 触发事件 的几种方式 ext js gridpanel绑定到动态生成的store - Andy coolite的一点东西 - Andy - 博客园 Coolite 换肤 Coolite 中 遍历formlayout中的anchors中的anchor 并找到其中的TextField coolite SqlDataSource - Andy - 博客园 coolite 更新 删除 修改 - Andy Coolite toolkit 数据传递 ExtStore Coolite服务端方法调用与Web.Config配置 - Andy - 博客园 Coolite 交流(转)含简单配置说明 Coolite 开发心得 coolite 分页(含Bug修复方法) coolite 为你要删除的记录增加删除验证 - Andy - 博客园 Coolite AjaxMethod - Andy - 博客园 Coolite.Ext.Web命名空间 Coolite ComboBox绑定方式
Coolite TreePanel的数据绑定操作
Andy · 2009-11-01 · via 博客园 - Andy

 protected void Page_Load(object sender, EventArgs e)
        {
            if (!Ext.IsAjaxRequest)
            {
                BindTree(TreePanel1.Root, 0);
            }
        }

        private void BindTree(Coolite.Ext.Web.TreeNodeCollection nodes, int p)
        {
            DataTable dt = GetByPid(p);

            foreach (DataRow r in dt.Rows)
            {
                Coolite.Ext.Web.TreeNode node = new Coolite.Ext.Web.TreeNode(r["id"].ToString(), r["name"].ToString(), Icon.Add);
                node.Qtip = r["kind"].ToString();
                nodes.Add(node);
                switch (int.Parse(node.Qtip))
                {
                    case 1:
                        if (null !=node.ParentNode)
                        {
                            node.ParentNode.Icon = Icon.Folder;
                        }                       
                        break;
                    case 2:
                        node.Icon = Icon.Accept;
                        break;
                    case 3:                       
                    case 4:
                        node.Icon = Icon.Bell;
                        break;
                    default:
                        break;
                }               

                BindTree(node.Nodes, int.Parse(r["id"].ToString()));
            }
        }

private DataTable GetByPid(int pid)
        {
            DataTable dt = new DataTable("T");

            OracleConnection cnn = new OracleConnection(System.Configuration.ConfigurationManager.ConnectionStrings["default"].ConnectionString);
            try
            {
                cnn.Open();

                System.Text.StringBuilder sb = new System.Text.StringBuilder();
                sb.Append("select * from ( ");
                sb.Append("select a.organization_id as id, a.parent_id as pid, a.organization_name as name, 1 as kind from organization a ");
                sb.Append("union all ");
                sb.Append("select b.dynamotor_id+10000 as id, b.organization_id as pid, b.dynamotor_name as name, 2 as kind from DYNAMOTOR b ");
                sb.Append("union all ");
                sb.Append("select c.turbine_id+20000 as id, c.dynamotor_id +10000 as pid, c.turbine_short_name as name, 3 as kind from TURBINE_INFO c ");
                sb.Append("union all ");
                sb.Append("select d.boiler_id+30000 as id, d.dynamotor_id+10000 as pid, d.boiler_short_name as name, 4 as kind from BOILER_INFO d ");
                sb.Append(") ");
                sb.Append("where pid=" + pid.ToString());
                sb.Append(" order by id");

                OracleDataAdapter da = new OracleDataAdapter(sb.ToString(), cnn);

                da.Fill(dt);

            }
            finally
            {
                cnn.Close();
            }

            return dt;
        }

原文:http://hi.baidu.com/38608338/blog/item/918aa01abfe12ff3ae513303.html