Wunderbaum

UI Extension

Wunderbaum is a modern tree and treegrid control for web applications. Built with TypeScript, zero dependencies, and framework-agnostic. Successor to Fancytree.

Status
Planned
Supported Version
TBD
Licensing
Open Source
Priority
Rank #99
KEY FEATURES
Tree view
Treegrid
Drag and drop
Filtering
Sorting
Multi-selection
Keyboard navigation
Usage Example

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

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

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

// Register for events using Oorian's event model
component.registerForEvent(this, WunderbaumEvent.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.