This forum is a community forum meant for users of the plugin to collaborate and help solve issues with implementation, etc. Unfortunately, as the creator of the plugin, I do not have much time to attend to every request here as this is only a side project and I must work a full-time job to provide for my family. This is how I keep the Flash version free and the HTML5 version low cost.
UploadiFive 1.1.1 has been released which includes a small fix for added support on touch devices including iOS 6 devices.
uploadifySetting and 'auto':true
  • Hi,

    I'm trying to dinamicaly modify scriptData attribute, and it works if I use 'auto': false. I have something like this:

    function callUploadify()
    {
    $('#fileInput').uploadifySettings('scriptData', {'time' : $('#time').val(), 'type' : $('#type').val(), 'test' : '5'});
    $('#fileInput').uploadifyUpload();
    }

    <input type=\"file\" name=\"fileInput\" id=\"fileInput\" />
    <a href=\"javascript:callUploadify();\">Upload Files</a>

    What I'm trying to do is the same functionality with 'auto' set to true. I tryed this:

    <input type=\"file\" name=\"fileInput\" id=\"fileInput\" onclick=\"javascript:callUploadify();\"/>

    but callUploadify function never gets called this way.

    Any ideas?
  • put the uploadifySettings() into onSelect
  • Travis,

    that did not work, but you gave me an idea :)

    I put uploadifySettings into onChange of "type" and "time" input fields, and that works!

    Thanks for help,
    Petar