Home / Extensions & Add-Ons / Bootstrap UI Extension
CSS Frameworks & Component Libraries

Bootstrap UI Extension

CSS Framework

Bootstrap is the world's most popular CSS framework for building responsive, mobile-first sites with a comprehensive grid system and pre-built components.

Oorian Extension

Status
Staged for Release

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

Priority
Rank #2

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

Supported Version
5.3

The version of Bootstrap UI Extension that this extension supports.

Licensing
Open Source (MIT)

The licensing model for Bootstrap UI Extension. Check their official website for full license details.

Integration
Full API Access

Oorian extensions expose the complete Bootstrap UI Extension API through type-safe Java methods.

Key Features

Responsive grid system
Pre-built components
Utility classes
JavaScript plugins
Sass variables
Customizable themes
Extensive documentation

Usage Example

See how to use Bootstrap UI Extension with Oorian in pure Java.

Oorian's Bootstrap extension provides ready-to-use components styled with Bootstrap CSS. Here's a simple dismissible success alert:

Java Code
Java
// Create a dismissible success alert with BsAlert
BsAlert alert = new BsAlert("Your changes have been saved successfully!")
    .setVariant(Variant.SUCCESS)
    .setDismissible(true);
container.addElement(alert);

// Create alerts with different variants
BsAlert info = new BsAlert("This is an informational message.")
    .setVariant(Variant.INFO);
container.addElement(info);

BsAlert warning = new BsAlert("Please review before continuing.")
    .setVariant(Variant.WARNING);
container.addElement(warning);
Result

Ready to Use Bootstrap UI Extension?

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