Skip to content

Commit 5a66913

Browse files
committed
Updating
1 parent 99ec520 commit 5a66913

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

powerapps-docs/developer/model-driven-apps/clientapi/clientapi-form-context.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ reference)](reference/collections.md).
103103
|**formContext.ui.navigation.**[items](reference/formContext-ui-navigation.md)|The **formContext.ui.navigation.items** collection provides access to navigation items that are defined using the navigation area of the form editor. People navigate to these using the command bar.|
104104
| **formContext.ui.**[quickForms](reference/formContext-ui-quickForms.md) | Provides methods to access all the quick view controls and its constituent controls on the Customer Enagagement forms.| **Xrm.Page.ui.tabs** collection provides access to each of these tabs.|
105105
| **formContext.ui.**[tabs](reference/formContext-ui-tabs.md) | You can organize each form by using one or more tabs. This collection provides access to each of these tabs.|
106-
| **formContext.ui.tabs.**[sections](reference/formContext-ui-sections.md) | You can organize each form tab by using one or more sections. The tab **sections** collection provides access to each of these sections.|
106+
| **formContext.ui.tabs.**[sections](reference/formContext-ui-sections.md) | You can organize each form tab by using one or more sections. The tab **sections** collection provides access to each of these sections. You need to define the tab which contains the desired section or iterate through each tab to find the relevant section.|
107107

108108

109109

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ The following sample code displays an alert dialog. Clicking **Yes** button in t
4141
var alertStrings = { confirmButtonLabel: "Yes", text: "This is an alert.", title: "Sample title" };
4242
var alertOptions = { height: 120, width: 260 };
4343
Xrm.Navigation.openAlertDialog(alertStrings, alertOptions).then(
44-
function success(result) {
44+
function (success) {
4545
console.log("Alert dialog closed");
4646
},
4747
function (error) {

powerapps-docs/developer/model-driven-apps/clientapi/reference/formContext-data/save.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ You can also set an object to control how appointment, recurring appointment, or
3333
|successCallback|Function|No|A function to call when the operation succeeds.|
3434
|errorCallback|Function|No|A function to call when the operation fails. An object with the following properties will be passed:<br/><br/>- **errorCode**: Number. The error code.<br/><br/>- **message**: String. A localized error message.|
3535

36-
[!NOTE]
36+
> [!NOTE]
3737
> When working with forms, and you call the `formContext.data.save` method, make sure that you also call the [preventDefault](../save-event-arguments/preventDefault.md) to ensure that any default save operation is not triggered when a user saves the form.
3838
3939

0 commit comments

Comments
 (0)