cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - New to the community? Learn how to post a question and get help from PTC and industry experts! X

Exploring Dynamic Grids and Trees Part 1

No ratings

 

Discover how ThingWorx advance tree grids and grids can be implemented in a compelling Mashup design.

 

Guide Concept

 

This project will introduce how to create complex user interfaces that are built by using Mashup grids and JavaScript services.

 

Following the steps in this guide, you will build a web application with advanced data displays.

We will teach you how to create a professional user interface that effectively conveys information to users.

 

You'll learn how to

 

  • Create dynamic tree grids to display hierarchy.
  • Create dynamic grids to display growing data number of data points.

 

NOTE: This guide's content aligns with ThingWorx 9.3. The estimated time to complete this guide is 30 minutes

 

 

 

Step 1: What Are Dynamic Grids

 

In the Mashup Builder, we utilize Functions to create added capabilities in our Mashups. Whether we are navigating to another Mashup or triggering events based on some action. Functions are your best friends when creating more advanced Mashups.

 

Function Description 
 Auto Refresh Refreshes data automatically for widgets in a mashup.
 Confirmation Displays a confirmation dialog box.
 Events Router Routes multiple input sources to one output of the same type.
 Expression Evaluates JavaScript expressions.
 Logout Ends the current user session and redirects to a mashup or a Web page.
 Navigation Navigates from one mashup to another.
 Status Message Displays information, error, or warning messages in a mashup.
 Validator Validates data from input parameters by using JavaScript expressions.

 

In the next sections, we will cover some of these Functions and showcase how to add them to your Mashups.

 

 

Step 2: Create A Dynamic Grid

 

Let's start things off by creating a simple Expression Function. This Expression will show or hide a label based on whether a checkbox is checked or not. This simple expression can be expanded to your use case.

 

It is VERY important to note that in an Expression Function (and also found in Services and Validation Functions) the output of the Function will be the result variable. Let's create our Mashup, then go over what is involved in an Expression.

 

  1. In the ThingWorx Composer, click the + New at the top of the screen.

    select_new.png

     

  2. Select Mashup in the dropdown.

    create_new_mashup.png

     

  3. Select the Responsive layout then hit OK.

    select_responsive_mashup.png

     

  4. Set the Name to  MyFunctionsMashup.
  5. For the Project, click the + button and select PTCDefaultProject.

    create_initial_mashup.png

     

  6.  Under Project, click the blue Set as project context option. This will stop us from having to set the Project on every Thing we create. It should now match the following.

    set_project_settings.png

     

  7.  Click Save.
  8. Click on the Design tab at the top.

This Mashup will be where we create the Majority of our Functions and capabilities. Let's start adding to our Mashup.

 

  1. Click the Layout tab.
  2. Scroll down and set the Orientation to Horizontal.

    set_initial_layout.png

     

  3. Click on the Widgets tab.
  4. Type in the Filter text box for Checkbox.

    click_widgets_checkbox.png

     

  5. Drag and drop a Checkbox Widget to the Mashup Canvas. This Checkbox will dictate whether what we show for the coming Labels and Textbox.
  6. Type in the Filter text box for Button. This Button will dictate the event that triggers our Functions.
  7. Drag and drop a Button Widget to the Mashup Canvas.

    click_widgets_button.png

     

  8. Type in the Filter text box for Label.
  9. Drag and drop TWO (2) Label Widgets to the Mashup Canvas. We will only show one Label at a time and I'll show you how.

    click_widgets_label.png

     

  10. Type in the Filter text box for Text Field.
  11. Drag and drop a Text Field Widget to the Mashup Canvas.  

    click_widgets_text_field.png

     

 

We have the Widgets we need to show our Expression example. Let's start with connecting the Widgets to Functions.

 

  1. Click the + button in the Functions section in the bottom right.

    click_add_first_function.png

     

  2.  In the New Function popup, select Expression.
  3. Set the Name of the new Expression to isCheckboxChecked.

    add_expression_name.png

     

  4. Click Next.
  5. In the new screen, click Add Parameter.
  6. Set the Name to this new parameter as checked.
  7. Set the Base Type as BOOLEAN.

    add_expression_parameter.png

     

  8. Switch the Data Change Type to ALWAYS.
  9. Switch Output Base Type to BOOLEAN.

    add_expression_setting.png

     

  10. Add the following code to the Expression area. 
if(checked) {
    result = true;
} else {
    result = false;
}
add_expression_code.png

 

11. Click Done.

 

You've now created your first expression. This expression is an example of how easy it can be done. Let's add three three additional Expressions to have some fun.

 

  1. Repeat steps 1-11 in the last section for TWO (2) new Expressions. Name these Expressions setFirstLabelVisbility and setSecondLabelVisbility. You should now have three total.
  2. Repeat steps 1-8 in the last section for ONE (1) new Expression. Name this Expression setTextFieldText.
  3. We should have a Parameter called checked. Click Add Parameter again to add a Parameter named input. This fourth Expression should match the following thus far: 

    add_third_expression_setting.png

     

  4.  Switch Output Base Type to STRING.
  5. Add the following code to the Expression area: 

if(checked) {
    if(input && input.indexOf("YES") >= 0) {
    result = input + ", YES";
    } else {
        result = "YES";
    }
} else {
    result = "NO";    
}

6. Click Done.

add_fourth_expression_code.png

 

This expression will see whether or not the Checkbox is checked, then output a string of YES or a simple NO. Let's setup our connections between Widgets and Expressions.

 

  1. Ensure Expressions are visible and match the following.

    confirm_expressions_visibilt.png

     

  2. Click on the Checkbox in the Mashup Canvas.
  3. Click the dropdown that appears.

    select_state_property.png

     

  4. Drag and drop the State Property to the checked Parameter of all FOUR (4) of the Expressions.

    set_checked_parameter.png

     

  5. Your bindings should match the following after you're done with setting all four.

    initial_checkbox_bindings.png

     

  6. Expand the setFirstLabelVisibility Expression (if not already expanded).

    set_first_visibility.png

     

  7. Drag the Output to the first Label and select Visible.

    set_first_visibility_set.png

     

  8. Expand the setSecondLabelVisibility Expression (if not already expanded).

    set_second_visibility.png

     

  9. Drag the Output to the second Label and select Visible.

 

Our labels are configured. Now let's setup our Text Field Widget. 

 

  1. Expand the setTextFieldText Expression (if not already expanded).
  2. Drag the Output to the Text Field and select Text.

    set_box_text_set.png

     

  3. Select the Button Widget in the Mashup Canvas. 
  4. Click the dropdown for the Button Widget.
  5. Drag and drop the Clicked Event to all FOUR (4) of the Expressions.

    connect_button_clicked_expression.png

     

  6. Your Button Widget should look like the following:

    disactive_button_clicked_expression.png

     

  7. Select the Text Field Widget in the Mashup Canvas
  8. Click the dropdown for the Text Field Widget.
  9. Drag and drop the Text Property to the input Parameter of the setTextFieldText Expression.
  10. Click Save.
  11. Click View Mashup. Play around and see all the work you've done.

 

You maybe notice that both Label Widgets show or hide at the same time. To split when they will show or hide, update the code for one of the Label visibility Expressions to the following: 

 

if(checked) {
    result = false;
} else {
    result = true;    
}

 

view_initial_mashup_post.png

Click here to view Part 2 of this guide.

 
Version history
Last update:
‎Mar 07, 2023 02:32 PM
Updated by:
Contributors