DayPilot

UI Extension

DayPilot is a scheduling and calendar component with event calendar, scheduler, Gantt chart, and kanban board views.

Status
Planned
Supported Version
TBD
Licensing
Free / Commercial
Priority
Rank #136
KEY FEATURES
Event calendar
Scheduler
Gantt chart
Kanban board
Resource scheduling
Drag and drop
Time range selection
Usage Example

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

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

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

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