Hello together,
i already loved Fancytree.
Though I would like to be able to use an arbitrary Array property representing the parent-child relationship instead of the fixed "children" property. This would avoid to go through the datastructure returned by a service.
It would be even better to consider a configurable list of properties beeing considered as children here ["sons","daughters"].
regards
Thomas
{
type:"Male",
name:"Thomas",
sons:[
{
type:"Man",
name:"John"
}
],
daughters:[
{
type:"Woman",
name:"Mary"
},
{
type:"Woman",
name:"Daisy"
}
]
}
Hello together,
i already loved Fancytree.
Though I would like to be able to use an arbitrary Array property representing the parent-child relationship instead of the fixed "children" property. This would avoid to go through the datastructure returned by a service.
It would be even better to consider a configurable list of properties beeing considered as children here ["sons","daughters"].
regards
Thomas