MiniSearch
UI Extension
MiniSearch is a tiny but powerful in-memory full-text search engine for JavaScript with fuzzy matching and auto-suggestions.
Status
Planned
Supported Version
TBD
Licensing
Open Source
Priority
Rank #95
KEY FEATURES
Full-text search
Fuzzy matching
Auto-suggestions
Prefix search
Boosting
Filtering
Small footprint
Usage Example
Here's how you'll use MiniSearch with Oorian once the extension is available:
Java
// Create and configure MiniSearch component
MiniSearch component = new MiniSearch();
component.setWidth("100%");
component.setHeight("400px");
// Configure component options
component.setEnabled(true);
// Register for events using Oorian's event model
component.registerForEvent(this, MiniSearchEvent.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.