Skip to content

Commit 58b9106

Browse files
committed
Merging changes synced from https://github.com/MicrosoftDocs/powerapps-docs-pr (branch live)
2 parents 819f016 + 944e62c commit 58b9106

15 files changed

+80
-61
lines changed

.openpublishing.redirection.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,16 @@
55
"redirect_url": "create-solution#solution-publisher",
66
"redirect_document_id": "false"
77
},
8+
{
9+
"source_path": "powerapps-docs/user/run-canvas-and-model-apps-on-mobile.md",
10+
"redirect_url": "../mobile/run-powerapps-on-mobile",
11+
"redirect_document_id": "false"
12+
},
13+
{
14+
"source_path": "powerapps-docs/user/powerapps_mobile_troubleshoot.md",
15+
"redirect_url": "powerapps-mobile-troubleshoot",
16+
"redirect_document_id": "false"
17+
},
818
{
919
"source_path": "powerapps-docs/maker/canvas-apps/monitor.md",
1020
"redirect_url": "../monitor-canvasapps",

powerapps-docs/developer/data-platform/powerapps-cli.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ keywords: Power Apps CLI, code components, component framework, CLI
55
ms.author: nabuthuk
66
author: Nkrb
77
manager: kvivek
8-
ms.date: 01/25/2021
8+
ms.date: 02/10/2021
99
ms.service: "powerapps"
1010
ms.suite: ""
1111
ms.tgt_pltfrm: ""
@@ -90,7 +90,7 @@ Command to work with solution packages. It has the following parameters:
9090
9191
9292
93-
### Pcf
93+
### PCF
9494
9595
Commands to work with [Power Apps component framework](/powerapps/developer/component-framework/overview). It has the following parameters:
9696
@@ -114,7 +114,10 @@ Commands for working with [Dataverse solution projects](/powerapps/maker/data-pl
114114
|init|Initializes the solution project. It has the following parameters:<br/> - *publisher-name*: Publisher name of the organization. <br/> - *publisher-prefix*: Publisher prefix of the organization.|`pac solution init --publisher-name developer --publisher-prefix dev` |
115115
|add-reference|Sets the reference path to the component project folder by passing the `path` parameter.|`pac solution add-reference --path c:\Users\Downloads\SampleComponent`|
116116
|clone|Creates a solution project based up on the existing solution project. It has the following parameters:<br/> -*name*: The name of the solution to be exported.<br/> -*targetversion*: The version that the exported solution supports.<br/> -*include*: Settings that should be included in the solution being exported. <br/> It has the following values: autonumbering, calendar, customization, emailtracking, externalapplications, general, isvconfig, marketing, outlooksynchronization, relationshiproles, sales|`pac solution clone -–name sampleSolution --version 1.0.0.2 --include general`|
117-
|export|Exports a Dataverse solution project from the current organization. It has the following parameters:<br/> -*path*: Complete file name where the exported solution zip file will be saved.<br/> - *name*: Name of the solution that needs to be exported.<br/> - *managed*: Defines whether the solution should be exported as a managed solution or not.<br/>-*targetversion*: The version that the exported solution supports.<br/> -*include*: Settings that should be included in the solution being exported.|`pac solution export --path c:\Users\Documents\Solution.zip -- name SampleComponentSolution --managed true --targetversion 10.0.03 --include general`|
117+
|import|Imports a Dataverse solution to an environment. It requires that you are connected to an environment [Auth commands](#auth) and has the following parameters:<br/> -*activate-plugins*: Activates plug-ins and workflows in the environment after the import (alias: -ap). <br/> -*async*: Imports the solution asynchronously (alias: -a). <br/> -*force-overwrite*: Forces an overwrite of unmanaged customizations (alias: -f). <br/> -*import-as-holding*: Imports the solution as a holding solution (alias: -h). <br/> -*max-async-wait-time*: Maximum asynchronous wait time in minutes. Default value is 60 mintues (alias: -wt). <br/> -*path*: Path to solution zip file. If not specified, assumes the current folder (alias: -p). <br/> -*publish-changes*: Publishes changes after successful import (alias: -pc). <br/> -*skip-dependency-check*: Skips dependency check against dependencies flagged as product update (alias: -s). |`pac solution import --path c:\Users\Documents\Solution.zip `|
118+
|export|Exports a Dataverse solution from an environment. It requires that you are connected to an environment [Auth commands](#auth) and has the following parameters:<br/> -*path*: Complete file name where the exported solution zip file will be saved.<br/> - *name*: Name of the solution that needs to be exported.<br/> - *managed*: Defines whether the solution should be exported as a managed solution or not.<br/>-*targetversion*: The version that the exported solution supports.<br/> -*include*: Settings that should be included in the solution being exported.|`pac solution export --path c:\Users\Documents\Solution.zip -- name SampleComponentSolution --managed true --targetversion 10.0.03 --include general`|
119+
|list|List all Solutions from a Dataverse environment. It requires that you are connected to an environment [Auth commands](#auth). This command has no parameters:|`pac solution list` |
120+
118121
119122
### Auth
120123

powerapps-docs/maker/TOC.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,6 @@
2929
items:
3030
- name: In a browser
3131
href: ../user/run-app-browser.md
32-
- name: On a mobile device
33-
href: ../user/run-canvas-and-model-apps-on-mobile.md
3432
- name: On a SharePoint Online page (canvas apps)
3533
href: ../user/powerapps-web-part.md
3634
- name: In Microsoft Teams (canvas apps)
@@ -1320,7 +1318,7 @@
13201318
- name: Create push notifications for Power Apps mobile
13211319
href: ../mobile/power-apps-mobile-notification.md
13221320
- name: Troubleshoot issues for the Power Apps mobile app
1323-
href: ../user/powerapps_mobile_troubleshoot.md
1321+
href: ../user/powerapps-mobile-troubleshoot.md
13241322

13251323
- name: Portals
13261324
items:

powerapps-docs/maker/canvas-apps/controls/control-combo-box.md

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ms.service: powerapps
77
ms.topic: reference
88
ms.custom: canvas
99
ms.reviewer: tapanm
10-
ms.date: 07/06/2020
10+
ms.date: 02/11/2021
1111
ms.author: chmoncay
1212
search.audienceType:
1313
- maker
@@ -18,13 +18,13 @@ search.app:
1818
A control that allows users to make selections from provided choices. Supports search and multiple selections.
1919

2020
## Description
21-
A **Combo box** control allows you to search for items you will select. The search is performed server-side on the SearchField property so performance is not affected by very large data sources.
21+
A **Combo box** control allows you to search for items you will select. The search is performed server-side on the SearchField property so performance is not affected by large data sources.
2222

2323
Single or multi-select mode is configured via the SelectMultiple property.
2424

2525
When searching for items to select, for each item you can choose to show a single data value, two values, or a picture and two values (Person) by modifying the Layout settings in the Data pane.
2626

27-
When viewing on small screens, the items list flyout will become a full screen control for better usablility.
27+
When viewing on small screens, the items list flyout will become a full screen control for better usability.
2828

2929
> [!NOTE]
3030
> If you want to search for items with *numbers*, convert numbers to text with [Text()](https://docs.microsoft.com/powerapps/maker/canvas-apps/functions/function-text) function. For example, *Text(12345)*.
@@ -43,7 +43,13 @@ To use **Combo box** as a people picker, choose the **Person** template from the
4343

4444
**IsSearchable** – Whether the user can search for items before selecting.
4545

46-
**SearchFields** - The data fields of the data source searched when user is entering text. To search on multiple fields, set ComboBox1.SearchFields = ["MyFirstColumn", "MySecondColumn"]
46+
> [!NOTE]
47+
> **IsSearchable** can be enabled only on a data source that contains at least one text field. The **Items** expression must be delegable for queries to be delegated with searching. That is, **If** statements within the **Items** expression are not supported.
48+
49+
**SearchFields** - The data fields of the data source searched when user is entering text.
50+
51+
> [!NOTE]
52+
> To search on multiple fields, set ComboBox1.SearchFields = ["MyFirstColumn", "MySecondColumn"]. Only text fields are supported.
4753
4854
## Additional properties
4955
**[AccessibleLabel](properties-accessibility.md)** – Label for screen readers.
@@ -64,13 +70,13 @@ To use **Combo box** as a people picker, choose the **Person** template from the
6470

6571
**[Height](properties-size-___location.md)** – The distance between a control's top and bottom edges.
6672

67-
**InputTextPlaceholder** – Instructional text shown to end-users when no items are selected.
73+
**InputTextPlaceholder** – Instructional text shown to end users when no items are selected.
6874

6975
**OnChange** – How the app responds when the user changes a selection.
7076

71-
**OnNavigate** – How the app responds when the user clicks on an item.
77+
**OnNavigate** – How the app responds when the user selects an item.
7278

73-
**[OnSelect](properties-core.md)** – How the app responds when the user taps or clicks a control.
79+
**[OnSelect](properties-core.md)** – How the app responds when the user taps or selects a control.
7480

7581
**[TabIndex](properties-accessibility.md)** – Keyboard navigation order in relation to other controls.
7682

powerapps-docs/maker/canvas-apps/dependent-drop-down-lists.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,11 @@
22
title: Create a dependent drop-down list in a canvas app | Microsoft Docs
33
description: In Power Apps, create a drop-down list that filters another drop-down list in a canvas app.
44
author: emcoope-msft
5-
manager: kvivek
65
ms.service: powerapps
76
ms.topic: conceptual
87
ms.custom: canvas
98
ms.reviewer: tapanm
10-
ms.date: 04/04/2019
9+
ms.date: 02/11/2021
1110
ms.author: emcoope
1211
search.audienceType:
1312
- maker
@@ -22,7 +21,8 @@ As a best practice, create a data source for the values in the "parent" and "chi
2221

2322
For the scenario in this topic, store employees submit issues to an **Incidents** list through a form. Employees specify not only the ___location of the store at which the incident occurred but also the department within that ___location. Not all locations have the same departments, so a **Locations** list ensures that employees can't specify a department for a ___location that doesn't have that department.
2423

25-
This topic uses Microsoft SharePoint lists as data sources, but all tabular data sources work the same way.
24+
> [!NOTE]
25+
> This article uses Microsoft SharePoint lists as data sources, but all tabular data sources work the same way. Within [Dataverse for Teams](../../teams/create-apps-overview.md), you'll need to enable [classic controls](../../teams/understand-power-apps-studio.md#classic-controls) to get the classic drop-down to work for this scenario.
2626
2727
## Create data sources
2828

powerapps-docs/maker/portals/known-issues.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ author: sandhangitmsft
55
ms.service: powerapps
66
ms.topic: conceptual
77
ms.custom:
8-
ms.date: 06/26/2020
8+
ms.date: 02/12/2021
99
ms.author: sandhan
1010
ms.reviewer: tapanm
1111
---
@@ -23,9 +23,9 @@ ms.reviewer: tapanm
2323

2424
- You receive the following error message when configuring or using entity fields:
2525

26-
***Field Name**: You have exceeded the maximum number of 100000 characters in this field.*
26+
***Field Name**: You have exceeded the maximum number of X characters in this field.*
2727

28-
This can happen if the referenced field for the entity exceeds 100000 characters limit. To increase this limit, go to your Dynamics 365 instance > **Settings** > **Customization** > **Customize this system** > **Components** > **Entities**. Select applicable entity and then select the field. Increase the **Maximum Length** field value for the field to a higher value. Allowed values: 1 through 1,048,576.
28+
This can happen if the referenced field for the entity exceeds characters limit mentioned in the error. To increase this limit, go to your Dynamics 365 instance > **Settings** > **Customization** > **Customize this system** > **Components** > **Entities**. Select applicable entity and then select the field. Increase the **Maximum Length** field value for the field to a higher value. Allowed values: 1 through 1,048,576.
2929

3030
Fields where limit may need to be increased:
3131

@@ -34,6 +34,7 @@ ms.reviewer: tapanm
3434
| Entity Form | Settings (adx_settings) |
3535
| Enity List | View (adx_views) |
3636
| Enity Form Metadata | Subgrid Setting (adx_subgrid_settings) |
37+
| Web Page | Copy (adx_copy) |
3738

3839
- Rich-text for notes in timeline isn't fully supported by Power Apps portals because there's no rich-text editor equivalent control available in portals. For more information, go to [notes created with rich-text editor](configure-notes.md?#notes-created-with-rich-text-editor). If you want, you can [disable the rich-text editor for notes in timeline](https://docs.microsoft.com/powerapps/maker/model-driven-apps/set-up-timeline-control#enable-or-disable-rich-text-editor-for-notes-in-timeline) for the Microsoft Dataverse model-driven app.
3940

powerapps-docs/mobile/run-powerapps-on-mobile.md

Lines changed: 18 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,21 @@ searchScope:
2121

2222
# Run model-driven apps and canvas apps on Power Apps mobile
2323

24-
When you create an app, or someone shares an app with you&mdash;either a canvas app or model-driven app&mdash;you can run that app on iOS and Android devices by using the Power Apps mobile app. If you're on a Windows device, you can only run canvas apps; model-driven apps aren't supported on [Power Apps for Windows](https://www.microsoft.com/en-us/p/power-apps/9nblggh5z8f3?activetab=pivot:overviewtab). In this topic, you'll learn how to get started and run a canvas app and a model-driven app on your mobile device.
24+
When you create an app, or someone shares an app with you&mdash;either a [canvas app](https://docs.microsoft.com/powerapps/maker/#canvas-apps) or [model-driven](https://docs.microsoft.com/powerapps/maker/#model-driven-apps) app&mdash;you can run that app on iOS and Android devices by using the Power Apps mobile app.
2525

26-
To learn how to use model-driven apps running on the Power Apps mobile app, see [User Guide for model-driven apps running on the Power Apps mobile app](use-custom-model-driven-app-on-mobile.md).
26+
If you're on a Windows device, you can only run canvas apps; model-driven apps aren't supported on [Power Apps for Windows](https://www.microsoft.com/p/power-apps/9nblggh5z8f3?activetab=pivot:overviewtab). Also, Power Apps for Windows isn't supported if you have the [Power Apps per app plan](/power-platform/admin/about-powerapps-perapp).
2727

28-
> [!IMPORTANT]
29-
> - Customer engagement apps (such as Dynamics 365 Sales and Dynamics 365 Customer Service) don't run in the Power Apps mobile app. Instead, you use the Dynamics 365 for phones and tablets apps. More information: [User Guide for Dynamics 365 for phones and tablets](https://docs.microsoft.com/dynamics365/mobile-app/dynamics-365-phones-tablets-users-guide).
30-
> - Power Apps for Windows isn't supported if you have the [Power Apps per app plan](/power-platform/admin/about-powerapps-perapp).
28+
29+
| **App type** | **iOS** |**Android** |**Windows** |
30+
| --- | --- |--- |--- |
31+
| **[Model-driven](https://docs.microsoft.com/powerapps/maker/#model-driven-apps)** |X |X| |
32+
| **[Canvas](https://docs.microsoft.com/powerapps/maker/#canvas-apps)** |X |X|X|
33+
34+
35+
> [!NOTE]
36+
> Customer engagement apps (such as Dynamics 365 Sales and Dynamics 365 Customer Service) don't run in the Power Apps mobile app. Instead, you use the Dynamics 365 for phones and tablets apps. More information: [User Guide for Dynamics 365 for phones and tablets](https://docs.microsoft.com/dynamics365/mobile-app/user-guide-mobile-app).
37+
38+
In this topic, you'll learn how to get started and run a canvas app and a model-driven app on your mobile device
3139

3240
![Power Apps mobile user interface.](media/powerappsmobile.png "Power Apps mobile user interface")
3341

@@ -65,13 +73,13 @@ Choose the download link for your device:
6573
- For Android, go to [Google Play](https://play.google.com/store/apps/details?id=com.microsoft.msapps).
6674

6775

68-
## Open Power Apps, and sign in
76+
## Sign in
6977

7078
Open Power Apps on your mobile device, and sign in by using your Azure Active Directory credentials.
7179

72-
![Sign in to Power Apps.](media/powerapps_mobile_app_signin_screen.png "Sign in to Power Apps")
80+
If you have the Microsoft Authenticator app installed on your mobile device, enter your username when prompted, and then approve the notification sent to your device. If you run into issues signing in, see [Troubleshoot sign in issues](https://docs.microsoft.com/en-us/powerapps/user/powerapps_mobile_troubleshoot#sign-in-issues).
7381

74-
If you have the Microsoft Authenticator app installed on your mobile device, enter your username when prompted, and then approve the notification sent to your device.
82+
![Sign in to Power Apps.](media/powerapps_mobile_app_signin_screen.png "Sign in to Power Apps")
7583

7684

7785
## Find the app
@@ -226,7 +234,7 @@ If an app requires a connection to a data source or permission to use the device
226234

227235
![Give consent to a canvas app.](media/give_consent_canvas.jpg "Give consent to canvas app")
228236

229-
### Run a model-driven app
237+
### Use a model-driven app
230238

231239
The following image shows an example of a model-driven app screen after you've signed in. To learn how to use model-driven apps running on the Power Apps mobile app, go to [User Guide for model-driven apps running on the Power Apps mobile app](use-custom-model-driven-app-on-mobile.md).
232240

@@ -247,6 +255,7 @@ Select the site map ![Site map icon](media/pa_mobile_sitemap_icon.png "Site map
247255

248256
## See also
249257

258+
[User Guide for model-driven apps running on the Power Apps mobile app](use-custom-model-driven-app-on-mobile.md) <br/>
250259
[Troubleshoot issues for the Power Apps mobile app](https://docs.microsoft.com/powerapps/user/powerapps_mobile_troubleshoot)
251260

252261

powerapps-docs/mobile/use-custom-model-driven-app-on-mobile.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ search.app:
2222
Use the Power Apps mobile app to run model-driven apps on your mobile device. For more information about how to install and get started with an app, see [Run model-driven apps and canvas apps on Power Apps mobile](run-powerapps-on-mobile.md).
2323

2424
> [!IMPORTANT]
25-
> Model-driven apps for Dynamics 365 Sales, Dynamics 365 Customer Service, and Dynamics 365 Field Service don't run in the Power Apps mobile app. Instead, you use the Dynamics 365 for phones and tablets app. For more information, see [User Guide for Dynamics 365 for phones and tablets](https://docs.microsoft.com/dynamics365/mobile-app/dynamics-365-phones-tablets-users-guide).
25+
> Model-driven apps for Dynamics 365 Sales, Dynamics 365 Customer Service, and Dynamics 365 Field Service don't run in the Power Apps mobile app. Instead, you use the Dynamics 365 for phones and tablets app. For more information, see [User Guide for Dynamics 365 for phones and tablets](https://docs.microsoft.com/dynamics365/mobile-app/user-guide-mobile-app).
2626
2727
## Home screen
2828

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ There is no enforcement of user-created required table fields. Rows that have em
5454

5555
### Classic controls
5656

57-
Enabling classic controls requires a refresh of Power Apps Studio.
57+
Enabling [classic controls](understand-power-apps-studio.md#classic-controls) requires a refresh of Power Apps Studio.
5858

5959
### Canvas components
6060

36.6 KB
Loading

0 commit comments

Comments
 (0)