素材巴巴 > 程序开发 >

用html树形下拉框,树形下拉框实现 mini-treeselect

程序开发 2023-09-15 23:30:45

追求效率,直接进入主题吧…..

效果:

fa5091cbf42a4ddb4131bd06b586719f.png

前台代码

简析:

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


标签:

素材巴巴 Copyright © 2013-2021 http://www.sucaibaba.com/. Some Rights Reserved. 备案号:备案中。