Skip to content

Commit 38e0c34

Browse files
committed
Fixing orthography
1 parent d6fc160 commit 38e0c34

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# AB Dialogs
2-
AB Dialogs is a managed solution that provides developer a configurable wrapper and convenient way to open dialogs in new UCI interface of Dataverse and process results of the call.
2+
AB Dialogs is a managed solution that provides the developer a configurable wrapper and convenient way to open dialogs in the new UCI interface of Dataverse and process results of the call.
33

4-
Here is the list of steps you need to perform in order to use this dialog in your Model Driven Apps:
5-
1. Download and install the latest release of ABDialog solution
6-
1. Add the reference to "ab_/Dialogs/Dialog.js" webresource to the place where you plan to call the dialog from:
4+
Here is the list of steps you need to perform in order to use this dialog in your Model-Driven Apps:
5+
1. Download and install the latest release of ABDialogs solution
6+
1. AAdd the reference to the "ab_/Dialogs/Dialog.js" webresource to the place where you plan to call the dialog from:
77
* When you plan to use it in the form scripts, just add the reference as a regular JavaScript webresource
88
* When you plan to use it in the ribbon scripts, add the reference to the webresource before using it in your code using "Custom JavaScript" Enable Rule
99
1. Prepare your "Dialog Configuration" object that has the following structure:
@@ -55,7 +55,7 @@ interface ChoiceValue {
5555
}
5656
```
5757
Call **AB.Dialogs.open** function to open the dialog. This function returns the promise.
58-
When user closes dialog using "X" button or "Cancel" button, promise is resolved with **null** value and returns the object with all values selected in dialog otherwise.
58+
When a user closes the dialog using the "X" button or "Cancel" button, the promise is resolved with **null** value and returns the object with all values selected in dialog otherwise.
5959

6060
Here is an example of JavaScript webresource that is used to show 2-Tabs Dialog with 2 inputs each:
6161

@@ -115,7 +115,7 @@ AB.DialogDemo = (function () {
115115
})();
116116
```
117117

118-
If user leaves text and datetime field unchanged, sets the boolean field to true and selects "Option 2" and "Option 3" in choices control here is the object that will be returned to the callback:
118+
If a user leaves text and datetime field unchanged, sets the boolean field to true and selects "Option 2" and "Option 3" in choices control here is the object that will be returned to the callback:
119119
```json
120120
{
121121
"text1": "Initial Value of Text Field",

0 commit comments

Comments
 (0)