I currently looking at putting a Umbraco eCommerce system into place and I am doing a little bit of R&D into what configuration will be best. I really like the setup of Tea Commerce but i've hit a bit of a stumbling block.
I need customer to be able to attach an uploaded file against an order line, upon seeing the custom properties I thought I was onto a winner and it worked fine with a simple input type=text although when I switched to type=file it didn't work.
That's correct. You cannot do that.You will have to do some custom stuff to do that. What I would do is to:
1. Create your own Umbraco base or Umbraco web api interface. This should recieve your file, save it to the server and use the Tea Commerce .NET API to save the file path to the order. 2. Create the form in the frontend and post it to the url you created in step 1
Fileupload as custom property
Hi everyone,
I currently looking at putting a Umbraco eCommerce system into place and I am doing a little bit of R&D into what configuration will be best. I really like the setup of Tea Commerce but i've hit a bit of a stumbling block.
I need customer to be able to attach an uploaded file against an order line, upon seeing the custom properties I thought I was onto a winner and it worked fine with a simple input type=text although when I switched to type=file it didn't work.
Any ideas?
Hi Steve,
That's correct. You cannot do that.You will have to do some custom stuff to do that. What I would do is to:
1. Create your own Umbraco base or Umbraco web api interface. This should recieve your file, save it to the server and use the Tea Commerce .NET API to save the file path to the order.
2. Create the form in the frontend and post it to the url you created in step 1
That should to the trick.
/Rune
is working on a reply...