I have a ext form with textfield
and one filefield
. Without filefield
form is working fine, and when submit the form data sending with encoded format. But When set fileupload = true
, form data sending with different format.
with fileupload data sending like..
form data
name: abc,
email: abc@gmail.com
When not set fileupload data sending like..
data="%5Bobject%20Object%5D"
But I want to send data encoded format with fileupload also. How can I do this, please share some idea.Thanks in advance.