-
Notifications
You must be signed in to change notification settings - Fork 27
Description
Hi,
I have an problem to show child node on tree.
Here is my Json:
[
{
"id": 1316,
"Name": "Harish Kumar1",
"Sex": "Male",
"children": [],
"parents": [
{
"id": 1517,
"type": "blood"
},
{
"id": 1518,
"type": "blood"
}
],
"siblings": [],
"spouses": []
},
{
"id": 1517,
"Name": "Father",
"Sex": "Male",
"children": [
{
"id": 1316,
"type": "blood"
}
],
"parents": [
{
"id": 1519,
"type": "blood"
},
{
"id": 1520,
"type": "blood"
}
],
"siblings": [],
"spouses": [
{
"id": 1518,
"type": "married"
}
]
},
{
"id": 1518,
"Name": "Mother",
"Sex": "Female",
"children": [
{
"id": 1316,
"type": "blood"
}
],
"parents": [],
"siblings": [],
"spouses": [
{
"id": 1517,
"type": "married"
}
]
},
{
"id": 1519,
"Name": "GF",
"Sex": "Male",
"children": [
{
"id": 1517,
"type": "blood"
},
{
"id": 1522,
"type": "blood"
}
],
"parents": [],
"siblings": [],
"spouses": [
{
"id": 1520,
"type": "blood"
}
]
},
{
"id": 1520,
"Name": "GM",
"Sex": "Female",
"children": [
{
"id": 1517,
"type": "blood"
}
],
"parents": [],
"siblings": [],
"spouses": [
{
"id": 1519,
"type": "married"
}
]
},
{
"id": 1522,
"Name": "Uncle",
"children": [],
"parents": [
{
"id": 1519,
"type": "blood"
}
],
"siblings": [],
"spouses": []
}
]
Node with name Uncle is not showing on tree under node GF.