Bootstrap
UI Extension
Bootstrap is the world's most popular CSS framework for building responsive, mobile-first sites with a comprehensive grid system and pre-built components.
Status
Available
Version
v1.0.2
Supported Version
5.3
Released
2026-03-17
Licensing
Open Source
KEY FEATURES
Responsive grid system
Pre-built components
Utility classes
JavaScript plugins
Sass variables
Customizable themes
Extensive documentation
Usage Example
Demos
Oorian's Bootstrap extension provides ready-to-use components styled with Bootstrap CSS. Here's a simple dismissible success alert:
Your changes have been saved successfully!
This is an informational message.
Please review before continuing.
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);