Bootstrap
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
The Oorian extension for Bootstrap is under development and will be available with the framework release.
Implementation priority based on popularity, API complexity, and user demand.
The version of Bootstrap that this extension supports.
The licensing model for Bootstrap. Check their official website for full license details.
Oorian extensions expose the complete Bootstrap API through type-safe Java methods.
Key Features
Usage Example
See how to use Bootstrap 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
// 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
Interactive Demo
Explore Bootstrap capabilities with these interactive examples.
Explore the full range of Bootstrap components available through the Oorian extension:
Buttons
Cards
Badges & Progress
Default Progress: 25%
Success Progress with Label: 50%
Striped Progress: 75%
Animated Striped Progress: 90%
Ready to Use Bootstrap?
Oorian makes it easy to integrate Bootstrap into your Java web applications with type-safe extensions and real-time updates.