TUI Calendar

UI Extension

TUI Calendar is a full-featured calendar component with month, week, and day views, drag-and-drop events, and custom templates.

Status
Planned
Supported Version
TBD
Licensing
Open Source
Priority
Rank #137
KEY FEATURES
Month/Week/Day views
Drag and drop
Custom templates
Recurring events
Milestone events
Task schedules
Popup detail
Usage Example

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

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

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

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