hi, i noticed onsubmit on confirmation page don't get the fields $_POST array..i dont get any field value.
do i insert <input name"xxx"> for all fields in confirmation page too?
another problem: on click on 'cancel' (confirmation page) the form reloads without fields value!
please help me, i can't go on. 😟
if its not clear for my poor english tell me
Hi alfredopacino ,
Yes it is, you need to create your own template. An easy way to start is to generate an email template and copy and paste that into the Confirmation Page action.
Bob
hi, its too late, i create -manually- a 70 fields report 😀
there's another issue, now i have:
Confirmation page
[ onShow[data to session]]
[ onConfirm[session to data]]
i noticed the file upload field remains empty on confirm (just that field)
Hi alfredopacino,
I think that the file name should be in the form data after the Upload Files action - but not before that.
Bob
Hi alfredopacino,
If you look at the sequence of your actions you'll see that you are doing the DB Save before you do the Upload Files. That explains why the file name isn't saved.
You can either re-think the sequence (which I'd recommend); or use a custom code action to get the file name out of the $_FILES array. If you do that you need to be aware that the Upload Files action may rename the file or fail the upload.
Bob