Hi - anyone useing uloadify v3?
am trying to pass values to my server script using the following, however fiddler tells me that the value of actionid is always 'notset' the alert shows 47185 how can i get the onstart to change formdata?
am trying to pass values to my server script using the following, however fiddler tells me that the value of actionid is always 'notset' the alert shows 47185 how can i get the onstart to change formdata?
Code:
$('.file_upload').uploadify({
'formData' : {'actionid':'notset'},
'swf' : 'uploadify3/uploadify.swf',
'uploader' : 'uploadify3/upload.asp',
'onUploadStart' : function(file) {
var x_key = $('#x_curractionid').val();
$('.file_upload').uploadify('settings', 'formData', {'actionid' : x_key});
alert(x_key);
}
});