We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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.
Can anyone help me with this?
The text was updated successfully, but these errors were encountered:
The library has some limitations, so everything looks as expected. If rootId is 1519 or 1520 then it related to #24
rootId
Sorry, something went wrong.
No branches or pull requests
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.
Can anyone help me with this?
The text was updated successfully, but these errors were encountered: