Skip to content

Commit defa89d

Browse files
authored
Merge branch 'main' into trdehove-patch-1
2 parents a9a44d2 + 294a72a commit defa89d

File tree

10 files changed

+60
-52
lines changed

10 files changed

+60
-52
lines changed

powerapps-docs/developer/model-driven-apps/clientapi/reference/Xrm-Navigation/openAlertDialog.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: "openAlertDialog (Client API reference) in model-driven apps| MicrosoftDo
33
description: Includes description and supported parameters for the openAlertDialog method.
44
author: HemantGaur
55
ms.author: hemantg
6-
ms.date: 03/12/2022
6+
ms.date: 09/18/2023
77
ms.reviewer: jdaly
88
ms.topic: reference
99
search.audienceType:
@@ -23,17 +23,19 @@ contributors:
2323

2424
## Parameters
2525

26+
> [!NOTE]
27+
> With the *[new look](../../../../../user/modern-fluent-design.md)* enabled, dialog height will resize automatically if you don't set the **height** value of the dialog options.
28+
2629
|Name |Type |Required |Description |
2730
|---|---|---|---|
28-
|alertStrings|Object|Yes|The strings to be used in the alert dialog. The object contains the following values:<br/>- **confirmButtonLabel**: (Optional) String. The confirm button label. If you do not specify the button label, **OK** is used as the button label.<br/>- **text**: String. The message to be displayed in the alert dialog.<br/>- **title**: (Optional) String. The title of the alert dialog.|
29-
|alertOptions|Object|No|The height and width options for alert dialog. The object contains the following values:<br/>- **height**: (Optional) Number. Height of the alert dialog in pixels.<br/>- **width**: (Optional) Number. Width of the alert dialog pixels.|
30-
|successCallback|function|No|A function to execute when the alert dialog is closed by either clicking the confirm button or canceled by pressing ESC.|
31+
|alertStrings|Object|Yes|The strings to be used in the alert dialog. The object contains the following values:<br/>- **confirmButtonLabel**: (Optional) String. The confirm button label. If you don't specify the button label, **OK** is used as the button label.<br/>- **text**: String. The message to be displayed in the alert dialog.<br/>- **title**: (Optional) String. The title of the alert dialog.|
32+
|alertOptions|Object|No|The height and width options for alert dialog. The object contains the following values:<br/>- **height**: (Optional) Number. Height of the alert dialog in pixels.<br/>- **width**: (Optional) Number. Width of the alert dialog pixels.<br><br> With the *[new look](../../../../../user/modern-fluent-design.md)* enabled, dialog height resizes automatically if you don't set the **height** value of the dialog options.|
33+
|successCallback|function|No|A function to execute when the alert dialog closes either clicking the confirm button or canceled by pressing ESC.|
3134
|errorCallback|function|No|A function to execute when the operation fails.|
3235

33-
3436
## Example
3537

36-
The following sample code displays an alert dialog. Clicking **Yes** button in the alert dialog or canceling the alert dialog by pressing ESC calls the `close` function::
38+
The following sample code displays an alert dialog. Clicking **Yes** button in the alert dialog or canceling the alert dialog by pressing ESC calls the `close` function:
3739

3840
```JavaScript
3941
var alertStrings = { confirmButtonLabel: "Yes", text: "This is an alert.", title: "Sample title" };
@@ -48,7 +50,7 @@ Xrm.Navigation.openAlertDialog(alertStrings, alertOptions).then(
4850
);
4951
```
5052

51-
### Related topics
53+
### Related articles
5254

5355
[Xrm.navigation](../xrm-navigation.md)
5456

powerapps-docs/developer/model-driven-apps/clientapi/reference/Xrm-Navigation/openConfirmDialog.md

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: "openConfirmDialog (Client API reference) in model-driven apps| Microsoft
33
description: Includes description and supported parameters for the openConfirmDialog method.
44
author: HemantGaur
55
ms.author: hemantg
6-
ms.date: 03/12/2022
6+
ms.date: 09/18/2023
77
ms.reviewer: jdaly
88
ms.topic: reference
99
applies_to: "Dynamics 365 (online)"
@@ -24,10 +24,15 @@ contributors:
2424

2525
## Parameters
2626

27+
> [!NOTE]
28+
> With the *[new look](../../../../../user/modern-fluent-design.md)* enabled, dialog height will resize automatically if you don't set the **height** value of the dialog options.
29+
30+
31+
2732
|Name |Type |Required |Description |
2833
|---|---|---|---|
29-
|confirmStrings|Object|Yes|The strings to be used in the confirmation dialog. The object contains the following values:<br/>- **cancelButtonLabel**: (Optional) String. The cancel button label. If you do not specify the cancel button label, **Cancel** is used as the button label.<br/>- **confirmButtonLabel**: (Optional) String. The confirm button label. If you do not specify the confirm button label, **OK** is used as the button label.<br/>- **subtitle**: (Optional) String. The subtitle to be displayed in the confirmation dialog.<br/>- **text**: String. The message to be displayed in the confirmation dialog.<br/>- **title**: (Optional) String. The title to be displayed in the confirmation dialog.|
30-
|confirmOptions|Object|No|The height and width options for confirmation dialog. The object contains the following values:<br/>- **height**: (Optional) Number. Height of the confirmation dialog in pixels.<br/>- **width**: (Optional) Number. Width of the confirmation dialog in pixels.|
34+
|confirmStrings|Object|Yes|The strings to be used in the confirmation dialog. The object contains the following values:<br/>- **cancelButtonLabel**: (Optional) String. The cancel button label. If you don't specify the cancel button label, **Cancel** is used as the button label.<br/>- **confirmButtonLabel**: (Optional) String. The confirm button label. If you don't specify the confirm button label, **OK** is used as the button label.<br/>- **subtitle**: (Optional) String. The subtitle to be displayed in the confirmation dialog.<br/>- **text**: String. The message to be displayed in the confirmation dialog.<br/>- **title**: (Optional) String. The title to be displayed in the confirmation dialog.|
35+
|confirmOptions|Object|No|The height and width options for confirmation dialog. The object contains the following values:<br/>- **height**: (Optional) Number. Height of the confirmation dialog in pixels.<br/>- **width**: (Optional) Number. Width of the confirmation dialog in pixels. <br><br>With the *[new look](../../../../../user/modern-fluent-design.md)* enabled, dialog height resizes automatically if you don't set the **height** value of the dialog options.|
3136
|successCallback|function|No|A function to execute when the confirmation dialog is closed by clicking the confirm, cancel, or **X** in the top-right corner of the dialog. An object with the **confirmed** (Boolean) attribute is passed that indicates whether the confirm button was clicked to close the dialog.|
3237
|errorCallback|function|No|A function to execute when the operation fails.|
3338

@@ -48,7 +53,7 @@ function (success) {
4853

4954
```
5055

51-
### Related topics
56+
### Related articles
5257

5358
[Xrm.Navigation](../xrm-navigation.md)
5459

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: "setSubmitMode (Client API reference)| MicrosoftDocs"
33
description: Sets whether data from the column will be submitted when the record is saved.
44
author: HemantGaur
55
ms.author: hemantg
6-
ms.date: 03/12/2022
6+
ms.date: 09/18/2023
77
ms.reviewer: jdaly
88
ms.topic: reference
99
applies_to: "Dynamics 365 (online)"
@@ -33,9 +33,9 @@ All
3333

3434
**Description**: Set one of the following mode values:
3535

36-
- **always**: The data is always sent with a save.
37-
- **never**: The data is never sent with a save. When this value is used, the column(s) in the form for this column cannot be edited.
38-
- **dirty**: Default behavior. The data is sent with the save when it has changed.
36+
- `always`: The data is always sent with a save.
37+
- `never`: The data is never sent with a save. When this value is used, the column(s) in the form for this column cannot be edited.
38+
- `dirty`: Default behavior. The data is sent with the save when it has changed.
3939

4040
## Remarks
4141

@@ -44,7 +44,7 @@ Use this method to control when data for a column is submitted when a record is
4444
> [!NOTE]
4545
> Data in a column will always be refreshed after save operation, even if the column's submit mode is set to `never`. For example, if a column's value in the server is null and the column's submit mode is set to `never`, and the column is modified with some value by the user, after the user saves the form the column's value will be replaced with null.
4646
47-
Columns that do not get updated after the initial save of the record, such as **createdby**, are set so that they will not be submitted on save. To force a column value to be submitted whether it has changed or not, use this method with the *mode* parameter set to "always".
47+
Columns that do not get updated after the initial save of the record, such as `createdby`, are set so that they will not be submitted on save. To force a column value to be submitted whether it has changed or not, use this method with the `mode` parameter set to `always`.
4848

4949
### See also
5050
[getSubmitMode (Client API reference)](getSubmitMode.md)

powerapps-docs/maker/canvas-apps/intro-maker-portal.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -160,13 +160,13 @@ To create an app, select from the following options:
160160
> [!NOTE]
161161
> If your organization has [AI enabled](ai-overview.md) then you'll see AI assistant when you select **Start with data**. For more information, see [Build apps through conversation](ai-conversations-create-app.md).
162162
163-
- **Choose a page template**: Select the type of app you want to create. You can also use the **Filter** option located in the top-right to narrow down templates by app type or features, such as offline use, responsive design, or embed into other Microsoft 365 products. More information: [Overview of creating apps in Power Apps](../index.md)
164-
- **Pick an app template**: Choose from an app template including, data-centered templates for mobile apps. More information: [Create a canvas app from a template](get-started-test-drive.md)
163+
- **Start with a page design**: Select the type of app you want to create. You can also use the **Filter** option located in the top-right to narrow down templates by app type or features, such as offline use, responsive design, or embed into other Microsoft 365 products. More information: [Overview of creating apps in Power Apps](../index.md)
164+
- **Start with an app template**: Choose from an app template including, data-centered templates for mobile apps. More information: [Create a canvas app from a template](get-started-test-drive.md)
165165

166166
> [!NOTE]
167167
> If you're trying to create an app using Dataverse but the option is unavailable, then review the [permissions table](#permissions-for-dataverse) below.
168168
169-
Furthermore, you can locate your top six apps under **Your apps**. You have the option to filter and sort them to quickly find the app you're searching for. Use the **Commands** button to perform various actions such as editing the app, viewing app details, and accessing settings.
169+
- **Your apps** or **My apps**: Find your top six apps. You have the option to filter and sort them to quickly find the app you're searching for. Use the **Commands** button to perform various actions such as editing the app, viewing app details, and accessing settings.
170170

171171

172172
### Permissions for Dataverse

0 commit comments

Comments
 (0)