Javascript Submit PDF FOrm Hide Response
Hi,
We are using the below Javascript code to Submit the whole pdf to the server.
try {
this.submitForm(
{
cURL:'{URL}',
cSubmitAs: 'PDF'
});
}
catch(e) {
app.alert({
cMsg: 'Save Failed'});
}
Currently we are returning the server reponse as application/vnd.fdf format which is causing trust issue.
The FDF response is showing trust issue in Abode.

We also tried plain text return from Server (like "Save Successful"). But in Abode we are getting empty alert.

Is it possible to hide the submit response in abode so that the end user will not get trust issue or empty popup?
