A Seaside component for Pharo wrapping Bootstrap Table
# BootstrapTable-Pharo
A [Seaside](https://github.com/seasidest/seaside) component for [Pharo](https://pharo.org/) wrapping [Bootstrap Table](https://bootstrap-table.com/).
## Getting Started
* Install [Pharo](https://pharo.org/) (currently tested with Pharo 13)
## Installation
* Evaluate:
```smalltalk
Metacello new
repository: 'github://rko281/BootstrapTable-Pharo:main';
baseline: 'BootstrapTable';
load: 'default'
```
* All required packages and prerequisites (including [Seaside](https://github.com/seasidest/seaside) and [Seaside-Bootstrap5](https://github.com/astares/Seaside-Bootstrap5)) will be downloaded and installed.
## Run
Start the web server for [Seaside](http://www.seaside.st) - for instance with Zinc evaluate
```Smalltalk
ZnZincServerAdaptor startOn: 8080.
WebBrowser openOn: 'http://localhost:8080/bootstrap-table/'
```
## Examples
The examples browser demonstrates most of the wrapped behavior including a simple example application:

Browse `SBSBootstrapTableExample` and its subclasses for more information.