Skip to main content
Version: v11.6.0

Create Prefab using Third Party UI Widgets


In this section, you will learn how to use third-party UI widgets in Studio. We do this with the help of Prefabs. We will use the example of integrating Lightbox image viewer in our application. It involves two steps – creating prefab and using the same.

Pre-Requisites

Creating Prefab

  1. Click on Create from the Prefab tab of the [Project Dashboard](http://[supsystic-show-popup id=102])
  2. Enter a name and description for the Prefab
  3. Import the resources needed
  4. Create folder lightbox with three sub-folders css, js and images
  5. Upload the following files to their respective folders - lightbox.min.js, lightbox.min.css and four images. You will find these files in the respective folders from the extracted folder lighbox2-master/dist folder.
  6. From Project Configurations, choose Config Prefab under Settings:
    • Resources - delete the Main.css from Styles and add the following:
      • Styles: include the css file imported in the above step
      • Scripts: include the js file imported in the above step
    • Properties: any properties you want to expose to the user of this prefab. Here we have set two properties pic and title, both being in-bound.
NameDisplay NameData TypeDefault ValueBinding TypeWidget Type
picPicturestringhttp://lokeshdhakar.com/projects/ lightbox2/images/image-1.jpgin-boundtext
titleTitlestringImagein-boundtext

  1. You can set the group and icon to be associated with the Prefab from the Packaging section. This will be displayed in the Widget toolbox of the apps after Publishing the Prefab (next section).

  1. Next we need to design the Prefab UI.

    • Drag and drop an Anchor widget onto the canvas.
    • Set Caption property to blank and bind the Prefab Properties defined in the previous step as follows:
      • Hint to the Prefab Property title,

      • Hyperlink to the Prefab Property pic and

      • Icon Url to the Prefab Property pic. Set Icon Width and Height to 100

  2. As per Lightbox requirement, in the Markup add attribute data-lightbox _to the _anchor widget tag as shown below.

note

Be aware that the names might change as per your app specifics.

<wm-prefab-container name="page1">  
<a href="{{pic}}" data-lightbox="image-1" data-title="{{title}}"></a>
<wm-anchor data-lightbox="image-1" margin="unset 0.5em" name="anchor1" caption="" hint="bind:title" hyperlink="bind:pic" iconurl="bind:pic" iconwidth="100" iconheight="100"></wm-anchor>
</wm-prefab-container>
  1. You can test the Prefab using the Preview option from the Main Menu, this will take the values provided in the Default Values section of Properties. You can change the In-bound property and see the change.

Using Prefab

We will use the Prefab to display the image in an app.

  1. Save and Publish the Prefab.
  2. You can set the version for the Prefab and Publish it. Know more about publishing Prefabs from here.
  3. Once approved, the Prefab will be available for use across the Projects. An entry will appear in the Artefacts list from the Developer Utilities on the Project Workspace. The Prefab needs to be imported before it can be used from the Widget Toolbox.
  4. Open/Create a project to see the usage of the above Prefab. Import the Prefanb from Artifacts listing dialog. Drag and drop the Imageviewer onto the canvas.
  5. Set the Title and Picture property. Here we are binding the Picture property to an image resource already imported into the app.

  1. Run the project, the image will be displayed.
  2. Hover the mouse over the image and see the name displayed in the hint field.
  3. Click on one image to set Lightbox in motion, the image is displayed in the center of the page.

See Also

Prefab to compare two strings
Prefab Using D3 & NVD3 Charts
Prefab Using D3 Library (DataMaps)
Prefab Using JQuery Plugin - showcases using Events and Methods