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
DateTimeZoneUtils = { | |
/** | |
* This is a method to get the current Date/Time | |
* based on the time zone offset specified. | |
* | |
* @param timeZoneOffSet {Number} - The time zone offset. | |
* | |
* @returns {Date} date - The Date/Time Object based on the time zone offset specified. | |
*/ | |
getCurrentDateTime: function (timeZoneOffSet) { |
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
/* | |
* This is the external URL of the Suitelet we've created on Part 3 of this tutorial. | |
*/ | |
var CAPTCHA_VERIFICATION_SUITELET_URL = 'https://forms.na1.netsuite.com/app/site/hosting/scriptlet.nl?script=89&deploy=1&compid=TSTDRV262509&h=cd6d5783f52fba53b0f3'; | |
/** | |
* Executes when the user clicks the Submit button. | |
* @returns {Boolean} True to continue save, false to abort save | |
*/ |
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
var CAPTCHA_VERIFICATION_URL = 'https://www.google.com/recaptcha/api/verify'; //This is the verification URL | |
var CAPTCHA_PRIVATE_KEY = '6Lf1-OASAAAAAFkwdm0fLSAPErgLRw54VzF4aPrO'; //This is the private key we've obtained from Part 1 of this tutorial | |
/** | |
* | |
* @param {nlobjRequest} request Request object | |
* @param {nlobjResponse} response Response object | |
* @returns {Void} Any output is written via response object | |
*/ |
NewerOlder