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
@@ -90,7 +90,7 @@ Command to work with solution packages. It has the following parameters:
90
90
91
91
92
92
93
-
### Pcf
93
+
### PCF
94
94
95
95
Commands to work with [Power Apps component framework](/powerapps/developer/component-framework/overview). It has the following parameters:
96
96
@@ -114,7 +114,10 @@ Commands for working with [Dataverse solution projects](/powerapps/maker/data-pl
114
114
|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` |
115
115
|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`|
116
116
|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` |
Copy file name to clipboardExpand all lines: powerapps-docs/maker/canvas-apps/controls/control-combo-box.md
+13-7Lines changed: 13 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ ms.service: powerapps
7
7
ms.topic: reference
8
8
ms.custom: canvas
9
9
ms.reviewer: tapanm
10
-
ms.date: 07/06/2020
10
+
ms.date: 02/11/2021
11
11
ms.author: chmoncay
12
12
search.audienceType:
13
13
- maker
@@ -18,13 +18,13 @@ search.app:
18
18
A control that allows users to make selections from provided choices. Supports search and multiple selections.
19
19
20
20
## 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.
22
22
23
23
Single or multi-select mode is configured via the SelectMultiple property.
24
24
25
25
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.
26
26
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.
28
28
29
29
> [!NOTE]
30
30
> 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
43
43
44
44
**IsSearchable** – Whether the user can search for items before selecting.
45
45
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.
47
53
48
54
## Additional properties
49
55
**[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
64
70
65
71
**[Height](properties-size-___location.md)** – The distance between a control's top and bottom edges.
66
72
67
-
**InputTextPlaceholder** – Instructional text shown to end-users when no items are selected.
73
+
**InputTextPlaceholder** – Instructional text shown to endusers when no items are selected.
68
74
69
75
**OnChange** – How the app responds when the user changes a selection.
70
76
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.
72
78
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.
74
80
75
81
**[TabIndex](properties-accessibility.md)** – Keyboard navigation order in relation to other controls.
Copy file name to clipboardExpand all lines: powerapps-docs/maker/canvas-apps/dependent-drop-down-lists.md
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -2,12 +2,11 @@
2
2
title: Create a dependent drop-down list in a canvas app | Microsoft Docs
3
3
description: In Power Apps, create a drop-down list that filters another drop-down list in a canvas app.
4
4
author: emcoope-msft
5
-
manager: kvivek
6
5
ms.service: powerapps
7
6
ms.topic: conceptual
8
7
ms.custom: canvas
9
8
ms.reviewer: tapanm
10
-
ms.date: 04/04/2019
9
+
ms.date: 02/11/2021
11
10
ms.author: emcoope
12
11
search.audienceType:
13
12
- maker
@@ -22,7 +21,8 @@ As a best practice, create a data source for the values in the "parent" and "chi
22
21
23
22
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.
24
23
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.
Copy file name to clipboardExpand all lines: powerapps-docs/maker/portals/known-issues.md
+4-3Lines changed: 4 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ author: sandhangitmsft
5
5
ms.service: powerapps
6
6
ms.topic: conceptual
7
7
ms.custom:
8
-
ms.date: 06/26/2020
8
+
ms.date: 02/12/2021
9
9
ms.author: sandhan
10
10
ms.reviewer: tapanm
11
11
---
@@ -23,9 +23,9 @@ ms.reviewer: tapanm
23
23
24
24
- You receive the following error message when configuring or using entity fields:
25
25
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.*
27
27
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.
29
29
30
30
Fields where limit may need to be increased:
31
31
@@ -34,6 +34,7 @@ ms.reviewer: tapanm
34
34
| Entity Form | Settings (adx_settings) |
35
35
| Enity List | View (adx_views) |
36
36
| Enity Form Metadata | Subgrid Setting (adx_subgrid_settings) |
37
+
| Web Page | Copy (adx_copy) |
37
38
38
39
- 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.
Copy file name to clipboardExpand all lines: powerapps-docs/mobile/run-powerapps-on-mobile.md
+18-9Lines changed: 18 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -21,13 +21,21 @@ searchScope:
21
21
22
22
# Run model-driven apps and canvas apps on Power Apps mobile
23
23
24
-
When you create an app, or someone shares an app with you—either a canvas app or model-driven app—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—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—you can run that app on iOS and Android devices by using the Power Apps mobile app.
25
25
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).
27
27
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).
> 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
31
39
32
40

33
41
@@ -65,13 +73,13 @@ Choose the download link for your device:
65
73
- For Android, go to [Google Play](https://play.google.com/store/apps/details?id=com.microsoft.msapps).
66
74
67
75
68
-
## Open Power Apps, and sign in
76
+
## Sign in
69
77
70
78
Open Power Apps on your mobile device, and sign in by using your Azure Active Directory credentials.
71
79
72
-

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).
73
81
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
+

75
83
76
84
77
85
## Find the app
@@ -226,7 +234,7 @@ If an app requires a connection to a data source or permission to use the device
226
234
227
235

228
236
229
-
### Run a model-driven app
237
+
### Use a model-driven app
230
238
231
239
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).
232
240
@@ -247,6 +255,7 @@ Select the site map  <br/>
250
259
[Troubleshoot issues for the Power Apps mobile app](https://docs.microsoft.com/powerapps/user/powerapps_mobile_troubleshoot)
Copy file name to clipboardExpand all lines: powerapps-docs/mobile/use-custom-model-driven-app-on-mobile.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,7 @@ search.app:
22
22
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).
23
23
24
24
> [!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).
0 commit comments