JsonEditor

UI Extension

JSONEditor is a web-based tool to view, edit, format, and validate JSON. Supports tree, code, and text editing modes.

Status
Planned
Supported Version
TBD
Licensing
Open Source
Priority
Rank #108
KEY FEATURES
Tree view mode
Code mode
Text mode
JSON validation
Search
Color highlighting
Schema validation
Usage Example

Here's how you'll use JsonEditor with Oorian once the extension is available:

Java
// Create and configure JsonEditor component
JsonEditor component = new JsonEditor();
component.setWidth("100%");
component.setHeight("400px");

// Configure component options
component.setEnabled(true);

// Register for events using Oorian's event model
component.registerForEvent(this, JsonEditorEvent.class);

// Add to your page
container.addElement(component);

Note: This is a preview of the expected API. The actual implementation may vary slightly when released.