Create a customer list with data

In this section, you learn how to create a jig.list type that uses the dynamic data provider to return and display a list of records. You specify the fields that must be returned in the list jig and add an onPress list action that opens a jig used to view the selected list item record.

Steps

Create a list jig

  1. Open the Hello-Jigx solution in Jigx Builder in VS Code, right-click on the jigs node in Explorer, and select New file.

  2. Name the file list-customer. The file opens and shows the Jigx's auto-complete popup listing the five types of jigs you can select. Click on List to open the skeleton YAML created by the Jigx Builder.

  3. Give the jig a title called List customers and provide a description like List my customers.

  4. Change the icon to icon: list.This icon displays on the widget on the Home Hub.

  5. Delete the header and onfocus nodes.

Add the data source to return data in the list

  1. Under the datasource node specific the data provider where the customer records are stored. The name of the table that the information is being returned from. All Jigx Dynamic Data-based tables are saved in the "default" database. Use a SQLite query to specify the fields to be returned in the list, in this case, we want the customer's first and last name as well as their email address. You can add your own datasource entries or use the code example below.

YAML
datasources:
  customerList:
    type: datasource.sqlite
    options:
      provider: DATA_PROVIDER_DYNAMIC
      entities:
        - entity: default/customers
      query: SELECT id, '$.firstName', '$.lastName', '$.email' FROM [default/customers]

Add controls and actions to the list item

  1. All list output controls are placed on the list-item component. Use the swipeable: action to configure a left or right swipe and the method to call. For example, in this step, we use a left swipe to delete the customer using the delete method. You can add your own controls or use the code example below.

2. Configure the action to take you back to the list once the list-item has been deleted, by using the code below.

Add a navigation action

  1. Add a navigation action that is performed when a single item is clicked in the list, and referenced by using the custId parameter. In this step clicking on a customer in the list opens the view-customer jig to view the customer's details. Use the onPress action with an action.go-to type and the linkTo option as shown below.

2. Your list-customer.jigx file should resemble the code below.

Last updated

Was this helpful?