Skip to content

Commit 62213dc

Browse files
authored
Live publish
2 parents 9eb7687 + 3ee9b24 commit 62213dc

File tree

4 files changed

+21
-8
lines changed

4 files changed

+21
-8
lines changed

powerapps-docs/maker/model-driven-apps/app-designer-overview.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: "Overview of the model-driven app designer | MicrosoftDocs"
33
description: Learn about the app designer for model-driven apps.
44
ms.custom: ""
5-
ms.date: 04/30/2021
5+
ms.date: 06/17/2021
66
ms.service: powerapps
77
ms.suite: ""
88
ms.tgt_pltfrm: ""
@@ -45,7 +45,7 @@ The app designer interface has the following areas:
4545
3. Panes - The left navigation pane consists of the following areas:
4646

4747
- **Pages**. Displays the components for you app. From the page area you can choose the forms, views, and dashboards you want to add or remove for each table.
48-
- **Navigation**. Displays a site map view of your app that is formed using areas, groups, and subareas. Add or remove groups and subareas to structure your app's navigation.
48+
- **Navigation**. Displays a site map view of your app that is formed using areas, groups, and subareas. Add or remove groups and subareas to structure your app's navigation. Within the navigation area, you can hide or show the **Home**, **Recent**, and **Pinned** buttons. You can also allow groups to be collapsible within the site map.
4949
- **Data**. Provides a view of all available data that’s currently included in your app or is available to add from your Dataverse environment.
5050

5151
4. Property pane – Displays properties of the selected component, and also allows you to make changes.

powerapps-docs/maker/model-driven-apps/embedded-canvas-app-guidelines.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: "Guidelines and troubleshooting when working with embedded canvas apps | MicrosoftDocs"
33
description: Understand the recommended ways to work with embedded canvas apps in Power Apps
44
ms.custom: ""
5-
ms.date: 04/02/2021
5+
ms.date: 06/17/2021
66
ms.reviewer: ""
77
ms.service: powerapps
88
ms.suite: ""
@@ -61,6 +61,11 @@ This topic provides guidelines on working with embedded canvas apps as well as h
6161
3. In the list of controls select the default control and then select the **Web** option.
6262
4. Select **OK**.
6363

64+
## Saving data in an embedded canvas app
65+
- A save event made from a model-driven app, such as selecting the Save button on the main form command bar, doesn’t save changes made in the embedded canvas app.
66+
- To save changes made in an embedded canvas app, use the [Dataverse connector](/connectors/commondataserviceforapps/).
67+
- The ModelDrivenFormIntegration control OnDataRefresh action should only be used to refresh data within the embedded canvas app. We don’t recommend that you use the OnDataRefresh action to save changes within the embedded canvas app.
68+
6469
## Known issues and limitations with embedded canvas apps
6570

6671
### Limitations

powerapps-docs/maker/model-driven-apps/embedded-canvas-app-properties-actions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: "ModelDrivenFormIntegration control properties and actions | MicrosoftDocs"
33
description: Learn about ModelDrivenFormIntegration control properties and actions
44
ms.custom: ""
5-
ms.date: 06/25/2019
5+
ms.date: 06/17/2021
66
ms.reviewer: ""
77
ms.service: powerapps
88
ms.suite: ""
@@ -35,7 +35,7 @@ This topic explains the properties and actions available on the ModelDrivenFormI
3535
|:--------------|:-------------------------|
3636
|**DataSource** | Should be set to the data source connected to the parent table of the host model-driven form. <br />Automatically set when [embedding a new canvas app](embedded-canvas-app-add-classic-designer.md). |
3737
|**Item** | Read-only property that enables the embedded canvas app to access the row from the host model-driven form. <br />As an example, to get the value of a column with the name accountnumber and display name Account Number, you can use ModelDrivenFormIntegration.Item.accountnumber or ModelDrivenFormIntegration.Item.'Account Number'. |
38-
|**OnDataRefresh** | The formula in this property is evaluated when the host model-driven form saves data. <br />Use it to refresh the data source connected to the parent table of the host model-driven form and to perform other actions like setting or updating variables. <br /> As an example, setting it to the formula below will refresh the Accounts data source and set a variable named CurrentAccountNumber to the value of the Account Number column of the current row. <br /> Refresh(Accounts); Set(CurrentAccountNumber, ModelDrivenFormIntegration.Item.'Account Number') |
38+
|**OnDataRefresh** | The formula in this property is evaluated when the host model-driven form saves data. <br />Use it to refresh the data source connected to the parent table of the host model-driven form and to perform other actions like setting or updating variables. <br /> As an example, setting it to the formula below will refresh the Accounts data source and set a variable named CurrentAccountNumber to the value of the Account Number column of the current row. <br /> Refresh(Accounts); Set(CurrentAccountNumber, ModelDrivenFormIntegration.Item.'Account Number') <br /> The OnDataRefresh action should only be used to refresh data within the embedded canvas app. We don’t recommend that you use the OnDataRefresh action to save changes within the embedded canvas app. More information: [Saving data in an embedded canvas app](embedded-canvas-app-guidelines.md#saving-data-in-an-embedded-canvas-app) |
3939
|**RefreshForm** | Refreshes the data on the host model-driven form. <br />See [Perform predefined actions on the host form](embedded-canvas-app-actions.md#refreshformshowprompt) for details. |
4040
|**SaveForm** | Saves the data on the host model-driven form. <br />See [Perform predefined actions on the host form](embedded-canvas-app-actions.md#saveform) for details. |
4141
|**NavigateToMainForm** | Navigates the host model-driven form to a main form and displays the specified row. <br />See [Perform predefined actions on the host form](embedded-canvas-app-actions.md#navigatetomainformentityname-mainformname-recordid) for details. |

powerapps-docs/teams/known-issues-limitations.md

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,13 @@ author: matthewbolanos
55
ms.service: powerapps
66
ms.topic: conceptual
77
ms.custom:
8-
ms.date: 01/07/2021
8+
ms.date: 06/17/2021
99
ms.author: mabolan
1010
ms.reviewer: tapanm
11+
contributors:
12+
- tapanm-msft
13+
- matthewbolanos
14+
- msftman
1115
---
1216
# Known issues and limitations
1317

@@ -19,7 +23,11 @@ The following components aren't supported:
1923

2024
- Model-driven apps
2125
- AI Builder
22-
- Custom connectors
26+
27+
> [!NOTE]
28+
> Custom connectors are supported only if both of these conditions are met:
29+
> - The app or flow is running in the context of Microsoft Teams.
30+
> - And, the custom connector points at an APIM endpoint in Azure.
2331
2432
## Component library
2533

@@ -96,4 +104,4 @@ Power Apps Studio and apps currently don't support **Dark theme**.
96104
- It may take up to 15 minutes for new team users to be able to see the team within the Power Apps and Power Virtual Agents apps.
97105

98106

99-
[!INCLUDE[footer-include](../includes/footer-banner.md)]
107+
[!INCLUDE[footer-include](../includes/footer-banner.md)]

0 commit comments

Comments
 (0)