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.
get uploadID on the ServerSide?
  • I'm using several of these on the page, and it'd be great to be able to get the uploadifyID so I can see WHICH of my elements uploaded an image. I tried scriptData : {id:this.parentNode.id} but parentNode is undefined and it blows up. this.id is also undefined. Any suggestions?
  • btw, i'm using .net with a custom ashx that implements my own handler, that implements IHTTPHandler. I only have 3 objects that come in besides the file....it'd be killer to get uploadifyID
  • so, here is the answer...thanks for the help...NOT.

    $.each($('.newPic'), function(i, n) {
    $(n).uploadify(
    {
    'uploader': '<%=ResolveUrl("~/javascript/uploadify.swf")%>',
    'script': '<%=ResolveUrl("~/data/FileUploader.ashx")%>',
    'cancelImg': '<%=ResolveUrl("~/images/cancel.png")%>',
    'auto': true,
    'folder': '<%=ResolveUrl("~/images/fighters")%>',
    'scriptData': { "id": n.id}
    });
    });