您好,登录后才能下订单哦!
追求效率,直接进入主题吧…..
效果:
前台代码
<linkhref="../../_frontend/3rd/miniui/miniui.css"rel="stylesheet" />
<scriptsrc="../../_frontend/3rd/miniui/miniui.js"></script>
<input class="mini-treeselect" id="ipAJLY"runat="server" url="Data/AjaxService.ashx?method=GetEventSource&userid="textfield="" valuefield="" parentfield=""expand />
简析:
Textfield:显示文本值
valuefield:id
parentfield:父类编码
expand 默认全部展开
后台代码
需要添加Newtonsoft.Json.dll引用
添加一般处理程序 AjaxService.ashx
public voidProce***equest(HttpContext context)
{
context.Response.ContentType ="text/plain";
string method =context.Request.GetRequestValueByParam("method");
if (method.ToLower() == "GetEventSource".ToLower())
{
GetEventSource(context);
}
}
public voidGetEventSource(HttpContext context)
{
DataTable dt = new DataTable();//获取你需要绑定的数据
context.Response.Write(Newtonsoft.Json.JsonConvert.SerializeObject(dt));//序列化
}
mini-treeselect具体属性方法说明:
参考网址:http://www.miniui.com/docs/api/index.html#ui=treeselect
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。