Home / Extensions / Syncfusion
Full UI Platforms

Syncfusion

Commercial UI Suite

Syncfusion Essential JS 2 offers 70+ high-performance JavaScript UI components for enterprise applications including Grids, Charts, Diagrams, and PDF viewers.

Oorian Extension

Extension Status
Coming Soon

The Oorian extension for Syncfusion is under development and will be available with the framework release.

Priority
Rank #23

Implementation priority based on popularity, API complexity, and user demand.

Supported Version
27.1

The version of Syncfusion that this extension supports.

Licensing
Commercial (free Community License for companies under $1M revenue)

The licensing model for Syncfusion. Check their official website for full license details.

Integration
Full API Access

Oorian extensions expose the complete Syncfusion API through type-safe Java methods.

Key Features

70+ UI components
Data Grid with Excel export
Rich text editor
Diagram component
PDF viewer
Pivot tables
Dashboard layouts

Usage Example

See how to use Syncfusion with Oorian in pure Java.

Oorian's Syncfusion extension provides access to 70+ enterprise-grade UI components. Here's a quick example showing how easy it is to create a data-driven form:

Java Code
java
// Text input with floating label
SfTextBox textBox = new SfTextBox("Employee Name");
textBox.setFloatLabelType(FloatLabelType.AUTO);

// Dropdown with items
SfDropDownList dropdown = new SfDropDownList("Department");
dropdown.setFloatLabelType(FloatLabelType.AUTO);
dropdown.addItem("Engineering");
dropdown.addItem("Marketing");

// Date picker with current date
SfDatePicker datePicker = new SfDatePicker("Start Date");
datePicker.setFloatLabelType(FloatLabelType.AUTO);
datePicker.setValue(new Date());

// Numeric input with currency format
SfNumericTextBox numericBox = new SfNumericTextBox();
numericBox.setPlaceholder("Salary");
numericBox.setFormat("C0");

// Primary button with icon
SfButton saveBtn = new SfButton("Save");
saveBtn.setIsPrimary(true);
saveBtn.setIconCss("e-icons e-save");
Result

Ready to Use Syncfusion?

Oorian makes it easy to integrate Syncfusion into your Java web applications with type-safe extensions and real-time updates.