Claus Pedersen
Member³
I have the following json in large data editor:
I can collapse the two employee nodes, bot not the main 'employees' node.
If I have the corresponding XML code, I can collapse the two 'employee' nodes, but also the 'employees' node:
Also the following code containing arrays can not be collapsed at all:
I can not get the right-click options e.g. Collapse and Collapse all to work, they are always disabled.
Could these issues be fixed?
Code:
{
"employees": [
{
"name": "Bob",
"email": "bob32@gmail.com"
},
{
"name": "Jai",
"email": "jai87@gmail.com"
}
]
}
I can collapse the two employee nodes, bot not the main 'employees' node.
If I have the corresponding XML code, I can collapse the two 'employee' nodes, but also the 'employees' node:
Code:
<employees>
<employee>
<name>Bob</name>
<email>bob32@gmail.com</email>
</employee>
<employee>
<name>Jai</name>
<email>jai87@gmail.com</email>
</employee>
</employees>
Also the following code containing arrays can not be collapsed at all:
Code:
{
"name": "blogger",
"users": [
[
"admins",
"1",
"2",
"3"
],
[
"editors",
"4",
"5",
"6"
]
]
}
I can not get the right-click options e.g. Collapse and Collapse all to work, they are always disabled.
Could these issues be fixed?