jKanban
UI Extension
jKanban is a pure JavaScript plugin for creating Kanban boards with drag-and-drop card management.
Status
Planned
Supported Version
TBD
Licensing
Open Source
Priority
Rank #115
KEY FEATURES
Kanban boards
Drag and drop
Custom buttons
Board scrolling
Card events
Board events
No dependencies
Usage Example
Here's how you'll use jKanban with Oorian once the extension is available:
Java
// Create and configure jKanban component
jKanban component = new jKanban();
component.setWidth("100%");
component.setHeight("400px");
// Configure component options
component.setEnabled(true);
// Register for events using Oorian's event model
component.registerForEvent(this, jKanbanEvent.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.