C#easyui combotree 设置节点折叠
生活随笔
收集整理的這篇文章主要介紹了
C#easyui combotree 设置节点折叠
小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
樹實(shí)體
?public class Combotree
? ? {
? ? ? ? public string id { get; set; }
? ? ? ? public string text { get; set; }
? ? ? ? public string state { get; set; }
? ? ? ? public List<Combotree> children { get; set; }
? ? }
只需要在初始化數(shù)據(jù)的時(shí)候給 state 設(shè)置為 closed
注意:不要在最后一級節(jié)點(diǎn)設(shè)置該字段為 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; }
? ? }
只需要在初始化數(shù)據(jù)的時(shí)候給 state 設(shè)置為 closed
注意:不要在最后一級節(jié)點(diǎn)設(shè)置該字段為 closed
總結(jié)
以上是生活随笔為你收集整理的C#easyui combotree 设置节点折叠的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 图解动软代码生成器使用(C#快捷生成代码
- 下一篇: Vue基础之事件处理器