Example and reference
Latest version | Documentation |
---|---|
2 | TODO: put link to demo deployment |
...
The widget library only contains a loader that will automatically load the widget definition when needed. You have to include the following script inclusion to get the
...
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
<script type="text/javascript" src="https://s3.eu-central-1.amazonaws.com/pub.tnwi.int1-s3.secutix.com/stx-widgets/Widgets.js" |
...
></script |
...
This Widget file generate the STX global object that contains the widget library. The library contains only the library loading system. The needed script will be loaded automatically following the widgets declaration, taking only the needed widgets.
...
Anywhere in the website, you can include a HTML tag with an id that will be pass later to the widget definition
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
< ... the rest of the |
...
website> <div id="product_1"> </div> |
...
<div id="product_2"> </div> |
...
</ ... the rest of the website> |
Get information
The information needed to display a widget are of two kinds : global and local.
...