SlickGrid

UI Extension

SlickGrid is a JavaScript grid/spreadsheet component focused on extreme performance for large datasets with virtual rendering.

Status
Planned
Supported Version
TBD
Licensing
Open Source
Priority
Rank #162
KEY FEATURES
Virtual rendering
Large datasets
Column reordering
Grouping
Header menu
Cell editors
Async loading
Usage Example

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

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

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

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