Tumi-tumz
(Donald Mphuloane)
August 29, 2018, 10:23am
1
Hi
I have forms published on web pages and since this morning I am getting the "Something went wrong. Try again later" message even when I try open the forms in "Preview Mode". Out of all my forms, only one works as should. Please see below screenshot:
jusper
(Dmitry Kozlov)
August 29, 2018, 12:10pm
2
Could you provide ID of your form? You can send it to support@plumsail.com
jusper
(Dmitry Kozlov)
August 29, 2018, 12:12pm
3
Also, please, try to completely clear the browser cache.
Tumi-tumz
(Donald Mphuloane)
August 29, 2018, 12:34pm
4
Hi @jusper
I will Message it to you now.
I am getting the same error too.
Here’s my form load code:
if (item) {
return item.get()
.then(function (item) {
if (item.Form_x0020_Approval_x0020_Status == ‘Pending Final Review’) {
return ‘64daab8e-ed32-4b1d-ac6d-351274722b8b’
console.log("Form Approval Status "+item.Form_x0020_Approval_x0020_Status);
} else if (item.Form_x0020_Approval_x0020_Status == ‘Complete’) {
return ‘8ec529ad-581a-4a94-b08d-15bd50cbcc26’
console.log("Form Approval Status "+item.Form_x0020_Approval_x0020_Status);
}
});
}