Skip to content

Commit b250e63

Browse files
authored
Live publish for 24 January 2020.
2 parents ba2d37d + 4f9a16f commit b250e63

File tree

8 files changed

+94
-8
lines changed

8 files changed

+94
-8
lines changed

powerapps-docs/developer/common-data-service/file-attributes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ A file attribute is used for storing file data up to a specified maximum size. A
2121

2222
Web API (REST) | .NET API (SOAP)
2323
------- | -------
24-
[FieAttributeMetadata](/dynamics365/customer-engagement/web-api/fileattributemetadata) | <xref:Microsoft.Xrm.Sdk.Metadata.FileAttributeMetadata>
24+
FileAttributeMetadata | <xref:Microsoft.Xrm.Sdk.Metadata.FileAttributeMetadata>
2525

2626
For information about types of files that are not allowed, see [System Settings General tab](/power-platform/admin/system-settings-dialog-box-general-tab) under the **Set blocked file extensions for attachments** setting.
2727

powerapps-docs/developer/model-driven-apps/clientapi/reference/attributes/getMin.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
---
2-
title: "getMax (Client API reference)| MicrosoftDocs"
3-
ms.date: 10/31/2018
2+
title: "getMin (Client API reference)| MicrosoftDocs"
3+
ms.date: 01/24/2019
44
ms.service: powerapps
55
ms.topic: "reference"
6-
applies_to: "Dynamics 365 (online)"
76
ms.assetid: 9a04b52a-2bc7-4572-bd3e-8b9622602092
87
author: "KumarVivek"
98
ms.author: "kvivek"
@@ -14,7 +13,7 @@ search.app:
1413
- PowerApps
1514
- D365CE
1615
---
17-
# getMax (Client API reference)
16+
# getMin (Client API reference)
1817

1918

2019

powerapps-docs/maker/TOC.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -352,6 +352,8 @@
352352
href: ./canvas-apps/controls/control-shapes-icons.md
353353
- name: Slider
354354
href: ./canvas-apps/controls/control-slider.md
355+
- name: Stream Video
356+
href: ./canvas-apps/controls/control-stream-video.md
355357
- name: Label
356358
href: ./canvas-apps/controls/control-text-box.md
357359
- name: Text input

powerapps-docs/maker/canvas-apps/reference-properties.md

Lines changed: 3 additions & 1 deletion
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-msft
10-
ms.date: 11/26/2019
10+
ms.date: 01/24/2020
1111
ms.author: fikaradz
1212
search.audienceType:
1313
- maker
@@ -94,6 +94,8 @@ Configure the appearance and behavior of a control by setting one of its propert
9494

9595
**[Slider](controls/control-slider.md)** – Specify a value by dragging a handle.
9696

97+
**[Stream Video](controls/control-stream-video.md)** – Play videos and browse through channels from the Microsoft Stream service.
98+
9799
**[Label](controls/control-text-box.md)** – Shows data such as text, numbers, dates, or currency,
98100

99101
**[Text input](controls/control-text-input.md)** – Type text, numbers, and other data.

powerapps-docs/maker/portals/faq.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -223,6 +223,15 @@ When you enable diagnostic logging, you can search for particular errors that us
223223

224224
## Portal administration and management
225225

226+
### Do portals use any static content from CDNs (Content Delivery Network) that I need to whitelist?
227+
228+
Yes. Power Apps portals uses out of the box portal's static assets from Azure CDN that includes default JavaScript and CSS files for presentation that earlier rendered as part of the portal app. You must whitelist the following CDN URL to render portals successfully:
229+
230+
https://content.powerapps.com/resource/powerappsportal
231+
232+
> [!NOTE]
233+
> Power Apps portals hosted in Microsoft Government Cloud do not use CDN.
234+
226235
### How do I use a custom login provider on my portal?
227236

228237
Portals supports any custom login provider that provides support for standard authentication protocols. We support OpenIdConnect, SAML2, and WS-Federation protocols for any custom IDP. OAuth 2 is supported only for a fixed set of known IDPs. For more information on how to set up an IDP configuration, see [Configure portal authentication](configure/configure-portal-authentication.md).

powerapps-docs/maker/portals/liquid/template-tags.md

Lines changed: 67 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: 10/07/2019
9+
ms.date: 01/24/2020
1010
ms.author: tapanm
1111
ms.reviewer:
1212
---
@@ -15,6 +15,72 @@ ms.reviewer:
1515

1616
Template tags control the output of a template in various ways, and allow the combination of multiple templates into a single output.
1717

18+
## fetchxml
19+
20+
Allows user to query data from CDS and render the results in a page.
21+
22+
> [!NOTE]
23+
> You can learn more about querying the data using fetchxml at [use FetchXML to query data](https://docs.microsoft.com/powerapps/developer/common-data-service/use-fetchxml-construct-query).
24+
25+
```
26+
{% fetchxml resultVariable %}
27+
<!— Fetchxml query -->
28+
...
29+
{% endfetchxml %}
30+
```
31+
32+
### Results attribute
33+
34+
Results attribute in provided variable (such as 'resultVariable' in above sample) holds FetchXML query results and a few other attributes.
35+
36+
- *Entities*
37+
38+
This attribute contains the result of fetchxml query. You can iterate the result and use it in your webtemplate.
39+
40+
```
41+
<table>
42+
{% for entityVariable in resultVariable.results.entities %}
43+
<tr>
44+
<td>Attribut-1: {{ entityVariable.attribute1 }}</td>
45+
<td>Attribut-2: {{ entityVariable.attribute2 }}</td>
46+
</tr>
47+
{% endfor %}
48+
</table>
49+
```
50+
51+
- *EntityName*
52+
53+
Gets the logical name of the entity.
54+
55+
- *ExtensionData*
56+
57+
Gets the structure that contains extra data.
58+
59+
- *MinActiveRowVersion*
60+
61+
Gets the lowest active row version value.
62+
63+
- *MoreRecords*
64+
65+
Gets whether there are more records available.
66+
67+
- *PagingCookie*
68+
69+
Gets the current paging information.
70+
71+
- *TotalRecordCount*
72+
73+
Gets the total number of records in the collection. <br/>
74+
ReturnTotalRecordCount was true when the query was executed.
75+
76+
- *TotalRecordCountLimitExceeded*
77+
78+
Gets whether the results of the query exceeds the total record count.
79+
80+
### XML attribute
81+
82+
XML attribute in provided variable (such as 'resultVariable' in above sample) holds the resultant query which can be used to get data from Common Data Service. This attribute is useful for debugging purpose when you want to understand how entity permission is getting applied on this *fetchxml* tag.
83+
1884
## include
1985
2086
Includes the contents of one template in another, by name. In Power Apps portals, the source of this other template will generally be a [web template](store-content-web-templates.md). This allows for the reuse of common template fragments in multiple places.
Loading

powerapps-docs/maker/portals/oauth-implicit-grant-flow.md

Lines changed: 9 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: 10/07/2019
9+
ms.date: 01/24/2020
1010
ms.author: tapanm
1111
ms.reviewer:
1212
---
@@ -17,6 +17,14 @@ This feature allows a customer to make client-side calls to external APIs and se
1717

1818
OAuth 2.0 implicit grant flow supports endpoints that a client can call to get an ID token. Two endpoints are used for this purpose: [authorize](#authorize-endpoint-details) and [token](#token-endpoint-details).
1919

20+
> [!NOTE]
21+
> Power Apps portals supports following OpenIdConnect flows and response types:
22+
>
23+
> - **Implicit Flow** with response types *id_token* or *id_token token*.
24+
> - **Hybrid Flow** with response type *code id_token*.
25+
>
26+
> **Authorization Code Flow** with response type *code* is **not supported**. For more information, read [OpenID Connect](https://openid.net/specs/openid-connect-core-1_0.html#Authentication) documentation for authentication.
27+
2028
## Authorize endpoint details
2129

2230
The URL for authorize endpoint is: `<portal_url>/_services/auth/authorize`. The authorize endpoint supports the following parameters:

0 commit comments

Comments
 (0)