码迷,mamicode.com
首页 > 其他好文 > 详细

easyui树形结构选择

时间:2015-02-13 13:06:39      阅读:107      评论:0      收藏:0      [点我收藏+]

标签:

技术分享

如上图所示,要有如些效果

前台HTML代码

<select id="ShareTo" name="ShareTo" class="easyui-combotree"    data-options="url:‘/BlueVacation/Controller/ScheduleHandler.ashx?op=tree‘"   multiple ></select>

后台C#的代码
string GetDepaOfUsersTree()
        {
            string json = null;
            if (HttpContext.Current.Cache["userTree"] != null)
            {
                json = HttpContext.Current.Cache["userTree"].ToString();
            }
            else
            {
                var list = DepartmentBll.Instance.GetDepaOfUsersTree();
               json = JsonConvert.SerializeObject(list);
               HttpContext.Current.Cache["userTree"] = json;
            }
         
           
           return json;
        }

 

easyui树形结构选择

标签:

原文地址:http://www.cnblogs.com/bolanbujing/p/4290052.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!