Created
November 6, 2017 14:47
-
-
Save cgillis-aras/1bd73a9be05c6328552da1bcd2958c4d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// The field on the form is called "name". We are getting that value to return. | |
var usersName = getFieldByName("name").getElementsByTagName("input")[0].value; | |
result = top.aras.newObject(); | |
result.usersName = usersName; | |
parent.args.dialog.result = result; | |
parent.args.dialog.close(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment