Skip to content

Commit ed423b9

Browse files
Merge pull request #2855 from MicrosoftDocs/master
ADO 1821694
2 parents c0b694f + 7078746 commit ed423b9

File tree

5 files changed

+14
-13
lines changed

5 files changed

+14
-13
lines changed

powerapps-docs/developer/model-driven-apps/define-ribbon-actions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: "Define ribbon actions (model-driven apps) | Microsoft Docs" # Intent and product brand in a unique string of 43-59 chars including spaces"
33
description: "Learn about defining the actions to be performed by a command bar or ribbon control in a <CommandDefinition> element together with rules that control whether the control is enabled or visible in the ribbon." # 115-145 characters including spaces. This abstract displays in the search result."
44
keywords: ""
5-
ms.date: 10/31/2018
5+
ms.date: 05/07/2020
66
ms.service:
77
- PowerApps
88
ms.topic: article
@@ -26,7 +26,7 @@ Define the actions to be performed by a command bar or ribbon control in a `<Com
2626

2727
A Ribbon control can perform two types actions and may include multiple actions:
2828

29-
- **JavaScript Functions**: A `<JavaScriptFunction>` element references a function defined in a Script Web resource.
29+
- **JavaScript Functions**: A `<JavaScriptFunction>` element references a function defined in a [Script (JScript) web resource](/powerapps/developer/model-driven-apps/script-jscript-web-resources).
3030

3131
- **Open a URL**: The ribbon opens a URL using the value from an Address attribute in the `<Url>` element. Additional parameters can pass information about how what querystring parameters are passed and the mode in which the window opens.
3232

powerapps-docs/developer/model-driven-apps/define-ribbon-enable-rules.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: "Define ribbon enable rules (model-driven apps) | Microsoft Docs" # Intent and product brand in a unique string of 43-59 chars including spaces"
33
description: "Learn about defining specific rules to control when the ribbon elements are enabled during configuration of ribbon elements." # 115-145 characters including spaces. This abstract displays in the search result."
44
keywords: ""
5-
ms.date: 02/08/2019
5+
ms.date: 05/07/2020
66
ms.service: powerapps
77
ms.topic: article
88
ms.assetid: 201f5db9-be65-7c3b-8202-822d78338bd6
@@ -65,7 +65,7 @@ Uses the `<CrmClientTypeRule>` element to allow definition of rules depending o
6565
- `CrmForOutlookOfflineAccess`
6666

6767
### Custom Rule
68-
Uses the `<CustomRule>` element. Use this kind of rule to call a function in a JavaScript library that returns a Promise (Unified Interface) or boolean (Unified Interface and web client).
68+
Uses the `<CustomRule>` element. Use this kind of rule to call a function in a [Script (JScript) web resource](/powerapps/developer/model-driven-apps/script-jscript-web-resources) that returns a Promise (Unified Interface) or boolean (Unified Interface and web client).
6969

7070
```JavaScript
7171
function EnableRule()

powerapps-docs/developer/model-driven-apps/web-resource-dependencies.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: "Web resource dependencies (model-driven apps) | Microsoft Docs" # Intent and product brand in a unique string of 43-59 chars including spaces
33
description: "Learn about defining dependencies between web resources in Common Data Service" # 115-145 characters including spaces. This abstract displays in the search result.
44
ms.custom: ""
5-
ms.date: 10/31/2018
5+
ms.date: 05/07/2020
66
ms.reviewer: ""
77
ms.service: powerapps
88
ms.topic: "article"
@@ -17,8 +17,6 @@ search.app:
1717
---
1818
# Web resource dependencies
1919

20-
<!-- https://docs.microsoft.com/dynamics365/customer-engagement/developer/web-resource-dependencies -->
21-
2220
You can define dependencies between other web resources. The primary purpose of this feature is to allow association of String (RESX) web resources with the JavaScript web resources that will use them. This is also the way that web resources required by HTML web resources for use offline can be configured to also be available offline.
2321

2422
However there are some other behaviors which developers using JavaScript web resources can take advantage of.
@@ -34,7 +32,7 @@ Within a solution you can define dependencies within solution components. Up unt
3432
3533
The most common scenario is to associate string (RESX) web resources with a JavaScript web resource that depends on it. There will be a String (RESX) web resource for each language that is associated with the JavaScript web resource that uses it. When that JavaScript web resource is loaded, the localized values will also automatically be loaded for the user’s preferred language and the organization base language so that they are available for use. Since you should be creating solution dependencies between these resources anyway, you will have the additional benefit of knowing that the dependent RESX resources will be automatically loaded when you need them.
3634

37-
However, web resource dependencies are not limited to just RESX web resources. You can associate a JavaScript web resource to any other type of web resource to create dependencies that will cause the associated web resource to be loaded together with the JavaScript web resource. This will save time because you will not need to explicitly load multiple dependent web resources when you register a script for a form event, just register the primary script and let the dependency configuration load the rest. You can even create a chain of dependencies because any JavaScript web resources that are loaded because of the primary JavaScript web resource will include any web resources that are associated to them.
35+
However, web resource dependencies are not limited to just RESX web resources. You can associate a JavaScript web resource to any other type of web resource to create dependencies that will cause the associated web resource to be loaded together with the JavaScript web resource. This will save time because you will not need to explicitly load multiple dependent web resources when you register a script for a [form event](/powerapps/developer/model-driven-apps/clientapi/reference/events#form-events), [ribbon command](/powerapps/developer/model-driven-apps/define-ribbon-commands), or ribbon [enable rules](/powerapps/developer/model-driven-apps/define-ribbon-enable-rules), just register the primary script and let the dependency configuration load the rest. You can even create a chain of dependencies because any JavaScript web resources that are loaded because of the primary JavaScript web resource will include any web resources that are associated to them.
3836

3937
> [!IMPORTANT]
4038
> Web resource dependencies does not provide any control over the order in which the web resources are loaded. All the web resources are loaded asynchronously and in parallel. If you have a JavaScript web resource which depends on another JavaScript web resource to be loaded and initialized before it can be initialized, you will need to manage that dependency in another way.

powerapps-docs/maker/portals/configure/entity-forms.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ manager: kvivek
66
ms.service: powerapps
77
ms.topic: conceptual
88
ms.custom:
9-
ms.date: 04/09/2020
9+
ms.date: 05/07/2020
1010
ms.author: tapanm
1111
ms.reviewer:
1212
---
@@ -25,10 +25,11 @@ To view existing entity forms or to create new entity forms, open the [Portal Ma
2525

2626
When creating a new entity form, the first step is to decide the **Entity** and **Form Name** that you will be rendering, in addition to the **mode: Insert, Edit, or Read Only**. The mode selected will determine if you are creating a new record from the portal, editing an existing record, or just displaying information about a record on the portal.
2727

28-
> [!Note]
28+
> [!NOTE]
2929
> - An **Entity Form** must be associated with a webpage for a given website for the form to be viewable within the site.
30-
> - The Connection entity subgrids are not supported in entity forms. If you add a Connection entity subgrid to the form using Form designer, error messages are displayed when you render the form on the portal and use the Connection entity.
31-
> - Duplicate fields, multi-select option set, custom controls, Party List fields and business rules are not supported in entity forms.
30+
> - The Connection entity subgrids aren't supported in entity forms. If you add a Connection entity subgrid to the form using Form designer, error messages are displayed when you render the form on the portal and use the Connection entity.
31+
> - Duplicate fields, multi-select option set, custom controls, Party List fields and business rules aren't supported in entity forms.
32+
> - [Image attributes](https://docs.microsoft.com/powerapps/developer/common-data-service/image-attributes), [file attributes](https://docs.microsoft.com/powerapps/developer/common-data-service/file-attributes) and [entity images](https://docs.microsoft.com/dynamics365/customerengagement/on-premises/developer/sample-set-retrieve-entity-images) aren't supported in [entity forms](entity-forms.md), [web forms](web-form-properties.md) or when using liquid template tags, such as [fetchxl](../liquid/template-tags.md).
3233
> - Business rules and client API can enable locked fields on a read-only form.
3334
> - If you create an entity form in the Insert mode, you can't change a button's alignment or place an action button above the entity form.
3435
> - If you render a lookup control as a dropdown list on the form, the related records filter does not work.

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ manager: kvivek
66
ms.service: powerapps
77
ms.topic: conceptual
88
ms.custom:
9-
ms.date: 01/17/2020
9+
ms.date: 05/07/2020
1010
ms.author: tapanm
1111
ms.reviewer:
1212
---
@@ -16,6 +16,8 @@ ms.reviewer:
1616

1717
## General issues
1818

19+
- Rich-text for notes in timeline isn't supported by Power Apps portals. Ensure you [disable 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) when using on portals.
20+
1921
- Due to 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).
2022

2123
- The **Modified Date** for the app might be incorrect because these are pre-provisioned apps and could have been provisioned earlier.

0 commit comments

Comments
 (0)