josdejong / svelte-jsoneditor

A web-based tool to view, edit, format, repair, query, transform, and validate JSON
https://jsoneditoronline.org
Other
816 stars 108 forks source link

Edit Object as Table #382

Closed TonyValenti closed 5 months ago

TonyValenti commented 6 months ago

If you have a JSON dictionary like this:

{
    "1": {
      "0": "Hidden",
      "is_firm_specific": 0,
      "is_deletable": 0,
      "is_viewable": 0
    },
    "2": {
      "0": "Automatic",
      "is_firm_specific": 0,
      "is_deletable": 0,
      "is_viewable": 0
    },
    "3": {
      "0": "Form Created",
      "is_firm_specific": 0,
      "is_deletable": 0,
      "is_viewable": 0
    },
    "4": {
      "0": "Form Edited",
      "is_firm_specific": 0,
      "is_deletable": 0,
      "is_viewable": 0
    },
    "5": {
      "0": "Form Completed",
      "is_firm_specific": 0,
      "is_deletable": 0,
      "is_viewable": 0
    },
}

It would be really nice to be able to view it in table mode.

josdejong commented 5 months ago

I think this is not a very common case, but if there is much use for it we can consider implementing support.

What you can do right now is:

josdejong commented 5 months ago

Closing this issue now, we con reopen if there turns out to be a broad need for it.