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.
Getting 'object or method not supported' error in JS on uploadifySettings
  • $(function() {
    $("#evidence_file").uploadify({
    "swf" : "uploadify.swf",
    "uploader" : "evidence_upload2.asp",
    "cancelImage" : "uploadify-cancel.png",
    "auto" : true,
    "fileSizeLimit" : "10MB",
    "progressData" : "speed",
    "multi" : false,
    "fileTypeExts" : "*.gif; *.jpg; *.png",
    "width" : 120,
    "onUploadStart" : function(){
    $("#evidence_file").uploadifySettings("postData", {
    "action.action": "Add Evidence",
    "ref_id": $("#ref_id").val(),
    "Description": $("#DESCRIPTION").val(),
    "Evidence_Location": $("#EVIDENCE_LOCATION").val()},0);
    }
    });

    });

    I am trying to add additional data from both hidden and visible form fields.

    Any clues or pointers would be appreciated.

    Thanks,

    Lostboy


    PS your forum needs a moderator to clear out the crap posts that are all over it


  • Finally changed
    "onUploadStart" : function(){
    $("#evidence_file").uploadifySettings("postData", {
    "action.action": "Add Evidence",
    "ref_id": $("#ref_id").val(),
    "Description": $("#DESCRIPTION").val(),
    "Evidence_Location": $("#EVIDENCE_LOCATION").val()},0);
    }
    });
    to

    "onUploadStart" : function(){
    $("#evidence_file").uploadify("settings", 'formData', {
    "action.action": "Add Evidence",
    "ref_id": $("#ref_id").val(),
    "Description": $("#DESCRIPTION").val(),
    "Evidence_Location": $("#EVIDENCE_LOCATION").val()},0);
    }
    });

    and it works