You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -224,12 +224,12 @@ In the action's JSON definition, within the `columns` array, set the `header` pr
224
224
225
225
1. On the designer toolbar, select **Code view**.
226
226
227
-
1. In the code editor, in the action's `columns` array, add the empty `header` property and this `value` expression for each column of values that you want from the array:
227
+
1. In the code editor, in the action's `columns` array, add the empty `header` property and this `value` expression for each column of array values that you want:
228
228
229
229
```json
230
230
{
231
231
"header": "",
232
-
"value": "@item()?['<property-name>']"
232
+
"value": "@item()?['<array-property-name>']"
233
233
}
234
234
```
235
235
@@ -352,7 +352,7 @@ In the action, keep the **Header** column empty. On each row in the **Value** co
352
352
353
353
1. In the expression editor, enter this expression that specifies the array property value that you want, and select **OK**.
354
354
355
-
`item()?['<property-name>']`
355
+
`item()?['<array-property-name>']`
356
356
357
357
For example:
358
358
@@ -361,28 +361,28 @@ In the action, keep the **Header** column empty. On each row in the **Value** co
361
361
362
362

363
363
364
-
1. Repeat the previous steps for each property that you want. When you're done, your action looks like this example:
364
+
1. Repeat the previous steps for each array property that you want. When you're done, your action looks like this example:
1. To resolve expressions into more descriptive versions, switch to code view and back to designer view, and then reopen the collapsed action:
369
369
370
370
The **Create HTML table** action now appears like this example:
371
371
372
-

372
+

373
373
374
374
#### Work in code view
375
375
376
376
In the action's JSON definition, within the `columns` array, set the `header` property to an empty string. For each `value` property, dereference each array property that you want.
377
377
378
378
1. On the designer toolbar, select **Code view**.
379
379
380
-
1. In the code editor, in the action's `columns` array, add the empty `header` property and this `value` expression for each column of values that you want from the array:
380
+
1. In the code editor, in the action's `columns` array, add the empty `header` property and this `value` expression for each column of array values that you want:
0 commit comments