FuseJs

UI Extension

Fuse.js is a lightweight, zero-dependency fuzzy-search library with support for weighted searching and extended search operators.

Status
Planned
Supported Version
TBD
Licensing
Open Source
Priority
Rank #92
KEY FEATURES
Fuzzy search
Weighted search
Extended operators
Zero dependencies
Configurable
Async search
Scoring
Usage Example

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

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

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

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