ListJs

UI Extension

List.js adds search, sort, and filter functionality to existing HTML lists and tables with a simple API.

Status
Planned
Supported Version
TBD
Licensing
Open Source
Priority
Rank #97
KEY FEATURES
Search
Sort
Filter
Fuzzy search
Pagination
Existing HTML
Templates
Usage Example

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

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

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

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