SortableJS

UI Extension

SortableJS is the most popular standalone drag-and-drop library for reorderable lists. Supports nested lists, multiple linked lists, and smooth animations with no dependencies.

Status
In Development
Supported Version
TBD
Licensing
Open Source
Priority
Rank #21
KEY FEATURES
Drag and drop
Sortable lists
Nested lists
Multi-list transfer
Animation
Touch support
No dependencies
Usage Example

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

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

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

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