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
Copy file name to clipboardExpand all lines: powerapps-docs/developer/component-framework/reference/context.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -70,7 +70,7 @@ The resource interface of `context.resource`
70
70
71
71
### updatedProperties
72
72
73
-
An array of strings indicated which values have changed on the context object since the last time it was passed to this component.
73
+
An array of strings with values that have changed since the last time it was passed and [parameters](#parameters). `updatesProperties` is currently only supported for model-driven apps and always returns empty string for canvas apps.
## Access the ribbon definitions for your organization
27
23
28
-
If the Ribbon for your organization has been modified, you should export the current definitions if you intend to work with the customized ribbon elements. To do this, use the exportribbonxml sample located at `SampleCode\CS\Client\Ribbon\ExportRibbonXml`.
24
+
If the Ribbon for your organization has been modified, you should export the current definitions if you intend to work with the customized ribbon elements. To do this, use the [Export Ribbon xml](https://github.com/microsoft/PowerApps-Samples/tree/master/cds/orgsvc/C%23/ExportRibbonDefinitions) sample.
29
25
30
-
<aname="BKMK_AccessDefaultRibbonData"></a>
31
-
32
26
## Access the default ribbon data
33
27
34
-
The default ribbon definitions for Model-driven apps can be downloaded from [Microsoft Downloads: ExportedRibbonXml.zip](https://download.microsoft.com/download/C/2/A/C2A79C47-DD2D-4938-A595-092CAFF32D6B/ExportedRibbonXml.zip).
28
+
The default ribbon definitions for model-driven apps can be downloaded from [Microsoft Downloads: ExportedRibbonXml.zip](https://download.microsoft.com/download/C/2/A/C2A79C47-DD2D-4938-A595-092CAFF32D6B/ExportedRibbonXml.zip).
35
29
36
30
The applicationRibbon.xml file contains the definition of the core application ribbons.
37
31
@@ -48,6 +42,7 @@ To effectively define changes to the default RibbonXml, you must be able to refe
48
42
### Decompress the ribbon data
49
43
50
44
The ribbon data is exported as a compressed file. To decompress the file into XML you have to use the [System.IO.Packaging.ZipPackage](https://msdn.microsoft.com/library/system.io.packaging.zippackage.aspx) class. The following example is a helper method used in the SDK sample to decompress the file.
45
+
51
46
```C#
52
47
/// <summary>
53
48
/// A helper method that decompresses the Ribbon data returned
@@ -78,10 +73,11 @@ public byte[] unzipRibbon(byte[] data)
78
73
### Retrieve the application ribbon data
79
74
80
75
The application ribbon can be retrieved using the <xref:Microsoft.Crm.Sdk.Messages.RetrieveApplicationRibbonRequest> as shown in the following sample.
To retrieve the ribbon definition for entities, you can just include the name of the entity as a parameter to the <xref:Microsoft.Crm.Sdk.Messages.RetrieveEntityRibbonRequest>.
93
89
94
90
To retrieve the ribbon definitions for all entities that support the ribbon you need a list of those system entities that have ribbon definitions that vary from the entity ribbon template. The following sample shows an array of all the system entities that have ribbon definitions.
91
+
95
92
```C#
96
93
//This array contains all of the system entities that use the ribbon.
Any custom entities also support ribbon customizations. To get a list of custom entities, use the <xref:Microsoft.Xrm.Sdk.Messages.RetrieveAllEntitiesRequest> and retrieve the names of custom entities. The following sample shows how to retrieve ribbon definitions for all custom entities.
190
+
```
191
+
Any custom entities also support ribbon customizations. To get a list of custom entities, use the <xref:Microsoft.Xrm.Sdk.Messages.RetrieveAllEntitiesRequest> and retrieve the names of custom entities. The following sample shows how to retrieve ribbon definitions for all custom entities.
Copy file name to clipboardExpand all lines: powerapps-docs/developer/model-driven-apps/open-forms-views-dialogs-reports-url.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -181,12 +181,12 @@ function openDialogProcess(dialogId, entityName, objectId)
181
181
Two possible values for this parameter are `run` or `filter`. When `run` is used, the report will be displayed using the default filters. When `filter` is used, the report will display a filter that the user can edit before choosing the **Run Report** button to view the report.
182
182
183
183
**helpID**
184
-
This parameter is optional. For reports that are included with Model-driven apps the value in this parameter allows the **Help** button to display appropriate content about this report when **Help on This Page** is chosen. The value should correspond to the report `FileName` attribute value.
184
+
This parameter is optional. For reports that are included with model-driven apps the value in this parameter allows the **Help** button to display appropriate content about this report when **Help on This Page** is chosen. The value should correspond to the report `FileName` attribute value.
185
185
186
186
**id**
187
187
This parameter is the report `ReportId` attribute value.
188
188
189
-
The following examples show URLs that can be used to open reports in MDA.
189
+
The following examples show URLs that can be used to open reports in model-driven apps.
190
190
191
191
Open the **Neglected Cases** report using the default filter:
> We recommend that you use the entity name instead of the entity type code because the entity type code may be different between MDA installations.
45
+
> We recommend that you use the entity name instead of the entity type code because the entity type code may be different between model-driven apps installations.
46
46
47
47
### Example
48
48
The following sample shows the URL without parameters:
Copy file name to clipboardExpand all lines: powerapps-docs/developer/model-driven-apps/ribbons-available.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -32,7 +32,7 @@ When you write your change definitions, you will frequently need to reference th
32
32
33
33
Because of this requirement to reference the definitions of existing ribbon elements, it is very important to understand the current ribbon definitions in your organization. There are two messages you can use to export XML files representing the current state of your ribbons. These definitions include any customizations that have already been applied to your system so that you can customize any custom ribbons that were previously applied. For more information, see [Export Ribbon Definitions](export-ribbon-definitions.md).
34
34
35
-
To help you get started, you can download the default ribbon definitions for MDA from [Microsoft Downloads: ExportedRibbonXml.zip](https://download.microsoft.com/download/C/2/A/C2A79C47-DD2D-4938-A595-092CAFF32D6B/ExportedRibbonXml.zip). The ExportedRibbonXml.zip file includes the output files you would have for an organization with a ribbon that has not been customized. You don’t need to run the sample application to export this data. If you have a customized ribbon, you should run the sample application to refresh the files in this folder with any customizations previously applied for your organization.
35
+
To help you get started, you can download the default ribbon definitions for model-driven apps from [Export Ribbon Definitions sample](https://github.com/microsoft/PowerApps-Samples/tree/master/cds/orgsvc/C%23/ExportRibbonDefinitions). `The ExportedRibbonXml` file includes the output files you would have for an organization.
36
36
37
37
Within the exported ribbon XML files, the applicationRibbon.xml file includes all the ribbons that are not defined for a specific entity. These correspond to the **Application Ribbons** solution component. For each entity, you will find an *entity name*ribbon.xml file. This corresponds to the `RibbonDiffXml` that is included in each entity. If you want to edit the ribbon for a specific entity, you should locate the ribbon XML file for that entity.
38
38
@@ -131,7 +131,7 @@ All entities use a common ribbon definition called the *Entity Ribbon Template*.
131
131
132
132
<aname="BKMK_BasicHomeTab"></a>
133
133
## Basic home tab
134
-
The basic home tab is displayed on the main application ribbon whenever an alternative tab is not defined because of entity context or a display rule that suppresses it for specific pages. For example, this tab is displayed when you view the MDA**Help**. The Id of the basic home tab is `Mscrm.BasicHomeTab`.
134
+
The basic home tab is displayed on the main application ribbon whenever an alternative tab is not defined because of entity context or a display rule that suppresses it for specific pages. For example, this tab is displayed when you view the model-driven apps **Help**. The Id of the basic home tab is `Mscrm.BasicHomeTab`.
135
135
136
136
<!-- [!NOTE]-->
137
137
<!-- > The Jewel that was shown in [!INCLUDE[pn_crm2011_and_online](../../includes/pn-crm2011-and-online.md)] is no longer displayed. Changes to the Jewel will not appear in [!INCLUDE[pn_dynamics_crm_online](../../includes/pn-dynamics-crm-online.md)] -->
@@ -148,7 +148,7 @@ All entities use a common ribbon definition called the *Entity Ribbon Template*.
148
148
149
149
<aname="other_ribbons"></a>
150
150
## Other ribbons
151
-
Several other special purpose ribbon tabs and a contextual group are defined by MDA.
151
+
Several other special purpose ribbon tabs and a contextual group are defined by model-driven apps.
152
152
Each tab is associated with a specific `<TabDisplayRule>` that controls when they will display. The following table lists these tabs.
Copy file name to clipboardExpand all lines: powerapps-docs/developer/model-driven-apps/sample-charts.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -86,7 +86,7 @@ This topic contains sample charts along with the respective data description and
86
86
87
87
<aname="BarChart"></a>
88
88
## Bar Chart
89
-
The following is a bar chart that shows the top 10 customers. This is one of the default charts available in MDA for the `Opportunity` entity.
89
+
The following is a bar chart that shows the top 10 customers. This is one of the default charts available in model-driven apps for the `Opportunity` entity.
90
90
91
91

92
92
@@ -206,7 +206,7 @@ This topic contains sample charts along with the respective data description and
206
206
207
207
<aname="LineChart"></a>
208
208
## Line Chart
209
-
The following is a line chart that shows the number of leads generated in the last five months. This is one of the default charts available in MDA for the `Lead` entity.
209
+
The following is a line chart that shows the number of leads generated in the last five months. This is one of the default charts available in model-driven apps for the `Lead` entity.
210
210
211
211
 -->
212
212
@@ -263,7 +263,7 @@ This topic contains sample charts along with the respective data description and
263
263
264
264
<aname="PieChart"></a>
265
265
## Pie Chart
266
-
The following is a pie chart that shows the total number of leads and their importance. This is one of the default charts available in MDA for the `Lead` entity.
266
+
The following is a pie chart that shows the total number of leads and their importance. This is one of the default charts available in model-driven apps for the `Lead` entity.
267
267
268
268

269
269
@@ -317,7 +317,7 @@ This topic contains sample charts along with the respective data description and
317
317
318
318
<aname="FunnelChart"></a>
319
319
## Funnel Chart
320
-
The following is a funnel chart that shows the sum of estimated revenue in each stage of the sales pipeline. This is one of the default charts available in MDA for the `Opportunity` entity.
320
+
The following is a funnel chart that shows the sum of estimated revenue in each stage of the sales pipeline. This is one of the default charts available in model-driven apps for the `Opportunity` entity.
@@ -373,7 +373,7 @@ This topic contains sample charts along with the respective data description and
373
373
374
374
## Multi-Series Chart
375
375
376
-
The following is a multi-series chart that shows the estimated vs. actual revenue closed by month. You can use the chart designer in MDA or methods described in the developer documentation to create these types of charts.
376
+
The following is a multi-series chart that shows the estimated vs. actual revenue closed by month. You can use the chart designer in model-driven apps or methods described in the developer documentation to create these types of charts.
377
377
378
378
A multi-series chart has multiple `<measurecollection>` elements in the data description, each mapping to the corresponding `<Series>` element in the presentation description XML string.
379
379
@@ -452,7 +452,7 @@ This topic contains sample charts along with the respective data description and
452
452
453
453
<aname="ComparisonChart"></a>
454
454
## Comparison Chart (Stacked Chart)
455
-
The following is a comparison chart that shows the number of activities by type and priority. You can use the chart designer in MDA or methods described in the developer documentation to create these types of charts.
455
+
The following is a comparison chart that shows the number of activities by type and priority. You can use the chart designer in model-driven apps or methods described in the developer documentation to create these types of charts.
456
456
457
457
A comparison chart has two `groupby` clauses in the data description XML.
458
458
@@ -519,7 +519,7 @@ This topic contains sample charts along with the respective data description and
519
519
520
520
## Comparison Chart (100% Stacked Chart)
521
521
522
-
The following is a comparison chart that shows the number of cases opened on any date, grouped by priority. You can use the chart designer in MDA or methods available in the Web Services to create these types of charts.
522
+
The following is a comparison chart that shows the number of cases opened on any date, grouped by priority. You can use the chart designer in model-driven apps or methods available in the Web Services to create these types of charts.
523
523
524
524
A comparison chart has two `groupby` clauses in the data description XML.
0 commit comments