Skip to content

Commit 0167e58

Browse files
committed
Merge branch 'master' into pehecke-solutions-update
2 parents 7a27cb3 + 8e5c3ba commit 0167e58

File tree

10 files changed

+30
-18
lines changed

10 files changed

+30
-18
lines changed

powerapps-docs/developer/common-data-service/powerapps-cli.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ This table lists some common commands used in the CLI:
5050
|------|-----------|--------|
5151
|**pcf**|Commands for working with [Power Apps component framework](/powerapps/developer/component-framework/overview). It has the following parameters: <br/> - **init**: Initializes the code component project. It has the following parameters <br/> - *namespace*: Namespace of the code component. <br/> - *name*: Name of the code component. <br/> - *template*: Field or dataset <br/> - **push**: Pushes the code component to the Common Data Service instance with all the latest changes. It has the following parameter: <br/> - *publisher-prefix*: Publisher prefix of the organization.<br/> - **Version**: Updates the component manifest file with the specified patch version. It has the following parameters: <br/> - *patchversion*: Patch version of the code component. `patchversion` will only take value of the third part of the version tuple: `Major.Minor.Patch`.<br/> - *path*: Absolute or relative path of the component manifest file.<br/> - *allmanifests*: Updates the patch version for all the component manifest files. <br/> - *strategy*: Updates patch version for the manifest files using specified strategy values.| `pac pcf init --namespace <specify your namespace here> --name <Name of the code component> --template <component type>` <br/> <br/> `pac pcf push --publisher-prefix <your publisher prefix>` <br/><br/> `pac pcf version --patchversion <number> --path <Absolute or relative path to component manifest file --allmanifests` <br/><br/> `pac pcf version --strategy gittags`|
5252
|**solution**|Commands for working with [Common Data Service solution projects](/powerapps/maker/common-data-service/solutions-overview). It has the following parameters: <br/> - **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. <br/> - **add-reference**: Sets the reference path to the component project folder by passing the `path` parameter.<br/> - **clone**: Creates a solution project based up on the existing solution project by passing 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/> -**Export**: Exports a Common Data Service solution project from the current organization. It has the following parameters:<br/> -*path*: Place where the exported solution zip file will be saved.<br/> - *name*: Name oft he 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 init --publisher-name <enter your publisher name> --publisher-prefix <enter your publisher prefix>` <br/><br/> `pac solution add-reference --path <path to your Power Apps component framework project>`<br/><br/> `pac solution clone –name<name of the solution to be exported> --version <version of your solution> --include <settings that should be included>`|
53-
|**auth**|Commands to [authenticate to Common Data Service](/powerapps/developer/component-framework/import-custom-controls#connecting-to-your-environment). It has the following parameters: <br/> - **create**: Creates the authentication profile for your organization by passing the `url` parameter. Pass the organization url for the `url` parameter. <br/> - **list**: Provides the list of authentication profiles. <br/> - **select**: Provides a way to switch between previously created authentication profiles by passing the `index` parameter.<br/>**delete**: Deletes the authentication profile created by passing the `index` parameter.|`pac auth create --url <your Common Data Service org’s url>` <br/> <br/> `pac auth list` <br/><br/> `Pac auth select --index <index of the active profile>`|
53+
|**auth**|Commands to [authenticate to Common Data Service](/powerapps/developer/component-framework/import-custom-controls#connecting-to-your-environment). It has the following parameters: <br/> - **create**: Creates the authentication profile for your organization by passing the `url` parameter. Pass the organization url for the `url` parameter. <br/> - **list**: Provides the list of authentication profiles. <br/> - **select**: Provides a way to switch between previously created authentication profiles by passing the `index` parameter.<br/> - **delete**: Deletes the authentication profile created by passing the `index` parameter.<br/> - **clear**: Clears all the authentication profile created on the local machine.|`pac auth create --url <your Common Data Service org’s url>` <br/> <br/> `pac auth list` <br/><br/> `pac auth select --index <index of the active profile>`<br/><br/> `pac auth clear`|
5454
|**telemetry**|Manages the telemetry settings. It has the following parameters: <br/>- *enable*: Enables the telemetry option.<br/> - *disable*: Disables the telemetry option.<br/> - *status*: Returns whether the telemetry is enabled or disabled.|`pac telemetry enable` <br/><br/> `pac telemetry disable`|
5555
|**org**|Command to work with Common Data Service.|`pac org who`|
5656
|**plugin**|Manages to create a [plug-in](/powerapps/developer/common-data-service/plug-ins) project|`pac plugin init`|
@@ -76,4 +76,4 @@ If you are a **Private Preview** participant and have an older version of CLI, f
7676
7777
## See also
7878
79-
[Power Apps component framework](../component-framework/overview.md)
79+
[Power Apps component framework](../component-framework/overview.md)

powerapps-docs/developer/model-driven-apps/best-practices/business-logic/avoid-window-top.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ The following are the recommended approaches:
6464
catch (err) {
6565
return false;
6666
}
67-
}
6867
}
6968

7069
var canAccess = isTopAccessible();

powerapps-docs/maker/canvas-apps/accessible-apps.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ms.service: powerapps
77
ms.topic: conceptual
88
ms.custom: canvas
99
ms.reviewer: tapanm
10-
ms.date: 04/03/2018
10+
ms.date: 07/01/2020
1111
ms.author: fikaradz
1212
search.audienceType:
1313
- maker
@@ -20,7 +20,7 @@ An accessible canvas app will allow users with vision, hearing and other impairm
2020
Use the **[Accessibility Checker](accessibility-checker.md)** to help review potential accessibility issues in your app.
2121

2222
## Layout and color
23-
Common sense and uncomplicated design helps apps be more accessible to all users. When doing heavy customization of apps take note of the below suggestions. Power Apps themes are by default accessible.
23+
Common sense and uncomplicated design helps apps be more accessible to all users. When doing heavy customization of apps take note of the below suggestions. Power Apps themes are designed to meet accessibility standards.
2424
- Ensure all elements are clearly visible and text is of sufficient size. All content must be easily read and understood by the naked eye.
2525
- Avoid using the visibility property of items to bring an element into view. If you need to show something conditionally, create the content in a new screen and navigate to it and back.
2626
- Ensure input elements are labeled on the screen. **[AccessibilityLabel](controls/properties-accessibility.md)** property defines what the screen reader will announce.

powerapps-docs/maker/canvas-apps/common-issues-and-resolutions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ms.service: powerapps
77
ms.topic: conceptual
88
ms.custom: canvas
99
ms.reviewer:
10-
ms.date: 06/11/2020
10+
ms.date: 07/02/2020
1111
ms.author: kvivek
1212
search.audienceType:
1313
- maker
@@ -19,7 +19,7 @@ search.app:
1919
This article lists some common issues that you might encounter while using Power Apps. Where applicable, workarounds are provided.
2020

2121
1. **Black box covering part of embedded canvas app** (June 11, 2020)
22-
When using embedded canvas apps such as SharePoint forms, SharePoint web parts, and model driven forms, users many see a black box when scrolling covering part of the app. This issue happens with chromium based browsers starting with version 83. There is not a workaround at this time. The team is actively investigating to find a fix and workaround.
22+
When using embedded canvas apps such as SharePoint forms, SharePoint web parts, and model driven forms, users many see a black box when scrolling covering part of the app. This issue happens with chromium based browsers starting with version 83. There is not a workaround at this time. The team is actively investigating to find a fix and workaround. **A workaround in Power Apps was deployed in the week of 6/21/2020. In addition, the issue is fixed for Microsoft Edge based on Chromium with version 85.**
2323

2424
1. **Problems downloading attachments in SharePoint custom forms** (May 22, 2020)
2525
When using the attachment control to download an attachment, the click won't have any response when using Google Chrome version 83 or the new Microsoft Edge version 83 browser. As a workaround, change to use the default SharePoint form or use another browser. The team is actively working to fix this issue. **Fix has been deployed in the weeek of 6/8/2020**

powerapps-docs/maker/canvas-apps/getting-started.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ When you finish the app and save it to the cloud, [share it with others](share-a
4343
Run your own apps - and any apps shared with you - on Windows, in a [web browser](../../user/run-app-browser.md), or on an [iOS or Android device](../../user/run-app-client.md).
4444

4545
## Learn more
46+
- Ready to convert your ideas into an app? Start here: [Planning a Power Apps project](/powerapps/guidance/planning/introduction)
4647
- Explore the step-by-step, conceptual, and reference topics in the navigation pane on the left.
4748
- Review [coding standards](https://aka.ms/powerappscanvasguidelines) for maximizing app performance and keeping apps easier to maintain.
4849
- Check out the [webinars and video gallery](https://powerusers.microsoft.com/t5/Webinars-and-Video-Gallery/bd-p/VideoGallery?featured=yes) to help you leverage the features and functions of Power Apps.
@@ -53,6 +54,7 @@ Run your own apps - and any apps shared with you - on Windows, in a [web browser
5354
* Create a [support ticket](https://powerapps.microsoft.com/support/pro/) to get technical assistance. If you're a Power Apps administrator for your organization, you can also open a support ticket in the [Power Apps admin center](https://admin.microsoft.com/Support/Support.aspx).
5455

5556
## Next steps
57+
- [Planning a Power Apps project](/powerapps/guidance/planning/introduction)
5658
- [Sign up for a free license](../signup-for-powerapps.md)
5759
- [Sign in to Power Apps](https://make.powerapps.com?utm_source=padocs&utm_medium=linkinadoc&utm_campaign=referralsfromdoc)
5860
- [Open a sample app](open-and-run-a-sample-app.md)

powerapps-docs/maker/canvas-apps/limits-and-config.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ This list identifies all services to which Power Apps Studio talks and their usa
9393
| graph.microsoft.com<br>graph.windows.net |https |Azure Graph - For getting user info (e.g., profile photo) |
9494
| gallery.azure.com |https |Sample and Template apps |
9595
| \*.azure-apim.net |https |Api Hubs - Different sub-domains for each locale |
96-
| \*.powerapps.com |https | create.powerapps.com, make.powerapps.com, content.powerapps.com, and make.powerapps.com |
96+
| \*.powerapps.com |https | create.powerapps.com, make.powerapps.com, content.powerapps.com,apps.powerapps.com, and make.powerapps.com |
9797
| \*.azureedge.net |https | create.powerapps.com, make.powerapps.com, content.powerapps.com, and make.powerapps.com |
9898
| \*.blob.core.windows.net |https | Blob storage |
9999
| \*.flow.microsoft.com | https | create.powerapps.com, make.powerapps.com, content.powerapps.com, and make.powerapps.com |

powerapps-docs/maker/model-driven-apps/build-first-model-driven-app.md

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,10 @@ title: Build your first model-driven app from scratch with Power Apps | Microsof
33
description: Learn how to build a simple model-driven app
44
documentationcenter: ''
55
author: Mattp123
6-
manager: kvivek
7-
editor: ''
8-
tags: ''
96
ms.service: powerapps
10-
ms.devlang: na
117
ms.topic: conceptual
128
ms.component: model
13-
ms.date: 02/05/2019
9+
ms.date: 07/01/2020
1410
ms.author: matp
1511
search.audienceType:
1612
- maker
@@ -23,7 +19,8 @@ search.app:
2319
Model-driven app design is a component-focused approach to app development. In this topic, you simplify how to create a model-driven app by using one of the standard entities that's available in your Power Apps environment.
2420

2521
> [!TIP]
26-
> To learn all about building model-driven apps, start here: [Understand model-driven app components](model-driven-app-components.md).
22+
> Ready to convert your ideas into an app? Start here: [Planning a Power Apps project](/powerapps/guidance/planning/introduction).<br/>
23+
> For detailed information about model-driven apps and how to build it, start here: [Understand model-driven app components](model-driven-app-components.md).
2724
2825
## Sign in to Power Apps
2926
Sign in to [Power Apps](https://make.powerapps.com/). If you don't already have a [!INCLUDE [powerapps](../../includes/powerapps.md)] account, select the **Get started free** link.

powerapps-docs/maker/model-driven-apps/manage-auto-save.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Auto-save helps app users focus on their work without having to manage saving da
2828
<a name="BKMK_HowAutoSaveWorks"></a>
2929

3030
## How auto-save works
31-
By default all main forms for [Updated entities and classic entities](create-design-forms.md#updated-versus-classic-entities) will have auto-save enabled. After a record is created (initially saved), any changes made to a form will automatically be saved thirty seconds after the change is made. If no changes are made in the form, the automatic save won't occur while the form is open. After a change is made the 30-second period before an auto-save begins again. The field that someone is currently editing isn't included in an auto-save. If someone else has updated the same record while you're editing it, those changes will be retrieved and displayed in the form when auto-save occurs.
31+
By default all main forms for [Updated entities and classic entities](create-design-forms.md#updated-versus-classic-entities) will have auto-save enabled. After a record is created (initially saved), any changes made to a form will automatically be saved thirty seconds after the change is made. If no changes are made in the form, the automatic save won't occur while the form is open. After a change is made the 30-second period before an auto-save begins again. If someone else has updated the same record while you're editing it, those changes will be retrieved and displayed in the form when auto-save occurs.
3232

3333
With auto-save enabled, the save button only appears for the initial save of the record. After the record is created, the save button in the command bar isn't shown, but you can see a ![Auto save button](media/auto-save-icon.png "Auto save button") button in the lower right corner that will show if there are any unsaved changes. This control is also displayed if auto-save is disabled.
3434

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

Lines changed: 15 additions & 1 deletion
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/25/2020
8+
ms.date: 06/26/2020
99
ms.author: sandhan
1010
ms.reviewer: tapanm
1111
---
@@ -14,6 +14,20 @@ ms.reviewer: tapanm
1414

1515
## General issues
1616

17+
- You receive the following error message when configuring or using entity fields:
18+
19+
***Field Name**: You have exceeded the maximum number of 100000 characters in this field.*
20+
21+
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.
22+
23+
Fields where limit may need to be increased:
24+
25+
| Entity | Field Display Name |
26+
| - | - |
27+
| Entity Form | Settings (adx_settings) |
28+
| Enity List | View (adx_views) |
29+
| Enity Form Metadata | Subgrid Setting (adx_subgrid_settings) |
30+
1731
- 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 Common Data Service model-driven app.
1832

1933
- Because of the ongoing compatibility issues between the updated Yahoo YDN OAuth provider endpoint and Power Apps portals, users are temporarily unable to authenticate with [Yahoo identity provider](./configure/configure-oauth2-settings.md#yahoo-ydn-app-settings).

powerapps-docs/maker/portals/liquid/liquid-types.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Liquid objects can return one of seven basic types: **String**, **Number**, **Bo
1919
A String is declared by wrapping text in single or double quotes.
2020

2121
```
22-
{% assign string_a = Hello World! %}
22+
{% assign string_a = "Hello World!" %}
2323
2424
{% assign string_b = 'Single quotes work too.' %}
2525
```
@@ -121,4 +121,4 @@ This will render if the ID request parameter is NOT null.
121121
[Conditional](liquid-conditional-operators.md)
122122
[Liquid Objects](liquid-objects.md)
123123
[Liquid Tags](liquid-tags.md)
124-
[Liquid Filters](liquid-filters.md)
124+
[Liquid Filters](liquid-filters.md)

0 commit comments

Comments
 (0)