Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

don't want to hide queue item bar after upload complete in uploadify

I am using uploadify in one application. I have successfully implemented it. I got that after complete the upload files, the files' queue bar hide slowly. But I do not want to hide this bar because I am able to understand how many files being uploaded as well as which files. I have tried to write something as 'onUploadComplete' : function() { $('.uploadify-queue').show(); }

But no luck. Is there any option not hide the queue bar of uploadify.

like image 696
StreetCoder Avatar asked Dec 03 '25 05:12

StreetCoder


1 Answers

$('#file_upload').uploadify({
    'swf'      : '/js/uploadify/uploadify.swf',
    'uploader' : '/js/uploadify/uploadify.php',
    'method'   : 'post',
    'formData' : { 'someKey' : 'someValue' },
    'auto'     : false,
    'buttonClass' : 'form-control',
    'removeCompleted' : false
});

use removeCompleted : false

like image 98
user3800502 Avatar answered Dec 05 '25 19:12

user3800502