How To: Create a Clickable List in a Subview

This article illustrates how to create a subview and transfer data from the subview to the parent form. Use subviews when you want to break up complex forms into logical sequences or provide additional information. In this demonstration, the subview pops up with a list of regions, then populates several data labels on the parent form after a region is double-clicked.

Populating data labels after double-clicking a row in a list subview
Subview Data Transfer

Try it yourself!

Scenario

You work in Sales where you maintain an online form that other sales reps use to update their contact details. The details include the sales rep's region along with the region manager and manager's email. As a convenience, you provide a subview that shows a list of regions the sales rep can select. After double-clicking a region, a rule populates the primary form with information about the region.

Steps

In this scenario, you create two SmartObjects. One stores regional data and the other stores sales rep contact details. You create a list view based on the region SmartObject and an item view based on the contact details SmartObject. The parent form contains the contact details. The subview pops up after you click a button on the form. You configure a rule that transfers regional data to the parent form after you double-click a region on the list view.

Prior to working through this how-to, you should know how to work with the category system and add elements such as SmartObjects and views. If you do not know how to build the basic application elements, see: Getting Started (with the Designer).

Setup Steps

The following steps set up the scenario from start to finish. If you want to skip the setup steps and view the topic step, go to Create and configure a subview.

  1. In the Designer, create a SmartBox SmartObject called Regions. Add the following properties: Region Name (Text), Region Manager (Text), and Region Manager Email (Text). (Optional) Create categories first to keep your work organized. Create a List View based on the Regions SmartObject called Regions List View. Include only the Region Name field. Enable list editing. Do not enable the row options. In Management, add at least three items to the Regions SmartObject. Use your own content for the names and emails. Execute the Get List method to confirm your data source entries.
    1. Launch the Designer.
      If you do not know how to access the Designer, see Accessing Sites.
    2. Create categories to keep your work organized. Right-click All Items and select New Category. Use the image below as a guide for adding and naming categories.
      Create Categories
    3. Right-click Clickable Subview and select New SmartObject.
    4. Name the SmartObject
      Regions
      and confirm the SmartBox option is selected. Click Create.
      Create SmartObject
    5. On the Regions screen, click Add.
    6. Add three properties: Region Name, Region Manager, and Region Manager Email. All properties have a text data type. Click OK to save the properties. Click Finish to save and exit the SmartObject.
      Add Properties
    7. Next, you create a list view based on the Regions SmartObject. Right-click the Regions SmartObject and select Design View.
    8. Name the view
      Regions List View
      and change the view type to List View. Locate the Data Source option and click the ellipses. Select the Regions SmartObject and click OK. Keep the option to Call this method when the form loads. Click Create.
      Call this method when the form loads. By default, the system retrieves all the items in the linked SmartObject and displays them on the view when it loads. If you uncheck this option, the system does not retrieve records when the view loads. In this case, you can create a rule to retrieve items based on a filter or event.
      Create List View
    9. Click Create Labels and Controls.
    10. On the Create Labels and Controls screen, include only the Region Name field. Enable list editing, but do not enable the row options. In a later step, you add a rule event for when a list item is double clicked. You must allow list editing or the click action will not work. Click OK. Click Finish to save and exit the list view.
      Include Fields
    11. Next, add several list items to the Regions SmartObject. This gives you content for your list view when it loads.

    12. In a new browser tab, launch Management.
    13. Expand the Categories node. Navigate to and select the Regions SmartObject. In the central pane, locate the Methods section. Select the Create method, then click Execute.
      Execute Create Method
    14. On the Execute SmartObject Method screen, enter your own content for the Region Name, Region Manager, and Region Manager Email. Do not enter a value for ID as the system adds the number when you create a list item. Click Execute to save the entry. Click Done to close the results screen.
      Enter Values
    15. Using the steps above, create at least two more list items, using your own values.
    16. To confirm your entries, select the Get List method and click Execute. Click Execute once again (you want to return all items so you do not need to apply a filter). Confirm you see all of your entries. Click Done to close the results screen.
      Execute Get List Method
  2. In the Designer, create a SmartBox SmartObject called Contact Details. Add the following properties: Name (Text) and Email (Text). Create an item view based on the Contact Details SmartObject called Contact Details View.
    1. Return to the Designer and right-click the Clickable Subview category and select New SmartObject.
    2. Name the SmartObject
      Contact Details
      and confirm the SmartBox option. Click Create.
      Create SmartBox SmartObject
    3. On the Contact Details screen, click Add.
    4. Add two properties, Name and Email. Both properties have a text data type. Click OK to save the properties. Click Finish to save and exit the SmartObject.
      Add Properties
    5. Next, you create an item view based on the Contact Details SmartObject. This view is the primary view on the form.

    6. Right-click the Contact Details SmartObject and select Design View.
    7. Name the view
      Contact Details View
      and keep the Item View type. Click Create.
      Create Item View
    8. Click Create Labels and Controls.
    9. On the Create Labels and Controls screen, include the Name and Email fields. Change the Label Position to Left and include the Colon suffix. Click OK.
      Include Fields
    10. You now have the primary view for your form. In the next step, you add labels, data labels, and a button. You click the button to launch the subview. After you select an option on the subview, a rule populates the data labels with additional content from the regions data source.

  3. Add four rows to the bottom of the layout table. Add Label controls to the third, fourth, and fifth rows, first column. Add Data Label controls to the third, fourth, and fifth rows, second column. Add a Button control to the sixth row, first column. Use the table below as a guide for setting each control's name and text values.
    ControlNameText
    LabelLabel RegionRegion Name
    Label1Label Region ManagerRegion Manager
    Label2Label Region Manager EmailRegion Manager Email
    Data LabelData Label Region

    [none]

    Data Label1

    Data Label Region Manager

    [none]

    Data Label2

    Data Label Region Manager Email

    [none]

    ButtonButton Select RegionSelect Region

    Begin by adding labels and data labels to the layout table. When you click a region on the subview, a rule action populates the data labels with regional information.

    1. Add four rows to the bottom of the layout table. Click inside the Email cell to select it. Click the Insert Row Below icon found in the menu bar four times.
      Add Rows to Layout Table
    2. From the Toolbox on the left side of your screen, drag a Label control into the third cell, first column.
      Add Label Control
    3. Add two more Label controls and three Data Label controls using the image below as a guide.
      Add Label Controls
    4. Add a Button control to the last row, first column.
      Add Button Control
    5. Next, assign names and text values to each control you added. Select the Label control. In the Properties pane on the right side of your screen, change the Name to
      Label Region
      and add a Text value of
      Region Name.
      Edit Name and Text Properties
    6. Use the table below as a guide for setting the Name and Text values for the remaining controls. Click Finish to save and exit the view.
      ControlNameText
      Label1Label Region ManagerRegion Manager
      Label2Label Region Manager EmailRegion Manager Email
      Data LabelData Label Region

      [none]

      Data Label1

      Data Label Region Manager

      [none]

      Data Label2

      Data Label Region Manager Email

      [none]

      ButtonButton Select RegionSelect Region
      Control Properties
  4. Create a form based on the Contact Details View called Contact Details Form.
    1. Next, you create a form that contains your primary view and subview. Right-click the Contact Details View and select Design Form
    2. Name the form Contact Details Form and click Create.
      Create Form
    3. You see the Contact Details View on the primary form. In the next step, you add a rule to call the subview, then transfer data from the subview SmartObject back to the primary form.
      Contact Details Form

Create and configure a subview

In this step, you add a rule that executes when you click the Select Region button. The rule launches the Regions List View as a pop-up subview. You add another rule that executes when you double-click a region name on the subview. The rule action populates the data label controls on the primary form with regional information (Region Name, Region Manager, and Region Manager Email).

  1. Add a rule to launch a subview. Use the When a control on a View raises an event rule, with the Button Select Region control. Add a Transfer data action and map the Region Name, Region Manager, and Region Manager Email SmartObject properties to their corresponding destinations. Add a final action to close the subview.
    1. The first rule you add launches the subview as a pop-up. Click the Rules tab. Click Add Rule.
      Rules consist of events, conditions, and actions. A valid rule contains at least one action.
      • Events define when the rule should run, such as when a button is clicked, or when the form loads. (Events are optional, you can define "event-less" rules that you can call from other rules.)
      • Conditions define whether the rule should run. If the criteria are true, continue the rule, and if the criteria are not met, stop the rule. For example, a condition might evaluate a form to confirm that required fields have content. (Conditions are optional - not all rules will require conditions.)
      • Actions define what the rule should do. For example, show a message, start a workflow, or enable a form field. Rules can contain multiple actions that are run in sequence or in parallel.
      Add Rule
    2. With the Events tab active, click When a control on the View raises an event to add it to the rule definition pane. (You can also use the search box to enter key words instead of scrolling through events.)
      Add Event
    3. Click the select control link and select Button Select Region. The event updates to clicked.
      Select Control
    4. Switch to the Actions tab. Click Open a subview to add it to the rule definition pane. Click select View and select Regions List View. Click OK to save and exit the rule.
      Open a Subview
    5. Notice now that there is a section of rules for the Regions List View. Expand the section. Because the view is now part of the form (as a subview) the system adds any default view rules to the form level. You edit the double click rule to add the transfer data action. (Your rule order may be different than the image.)
      Rules for Subview
    6. Select When Regions List View subview executed List item double click and click Edit Rule. This rule executes when you double click any item on the list view.
      Edit Rule
    7. With the Actions tab action, select Transfer data to add it to the rule definition pane. Click (configure).
      Transfer Data
    8. You want to populate the data label controls on the primary form with the regional information of the double clicked item. Expand the Context Browser > Regions List View > Regions (SmartObject) node. Drag the Region Name property into the Mapping Destinations > Controls > Data Label Region Name text box. Map the Region Manager and Region Manager Email properties into their corresponding mapping destinations. Click OK to save the mappings.
      Map Properties to Destinations
    9. Click Close a subview or subform to add it to the rule definition pane. (You may need to clear search words if you want to scroll through the actions or enter a new search word.)
      Close Subview
    10. Your rule should look like the image below. Click OK to save the rule. Click Finish to save and exit the form.
      Double Click Rule Actions
  2. Run the Contact Details Form in the Designer. Click the Select Region button. The subview opens. Double click any region name. The subview closes and the three regional data labels on the primary form update with the SmartObject data.
    1. You can test the form directly from the Designer. Select the Contact Details Form and click the Run icon in the central pane.
      Run the Form
    2. You see the Region, Region Manager, and Region Manager Email labels, but the corresponding data labels are empty. Click the Select Region button.
      Click Button
    3. The Regions List View subview pops up. You see a list of regions. Double click a region. The subview closes. You should now see values in the three region data labels on the primary form.
      Region Data Labels
Review

Use subviews when you want to break up complex forms into logical sections or provide additional information. You can show subviews after an event of some kind, such as clicking a button, or you can add them to a form tab. Rules allow interaction between the parent form and subview, such as transferring data from one to the other. Be aware of performance issues when using subviews that load content when the parent form loads. Depending on the volume, you may want to add rule actions that load content only when the subview opens.