Expand my Community achievements bar.

Dive into Adobe Summit 2024! Explore curated list of AEM sessions & labs, register, connect with experts, ask questions, engage, and share insights. Don't miss the excitement.

Javascript for SubmitAs property.

Avatar

Former Community Member
Hello



I have a PDF form with a Submit button property. the control type is "Submit" for this button and I have provided a URL and have set the property to "URL encoded Data(HTTP Post) and Data Encoding to UTF-8.



I am not able to write a Click event "this.access="readOnly" for this button to disable the button on Submit. So I decided to change the control type of the button to "Regular" to write the entire click event.



/*

event.target.submitForm({cURL:"http://localhost:8080/servlet-name/"})

this.access="readOnly";

*/



The problem is, how do I mention the submit as property to URL encoded Data and Data Encoding to UTF-8 in my code.
2 Replies

Avatar

Former Community Member
You can not write code on a submit button.....so create your submit button as normal then make it invisible. Then create a new regular button (which you can code against) and then you can write the commands on the click event:



realsubmitbuttonname.execEvent("click");

this.access = "readOnly"