easyui tree动态加载

来源:互联网 发布:创业公司 程序员 编辑:程序博客网 时间:2024/05/16 14:55


 后台

 public void ProcessRequest(HttpContext context)
        {
           string sid="root";
           if (context.Request.Form["sid"]!=null)
            sid = context.Request.Form["sid"].ToString();
            context.Response.Write(dataconnection_sql.RunSqlGetJson("SELECT  t.id,t.t_text as text,t.t_value,t.t_parend,'closed' as state,t.t_attributes,t.t_typeid,t.t_order FROM  [A_type] t where t_parend=N'"+sid+"'"));
            context.Response.End();
        }


前台


<body>
 <ul id="tt"></ul> 
 <script>
     $('#tt').tree({
       url:"formenu.ashx",
         // ,lines:true  
       onBeforeLoad:function(node, param) {  
           //获取子节点  
           if (node!=null)
           param.sid = node.t_typeid;
            // alert(node.t_parend);
           },  
            onDblClick: function (node) {  
             
               // alert(node.t_parend);
               // alert(node.t_value);  
            },

//此处进行了点击优化,不用点三角附号也可以展开或叠加
            onSelect: function (node) {
                (node.state == "closed") ? $(this).tree('expand', node.target): $(this).tree('collapse', node.target);
            }


     });
 </script>

</body>

0 0
原创粉丝点击