Skip to main content
Version: 8.1

Using the Template Canvas

Inductive University

Template Canvas

Watch the video

The Template Canvas component works much like the Template Repeater in that it can easily create multiple copies of a master template. What makes the Template Canvas unique is that it can display instances of multiple master templates, and set their layout in any way you want. The Template Canvas has a customizer that can help put the templates together within it, but the customizer is just driven by a Templates dataset property on the Template Canvas. The Template Canvas can be made dynamic by setting up a binding on the Templates property, such as a query that pulls in an entirely new dataset of information, or even a cell update binding, which updates individual cells of the dataset. With that, you can load new templates into the canvas at runtime, or even move the templates around.

The Template Canvas has two layout systems:

  • Absolute Positioning, where each template instance has an absolute position within the Template Canvas

  • Layout Positioning, which uses the MiG Layout system to place the instances within a grid like system.

Creating a Template​

Before we get started with the Template Canvas, we first need to have a template. Here we are going to make a simple Form Input template, that consists of a Label and a Text Field. The template will need two parameters. A Label_Text parameter which is what will get displayed in the label, and a TextField_Text which we can use to pass user input outside of the template by making it bidirectional. This template is a great way of quickly making user input forms, by using a template for each piece of info that needs to be collected. The steps for making the template are listed below, or you can skip ahead to using the Template Repeater in the next section.

Making the Template​

  1. In the Templates section of our Project Browser, create a new template called Form Input. We are going to want to pass in values to and from the template, so we need to create Template Parameters.

  2. Right-click in the Form Template workspace, and select Customizers > Custom Properties. Add a Template Parameter called Label_Text, and make it a String type.

  3. Add a second Template Parameter called TextField_Text, and make it a String type, and click OK to save your template parameters.

  4. Next, drag a Text Field component and a Label component onto the Template.

  5. On the Label component, set the Horizontal Alignment property to Trailing.

    " "

  6. Finally, we want to set up some bindings on our Template.

    1. Using a property binding, bind the Text property of the Label component to the Label_Text Template Parameter.

    2. Using a property binding, bind the Text property of the Text Field component to the TextField_Text Template Parameter, and make it Bidirectional.

      " "

  7. Set the Size and Position for the components by right-clicking on each component. Set the Label component to Position: (68, 1) and Size: [32x20]. Set the Text Field component to Position: (104, 2) and Size: [130x20]. Next, set the Form Input template to Size: [237, 24].

    " "

  8. Once you have the properties added and components bound, type a value into each Template Parameter to confirm the bindings are working.

    1. Label_Text: Label
    2. TextField_Text: Text
      " "

Absolute Positioning​

First, we can set up our Template Canvas using Absolute Positioning, which is a little simpler to understand as each template has a width and height as well as an x and y position.

  1. Drag a Template Canvas component to a window and open the Template Canvas Customizer. The customizer provides an easy interface to setting up our templates.

    " "

  2. Enter in the following values for the first instance:

    1. Name: First Name
    2. Template: Form Input
    3. Absolute Positioning: 0, 0, 200, 20
    4. Parameters: Label_Text = First Name (leave TextField_Text blank)
  3. Click the Add button to add the instance. The instance will then be visible in the preview section of the window. Values for the components are still using the default values for the Label_Text and TextField_Text. This is intentional. The new values will appear once you hit OK and close the canvas customizer.

    note

    Labels have Absolute Positioning properties: X, Y, width, and height labels. A Z-index field indicates where a given template instance should appear in the z-order within the template canvas (top or bottom).

:::note
Take notice of of the yellow outline around the instance and how First Name is highlighted at the top of the customizer. This means that the instance is selected, and the customizer is in edit mode. This allows you to make changes to the selected instance. To exit edit mode and add a new instance, click on the **Cancel** button in the lower **left** of the window. Clicking on the **Cancel** button in the lower **right** will cancel out of the customizer.
:::
  1. Let's add another instance. Click on the Add " " icon in the Instance area to clear the Add/Edit Instance fields from the prior entry, and enter the following:

    1. Name: Last Name
    2. Template: Form Input
    3. Absolute Positioning: 0, 20, 200, 20
    4. Parameters: Label_Text = Last Name (leave TextField_Text blank)
  2. Once entered, click the Add " " icon again. You'll see that you have two instances visible in the preview section of the window. Once both instances are configured, click the OK button.

    " "

  3. Now, both instances appear in the Template Canvas.

    " "

  1. If a new instance needs to be added, it can be added through the Template Canvas Customizer. However, the Template Canvas also has a 'Templates' property. This property stores all of the data that was entered into the customizer into a dataset, so new instances can be configured directly on the Templates property. View the dataset by clicking the Dataset Viewer button next to the Templates property. Furthermore, template instance configurations could be stored in a database table, and the Template Canvas could fetch the data with a SQL Query binding on the Templates property.

    " "

Layout Positioning (MiG Layout)​

Instead of having to manually enter a size and position for each instance, we can make use of Layout Positioning to have the Template Canvas determine the best position for each instance, while also making suggestions as to where each instance is placed in relation to another. The layout positioning uses a grid-methodology to instance placement. Each instance, unless otherwise specified, is considered a single "cell" in the grid.

caution

Don't Mix Absolute and Layout Positioning
We do not recommend using both Absolute and Layout Positioning for instances on the same Template Canvas. Select either Absolute or Layout Positioning for your instances. Layout Positioning will determine the best position for each instance in your canvas, where Absolute Positioning allows you to manually specify the width, height, x and y positions for each instance.

Continuing from the example above, the First Name and Last Name instances are using Absolute Positioning. Let's tell the First Name instance to use Layout Positioning and enter the 'wrap' parameter. This means the next cell in the grid should be placed on the next row.

  1. With the Template Canvas component selected, open the the Template Canvas Customizer again, and make the following modification to the First Name instance.

    1. Click the radio button for the Layout Positioning property and enter 'wrap' the field.
  2. Click Apply, and the First Name instance will appear to overlap with the Last Name instance. This is because the grid only accounts for instances using the Layout Positioning.

    " "

  3. Next, we can configure the Last Name with Layout Positioning as well. Make the following changes to the Last Name.

    1. Click Layout Positioning radio button and enter 'wrap' in the field below.
  4. Once the changes have been applied, click OK. You'll notice in the preview section of the window that both instances are now in line.

    " "

  5. Open the Templates property by checking the Dataset View button. Notice that the x, y, width, and height columns are no longer used, but the layout columns for First Name and Last Name now have a value of 'wrap'.

    " "

  6. Like the previous example, new rows can be added directly to this dataset. Furthermore, the 'wrap' value means the next template instance will begin on a new line. Add three new instances for Street Address, City and Account Name. Use either the Template Canvas Customizer or simply add new rows in the dataset viewer with the values:

nametemplateparametersxylayoutz
Street AddressForm Input{"Label_Text":"Street Address","TextField_Text":""}00wrap0
CityForm Input{"Label_Text":"City","TextField_Text":""}00wrap0
Account NameForm Input{"Label_Text":"Account Name","TextField_Text":""}00wrap0

" "

Read User Input​

The last step is to read the user input. Put the Designer into Preview Mode and add some values for each text field component. Once finished, switch the Designer back to Design Mode, and add a Button component to the window (not the template canvas)

Add a script to the Button component using the Code Snippet below - Read User Input Example. Place the code on the actionPerformed event of your component by double clicking on the Button component and opening the Script Editor tab.

# Reference the template canvas component, and call the getAllTemplates() method.
# This will return a list of every instance in the canvas
templateList = event.source.parent.getComponent('Template Canvas').getAllTemplates()

# Initialize a list. User input from each text field will be stored in this variable
userInput = []

# Iterate through each template instance inside the canvas
for template in templateList:

# add the user inputted value to the userInput list. The values are originally returned in Unicode.
# the Python str() function is casting the Unicode values as string values.
userInput.append(str(template.TextField_Text))

# Show the values in a messageBox. This could be replaced with an INSERT query, or some other action.
# str() is used again to case the list as a string. This only required to work with the messageBox function
# since the function requires a string argument be passed in
system.gui.messageBox(str(userInput))

When running the script, each value should appear in the message box. If you're not getting a value in the message box, make sure the Text Field property is bound to the TextField_Text template parameter as mentioned in the Creating a Template section, Step 6b.

This example can easily be expanded to do something more meaningful with the input, like store to a database table.

" "