QrcodeJs
UI Extension
qrcode.js is a JavaScript library for generating QR codes on the client side. Supports canvas and SVG rendering, configurable size, colors, and error correction levels.
Status
Planned
Supported Version
TBD
Licensing
Open Source
Priority
Rank #88
KEY FEATURES
QR code generation
Canvas rendering
SVG rendering
Custom colors
Error correction
Configurable size
No dependencies
Usage Example
Here's how you'll use QrcodeJs with Oorian once the extension is available:
Java
// Create and configure QrcodeJs component
QrcodeJs component = new QrcodeJs();
component.setWidth("100%");
component.setHeight("400px");
// Configure component options
component.setEnabled(true);
// Register for events using Oorian's event model
component.registerForEvent(this, QrcodeJsEvent.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.