用html树形下拉框,树形下拉框实现 mini-treeselect
程序开发
2023-09-15 23:30:45
追求效率,直接进入主题吧…..
效果:
前台代码
简析:
Textfield:显示文本值
valuefield:id
parentfield:父类编码
expand默认全部展开
后台代码
需要添加Newtonsoft.Json.dll引用
添加一般处理程序AjaxService.ashx
public voidProcessRequest(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
原文:http://4539040.blog.51cto.com/4529040/1671981
标签:
上一篇:
程序员必看的各种优秀资料、神器及框架整理(上)
下一篇:
相关文章
-
无相关信息