Hi All,
What I am trying to do is create SAVE button in
the form that will save the changed form into a database. Off-late I was
using Acrobat Pro 8.0 to do all the forms and prefilling. The javascript
that ran behind the SAVE button was:
function submit()
{
var url = this.URL;
var pieces = url.split("/");
pieces[pieces.length-1] = "save.php";
url = pieces.join("/");
this.submitForm(
{cURL: url,
bCanonical: true,
cSubmitAs: "HTML"}
);
}
I want to achieve the same functionality in LiveCycle forms also. Can you
help me with this?
Thanks a lot,
Debayan Bhattacharya
event.target.submitForm(...);
Thom Parker
The source for PDF Scripting Info
www.pdfscripting.com
Very Important - How to Debug Your Script