Skip to content

Commit c03071a

Browse files
committed
Merge branch 'main' into phecke-entity-refresh
2 parents 09770ae + 95dad47 commit c03071a

File tree

241 files changed

+12768
-20512
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

241 files changed

+12768
-20512
lines changed

.openpublishing.redirection.json

Lines changed: 7799 additions & 7534 deletions
Large diffs are not rendered by default.

powerapps-docs/cards/controls/button-set.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,6 @@ A container for a set of button elements.
3030

3131
**[Height](control-reference.md#h)** – Specifies the height of the control.
3232

33-
**[Repeat for every](control-reference.md#r)** – The source of data that is used to show multiple instances of this control. Learn how to use [repeat for every](repeat-for-every.md).
33+
**[Repeat for every](control-reference.md#r)** – The source of data that is used to show multiple instances of this control. Learn how to use [repeat for every](control-reference.md#r).
3434

3535
**[Show when](control-reference.md#s)** – Conditional layout expression.

powerapps-docs/cards/controls/button.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@ Learn more about [how to use the button control](../make-a-card/ui-elements/use-
4242

4343
**[Associated inputs](control-reference.md#a)** - Controls which inputs are associated with the action.
4444

45-
**[Repeat for every](control-reference.md#r)** - The source of data that is used to show multiple instances of this control. Learn how to use [repeat for every](repeat-for-every.md).
45+
**[Repeat for every](control-reference.md#r)** - The source of data that is used to show multiple instances of this control. Learn how to use [repeat for every](control-reference.md#r).
46+
47+
4648

4749
**[Show when](control-reference.md#s)** - Conditional layout expression.

powerapps-docs/cards/controls/check-box.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@ A checkbox that lets users choose between two options by selecting or clearing.
4242

4343
**[Required Field](control-reference.md#r)** – Whether or not this input is required.
4444

45-
**[Repeat for every](control-reference.md#r)** – The source of data that is used to show multiple instances of this control. Learn how to use [repeat for every](repeat-for-every.md).
45+
**[Repeat for every](control-reference.md#r)** – The source of data that is used to show multiple instances of this control. Learn how to use [repeat for every](control-reference.md#r).
46+
47+
4648

4749
**[Show when](control-reference.md#s)** – Conditional layout expression.

powerapps-docs/cards/controls/column-set.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@ A collection of columns, each column is a container. These columns allow control
3838

3939
**[Height](control-reference.md#h)** – Specifies the height of the control.
4040

41-
**[Repeat for every](control-reference.md#r)** – The source of data that is used to show multiple instances of this control. Learn how to use [repeat for every](repeat-for-every.md).
41+
**[Repeat for every](control-reference.md#r)** – The source of data that is used to show multiple instances of this control. Learn how to use [repeat for every](control-reference.md#r).
42+
43+
4244

4345
**[Show when](control-reference.md#s)** – Conditional layout expression.

powerapps-docs/cards/controls/column.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@ Add to a column set to create dividers on the page. Empty columns aren't visible
4242

4343
**[Bleed](control-reference.md#b)** – Determines whether the control should bleed through its parent's padding.
4444

45-
**[Repeat for every](control-reference.md#r)** – The source of data that is used to show multiple instances of this control. Learn how to use [repeat for every](repeat-for-every.md).
45+
**[Repeat for every](control-reference.md#r)** – The source of data that is used to show multiple instances of this control. Learn how to use [repeat for every](control-reference.md#r).
46+
47+
4648

4749
**[Show when](control-reference.md#s)** – Conditional layout expression.

powerapps-docs/cards/controls/container.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,8 @@ A container takes on the properties of the first control placed inside it. Only
4444

4545
**[Background image](control-reference.md#b)** – Specifies a background image. Acceptable formats are PNG, JPEG, and GIF.
4646

47-
**[Repeat for every](control-reference.md#r)** – The source of data that is used to show multiple instances of this control. Learn how to use [repeat for every](repeat-for-every.md).
47+
**[Repeat for every](control-reference.md#r)** – The source of data that is used to show multiple instances of this control. Learn how to use [repeat for every](control-reference.md#r).
48+
49+
4850

4951
**[Show when](control-reference.md#s)** – Conditional layout expression.

powerapps-docs/cards/controls/control-reference.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,16 @@ Configure the appearance and behavior of a control by setting one of its propert
144144

145145
**Regex** – Regular expression indicating the required format of this text input.
146146

147-
**Repeat for every** – The source of data that is used to show multiple instances of this control. Learn how to use [repeat for every](repeat-for-every.md).
147+
**Repeat for every** – Repeat for every is used to display a control multiple times based on a data source. The repeat for every property is set to a collection or data source, then the relevant property can use `ThisItem` to reference specific items within the collection or data source.
148+
149+
Using the Dataverse Accounts table and a text label's **Repeat for every** property, a maker can create a card that displays the account name of every account within the Accounts table.
150+
151+
1. Add the Accounts table using the [Dataverse connection](../make-a-card/connectors/connector-intro.md).
152+
1. Add a text label control.
153+
1. Set the text label **Repeat for every** property to `Accounts`.
154+
1. Set the text label **Text** property to `ThisItem.'Account Name'`.
155+
1. Play the card, which will show a list of text labels the length of the Accounts table, each one displaying an account name.
156+
148157

149158
**Required field** – Whether or not this input is required.
150159

powerapps-docs/cards/controls/date-picker.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,8 @@ Allows the user to enter a date in mm/dd/yyyy format or select a date on the cal
4444

4545
**[Required field](control-reference.md#r)** – Whether or not this input is required.
4646

47-
**[Repeat for every](control-reference.md#r)** – The source of data that is used to show multiple instances of this control. Learn how to use [repeat for every](repeat-for-every.md).
47+
**[Repeat for every](control-reference.md#r)** – The source of data that is used to show multiple instances of this control. Learn how to use [repeat for every](control-reference.md#r).
48+
49+
4850

4951
**[Show when](control-reference.md#s)** – Conditional layout expression.

powerapps-docs/cards/controls/drop-down.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,8 @@ A menu that lets users choose one item from an expandable list of items. The def
4646

4747
**[Required field](control-reference.md#r)** – Whether or not this input is required.
4848

49-
**[Repeat for every](control-reference.md#r)** – The source of data that is used to show multiple instances of this control. Learn how to use [repeat for every](repeat-for-every.md).
49+
**[Repeat for every](control-reference.md#r)** – The source of data that is used to show multiple instances of this control. Learn how to use [repeat for every](control-reference.md#r).
50+
51+
5052

5153
**[Show when](control-reference.md#s)** – Conditional layout expression.

0 commit comments

Comments
 (0)