i had same problem ...,
after downloaded all the files the user can upload more files if they want !!!
the state is maintained, at least for me ... lol
hope this helps ...
add the following code in UploadComplete event
//plupload_add
$(".plupload_buttons").css("display", "inline");
$(".plupload_upload_status").css("display", "inline");
try this,
$(function () {
$("#uploader").pluploadQueue({
// General settings
runtimes: 'gears,silverlight,flash,browserplus,html5',
url: 'UploadHandler.ashx',
max_file_size: '10mb',
chunk_size: '1mb',
unique_names: true,
// Resize images on clientside if we can
resize: { width: 320, height: 240, quality: 90 },
// Specify what files to browse for
filters: [
{ title: "Image files", extensions: "jpg,gif,png" },
{ title: "Zip files", extensions: "zip" }
],
// Flash settings
flash_swf_url: 'js/plupload.flash.swf',
// Silverlight settings
silverlight_xap_url: 'js/plupload.silverlight.xap',
preinit: {
Init: function (up, info) {
//log('[Init]', 'Info:', info, 'Features:', up.features);
},
UploadFile: function (up, file) {
//log('[UploadFile]', file);
},
UploadComplete: function (up, file) {
//plupload_add
$(".plupload_buttons").css("display", "inline");
$(".plupload_upload_status").css("display", "inline");
},
UploadProgress: function (up,file) {
},
PostInit: function (up) {
},
QueueChanged: function (up) {
}
}
});
Last edited by cealex (2012-11-16 19:23:13)