I want to remove duplicate files examples
First time I have selected Files "A.jpg"
second time if i am selecting same files "A.jpg" I am displaying files already exists. but i am not able to delete that files from popup.
my code below..
function LoadplUpload(UserId, RFQId) {
$("#uploader").pluploadQueue({
// General settings
url: "../Handlers/PAPVendorRequirementSubmission.ashx?MethodName=UploadFilesVendorResult&rfqId=" + RFQId,
runtimes: 'html5,flash,silverlight,html4',
max_file_size: '100mb',
chunk_size: '100mb',
unique_names: true,
filters: [
{ title: "All files", extensions: "ppt,pptx,jpg,gif,tiff,tif,png,psd,zip,rar,tar,txt,doc,docx,xls,xlsx,pdf" },
{ title: "Image files", extensions: "jpg,gif,tiff,tif,png,psd" },
{ title: "Document files", extensions: "doc,docx,pdf,txt,xls,xlsx, ...
Go to the complete details ...