Hy all !! i want to upload Image file in file cabi...
# suitecommerce
h
Hy all !! i want to upload Image file in file cabinet through external html application (SSP Application) i have tried HTML FILE CODE
var file_data = $('#attachFile' + i).prop('files')[0];
 
var form_data = new FormData();
form_data.append('file', file_data);
and then post form_data Restlet CODE
var file = valuesArray[i].file;
here i tried to stringify file object the result i got
"{}"
this
file.setFolder(199); //*Error is here Cannot find set.folder function*
var id = file.save();
but after giving my all efforts file is not saving in file cabinet ! Does anyone have idea on this?