Record List

To create a record list, drag the record list from sidebar and drop to the screen

To make record list is editable/removable, under Configuration tab on right side, check Editable?

Create a edit form for record list

  1. Click + button

  2. Enter the form name, then click Save

  3. An empty page will be displayed, in this page, i will add some input fields

    1. Item

      1. Type: Line Input

      2. Variable Name: item

      3. Label: Item

    2. Unit

      1. Type: Line Input

      2. Variable Name: unit

      3. Label: Unit

    3. Price

      1. Type: Line Input

      2. Variable Name: price

      3. Label: Price

      4. Data Type: Currency

    4. Quantity

      1. Type: Line Input

      2. Variable Name: quantity

      3. Label: Quantity

      4. Data Type: Integer

  4. Go back to previous page, to switch back to previous page, select the page name in the select box

  5. In the Record Form field, select the page we have created in step 3

  6. Under Columns tab, click + to add some columns to be displayed in the record list Column Header is the column label Value is Variable Name of the input in step 3

  7. Switch to Preview mode, in Data Input field, enter the sample data form_record_list_1 Variable Name of record list item, unit, price, quantity are the Variable Name of inputs in step 3 { "form_record_list_1": [ { "item": "iPhone 12", "unit": "pc", "price": 1000, "quantity": 1 }, { "item": "iPad", "unit": "pc", "price": 850, "quantity": 2 } ] }

  8. Or you can use Add button, then add some testing data

Last updated