0

Is there documentation about that explains how to configure the upload config in YUI. I am trying to upload temporarily into a folder in a user's home space so I don't need all siteId that's specified in the examples I have been reading about so far.

I'd like to configure the object with the details I need to pass.

Dark Star1
  • 6,986
  • 16
  • 73
  • 121
  • 3
    Could you please tell which examples you are referring and bit more detail will give more clarity on what you are trying to achieve. – mitpatoliya Jul 26 '13 at 09:36

1 Answers1

1

Found what I was looking for in Share Client Side API by accident. Where the upload path can be specified.

     var multiUploadConfig =
     {
        destination : this.options.tempfolder,
        containerId: "consultation",
        filter: [],

        mode: this.fileUpload.MODE_MULTI_UPLOAD,
        thumbnails: "doclib",
        onFileUploadComplete:
        {
           fn: this.onFileUploadComplete,
           scope: this
        }
     };
Dark Star1
  • 6,986
  • 16
  • 73
  • 121