C#easyui combotree 设置节点折叠
树实体
public class Combotree
{
public string id { get; set; }
public string text { get; set; }
public string state { get; set; }
public List<Combotree> children { get; set; }
}
只需要在初始化数据的时候给 state 设置为 closed
注意:不要在最后一级节点设置该字段为 closed
public class Combotree
{
public string id { get; set; }
public string text { get; set; }
public string state { get; set; }
public List<Combotree> children { get; set; }
}
只需要在初始化数据的时候给 state 设置为 closed
注意:不要在最后一级节点设置该字段为 closed
作者:天使不哭
微信号:hgmyzhl
微信公众号:小明互联网技术分享社区
CSDN:IT技术分享社区
知乎:IT技术分享社区
出处:小明互联网技术分享社区
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利.