Skip to content

Commit 323052e

Browse files
authored
Live publish
2 parents cf5e69c + 50126e8 commit 323052e

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

powerapps-docs/maker/canvas-apps/embed-apps-dev.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,11 @@ If you have an app you want to embed, the first step is to set parameters for th
3434
```
3535
https://apps.powerapps.com/play/[AppID]?source=iframe
3636
```
37+
For GCC users
38+
39+
```
40+
https://apps.gov.powerapps.us/play[AppID]?source=iframe
41+
```
3742

3843
> [!IMPORTANT]
3944
> As of August 2019, the URI format has changed from https://web.powerapps.com/webplayer to https://apps.powerapps.com/play. Please update any embedded iframes to use the new URI format. References to the previous format will be redirected to the new URI to ensure compatibility.

powerapps-docs/maker/canvas-apps/functions/function-form.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,19 @@ search.audienceType:
1414
search.app:
1515
- PowerApps
1616
---
17+
1718
# EditForm, NewForm, SubmitForm, ResetForm, and ViewForm functions in Power Apps
19+
1820
View, edit, or create an item, save the contents, and reset the controls in an **[Edit form](../controls/control-form-detail.md)** control.
1921

2022
## Overview
23+
2124
These functions change the state of the **Edit form** control. The form control can be in one of these modes:
2225

2326
| Mode | Description |
2427
| --- | --- |
2528
| **FormMode.Edit** |The form is populated with an existing record and the user can modify the values of the fields. Once complete, the user can save the changes to the record. |
26-
| **FormMode.New** |The form is populates with default values and the user can modify the values of the fields. Once complete, the user can add the record to the data source. |
29+
| **FormMode.New** |The form is populated with default values and the user can modify the values of the fields. Once complete, the user can add the record to the data source. |
2730
| **FormMode.View** |The form is populated with an existing record but the user cannot modify the values of the fields. |
2831

2932
## Description
@@ -56,7 +59,7 @@ The **ResetForm** function resets the contents of a form to their initial values
5659
The **ViewForm** function changes the Form control's mode to **FormMode.View**. In this mode, the contents of the Form control's **[Item](../controls/control-form-detail.md)** property are used to populate the form. The **SubmitForm** and **ResetForm** functions have no effect when in this mode.
5760

5861
### DisplayMode Property
59-
The current mode can be read through the **Mode** property. The mode also determines the value of the **DisplayMode** property which can be used by data cards and controls within the form control. Often, the data card's **DisplayMode** property will be set to **Parent.DisplayMode** (referencing the form) as will the control's **DisplayMode** property (referencing the data card):
62+
The current mode can be read through the **Mode** property. The mode also determines the value of the **DisplayMode** property, which can be used by data cards and controls within the form control. Often, the data card's **DisplayMode** property will be set to **Parent.DisplayMode** (referencing the form) as will the control's **DisplayMode** property (referencing the data card):
6063

6164
| Mode | DisplayMode | Description |
6265
| --- | --- | --- |

0 commit comments

Comments
 (0)