Skip to content

Commit 34cd01c

Browse files
authored
Merge branch 'main' into patch-6
2 parents 96f8ef7 + 2ce084c commit 34cd01c

File tree

733 files changed

+10357
-4770
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

733 files changed

+10357
-4770
lines changed

.acrolinx-config.edn

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{:allowed-branchname-matches ["^master$"]
1+
{:allowed-branchname-matches ["^main$"]
22
:allowed-filename-matches ["powerapps-docs"]
33
:guidance-profile "dc59e3ef-24fd-46d7-9156-0491aaae6bef" ;; Profile ID for "BAG-specific"
44
:use-skip-label true

.openpublishing.publish.config.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,13 +71,13 @@
7171
{
7272
"path_to_root": "_themes",
7373
"url": "https://github.com/Microsoft/templates.docs.msft",
74-
"branch": "master",
74+
"branch": "main",
7575
"branch_mapping": {}
7676
},
7777
{
7878
"path_to_root": "_themes.pdf",
7979
"url": "https://github.com/Microsoft/templates.docs.msft.pdf",
80-
"branch": "master",
80+
"branch": "main",
8181
"branch_mapping": {}
8282
},
8383
{
@@ -104,7 +104,7 @@
104104
"Publish",
105105
"PDF"
106106
],
107-
"master": [
107+
"main": [
108108
"Publish",
109109
"PDF"
110110
],

.openpublishing.redirection.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
{
22
"redirections": [
3+
{
4+
"source_path": "powerapps-docs/maker/model-driven-apps/optimize-form-performance.md",
5+
"redirect_url": "design-performant-forms",
6+
"redirect_document_id": "false"
7+
},
38
{
49
"source_path": "powerapps-docs/maker/model-driven-apps/page-data-connectors.md",
510
"redirect_url": "../canvas-apps/connections-list",

app-selector2.png

-35.1 KB
Binary file not shown.

clear_filter.png

-73.1 KB
Binary file not shown.

embed-power-bi-tile-features.png

-49.1 KB
Binary file not shown.

offline-apps.md

Lines changed: 0 additions & 234 deletions
This file was deleted.
Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
---
2+
title: ControlAttributes in Microsoft Dataverse| Microsoft Docs
3+
description: Attributes of control that necessary for formatting.
4+
keywords:
5+
ms.author: nabuthuk
6+
manager: kvivek
7+
author: nkrb
8+
ms.date: 11/23/2021
9+
ms.service: "powerapps"
10+
ms.suite: ""
11+
ms.tgt_pltfrm: ""
12+
ms.topic: "article"
13+
ms.assetid: ad8659f7-f566-43db-bed1-c8484c114a59
14+
---
15+
16+
# ControlAttributes
17+
18+
[!INCLUDE [ControlAttributes-description](includes/controlattributes-description.md)]
19+
20+
## Available for
21+
22+
Model-driven and canvas apps
23+
24+
## Properties
25+
26+
### Type
27+
28+
The column type.
29+
30+
**Type**: `[ControlAttributesType](../controlattributestype.md) | string`
31+
32+
### Precision
33+
34+
The precision of the column.
35+
36+
**Type**: `number`
37+
38+
### PrecisionSource
39+
40+
The precision source of the column.
41+
42+
**Type**: `[MoneyPrecisionSource](./moneyprecisionsource.md)`
43+
44+
### Format
45+
46+
The format of the string column.
47+
**Type**: `string`
48+
49+
### Behavior
50+
51+
The behavior of the datetime column.
52+
**Type**: `[DateTimeFieldBehavior](./DateTimeFieldBehavior.md)`
53+
54+
### OptionSet
55+
56+
The optionset/choice object of this column.
57+
**Type**: `[OptionDescriptor](./optiondescriptor.md)`
58+
59+
### Related topics
60+
61+
[Power Apps component framework API reference](../reference/index.md)<br/>
62+
[Power Apps component framework overview](../overview.md)
63+
64+
[!INCLUDE[footer-include](../../../includes/footer-banner.md)]
Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
---
2+
title: ControlAttributesType in Microsoft Dataverse| Microsoft Docs
3+
description: Enumeration of control attribute type.
4+
keywords:
5+
ms.author: nabuthuk
6+
manager: kvivek
7+
author: nkrb
8+
ms.date: 11/04/2021
9+
ms.service: "powerapps"
10+
ms.suite: ""
11+
ms.tgt_pltfrm: ""
12+
ms.topic: "article"
13+
ms.assetid: ad8659f7-f566-43db-bed1-c8484c114a59
14+
---
15+
16+
# ControlAttributesType
17+
18+
[!INCLUDE [ControlAttributesType-description](includes/controlattributestype-description.md)]
19+
20+
## Available for
21+
22+
Model-driven and canvas apps
23+
24+
## Values
25+
26+
| Value | Description |
27+
| --------------------- | ------------------- |
28+
| 'money' | money |
29+
| 'double' | double |
30+
| 'decimal' | decimal |
31+
| 'float' | float |
32+
| 'datetime' | datetime |
33+
| 'integer' | integer |
34+
| 'picklist' | picklist/choice |
35+
| 'state' | state |
36+
| 'status' | status |
37+
| 'boolean' | boolean |
38+
| 'string' | string |
39+
| 'lookup' | lookup |
40+
| 'memo' | memo |
41+
| 'multiselectpicklist' | multiselectpicklist/choices |
42+
43+
### Related topics
44+
45+
[Power Apps component framework API reference](../reference/index.md)<br/>
46+
[Power Apps component framework overview](../overview.md)
47+
48+
[!INCLUDE[footer-include](../../../includes/footer-banner.md)]
Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
---
2+
title: DataProviderCapabilities | Microsoft Docs
3+
description: Provides methods to use dataset capabilities.
4+
keywords:
5+
ms.author: nabuthuk
6+
author: Nkrb
7+
manager: kvivek
8+
ms.date: 12/13/2021
9+
ms.service: "powerapps"
10+
ms.suite: ""
11+
ms.tgt_pltfrm: ""
12+
ms.topic: "article"
13+
ms.assetid: 8907f07a-ad45-47e4-a503-8eaae9bba5f7
14+
---
15+
16+
# DataProviderCapabilities
17+
18+
Provides access to all the properties of a file.
19+
20+
## Available for
21+
22+
Canvas apps
23+
24+
## Properties
25+
26+
### isEditable
27+
28+
If the data provider has edit capabilities.
29+
30+
**Type**: `boolean`
31+
32+
### isFilterable
33+
34+
If the dataset can be filtered.
35+
36+
**Type**: boolean
37+
38+
### isSortable
39+
40+
If the dataset can be sorted.
41+
42+
**Type**: `boolean`
43+
44+
### canPaginate
45+
46+
If the dataset records can be paged.
47+
48+
**Type**: `boolean`
49+
50+
### canCreateNewRecords
51+
52+
Whether adding new records is supported or not.
53+
54+
**Type** `boolean`
55+
56+
## Related topics
57+
58+
[Power Apps component framework API reference](../reference/index.md)<br/>
59+
[Power Apps component framework overview](../overview.md)
60+
61+
[!INCLUDE[footer-include](../../../includes/footer-banner.md)]

0 commit comments

Comments
 (0)