Json data can not be correctly collapsed in large data editor

Claus Pedersen

Member³
This is a repost from the beta 15 forum.

I have the following json in large data editor:

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 json 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?
 
Back
Top