Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Multiple Folder Select
  • Hey, I was wondering how to put a dropdown list with several folders so a user can choose the destination folder for their files. I have seen an uploader with a drop menu list of folders but only a single file upload.

    Thanks for any help, kyle.
  • Simply add a "select" element with the value set the folder you want. Then bind the select element to a change event and use .uploadifySettings to change the folder.
  • I'm trying that and it doesn't seem to be working.


    $(document).ready(function() {
    $(\"#uploadify\").uploadify({
    'uploader' : 'scripts/uploadify.swf',
    'script' : 'scripts/uploadify.php',
    'cancelImg' : 'cancel.png',
    'folder' : 'uploads',
    'queueID' : 'fileQueue',
    'auto' : true,
    'multi' : true
    });
    $(\"select\").change(function() {
    var selected = $(this).val();
    $(\"#uploadify\").uploadifySettings('folder', selected);
    });
    });


    The code is very straightforward to me, but it never overrides the default "folder" setting in the object. No matter what I choose in the
  • Hey, I am in need of a fix on this.. any thoughts.
  • Hello,
    I have same question if my photogallery is using categorys, based on folders. So how to i select right category folder before i upload. Atmoment the uploading is working on 1 folder. So before i upload pictures i would need to select right folder where to upload. Can anybody help with this blugin.