Questions tagged [valums-file-uploader]

Valum's File Uploader is a Javascript + AJAX library for uploading multiple files with a progress-bar in FF3.6+, Safari4+, Chrome and falls back to hidden-iframe-based upload in other browsers (namely IE).

This tag refers to the original version of File Uploader, which is still available at (https://github.com/Valums-File-Uploader/file-uploader).

There is a newer version of the library called Fine Uploader (http://fineuploader.com). For the newer version of the library, use .

32 questions
0
votes
1 answer

c# Read .csv from stream in Handler class

I am using Valum's AJAX File Uploader to upload the csv file. The code to initialize it is : $(document).ready(function () { var uploader = new qq.FileUploader({ element: document.getElementById('file-uploader'), …
user1254053
  • 755
  • 3
  • 19
  • 55
0
votes
0 answers

Bad file descripter Exception in play framework

I am getting this error while trying to copy Image inputstream to a certain path I am not getting any error if the image size is less than 7kb I am using fileuploader (http://valums-file-uploader.github.io/file-uploader/) as a medium to upload my…
0
votes
1 answer

Valums-File-Uploader - Submit file using Java and Selenium

Im trying to submit a file to Valums-File-Uploader but im having trouble getting the file to submit/upload action to start. Im able to send example.txt to the file input but I am unable to make the submit action take place. Does anyone know how I…
0
votes
1 answer

Valums FileUploader no response from server after upload

I am using Valums FileUploader and I am having trouble getting and reading a response after a file is uploaded. Basically I am trying to get a useful response to be used in onComplete, whether that be success or an error message. I found another…
Dorshin
  • 135
  • 2
  • 15
0
votes
1 answer

Get files selected queue valums fileupload.js

I need to know how to get the files selected queue once the user has selected the files from computer and clicks on, because I want to show a message as "Uploaded files 1/200", but I don't know how to get the total of the files selected. I just know…
Brian
  • 349
  • 1
  • 5
  • 16
0
votes
2 answers

Valums File Uploader - Including ValidateAntiForgeryToken

I'm trying to protect my upload controller method using the MVC ValidateAntiForgeryToken but I'm struggling to work out how to get the __RequestVerificationToken included in the post. My action is like this: [HttpPost,…
Jammer
  • 9,969
  • 11
  • 68
  • 115
0
votes
1 answer

Valums file uploader - List file - path

Someone knows how create file list like demo when pass 10 seconds: http://html5.sapnagroup.com/demos/dragDropUploads/ Demo Source code there is nothing to create this list, it's not on complete event. I think is php code inside but i cant get…
0
votes
0 answers

valum file uploader resets session in expressjs

I am trying to upload an file using valum's ajax upload. On the server side I am using expressjs and it is a post verb. on the server side it sends back the req.session.id as json(sends the current sessionid). But at the end of the upload request,…
coool
  • 8,085
  • 12
  • 60
  • 80
0
votes
1 answer

multiple instances of valums file uploader

I'm trying to get multiple instances of valum file uploader working on my site. It works great with one instance but anytime I loop over initialization code, wanting multiple buttons I don't see any buttons. Here's the code:
0
votes
1 answer

Uploading files and preventing duplicates by knowing to update the file

In our system, when a user uploads a file it is stored in a unique file system structure and a database record is generated. A file is uploaded via the webbrowser via XMLHttpRequest. The file then gets moved from the temporary upload area into the…
Valamas
  • 24,169
  • 25
  • 107
  • 177
0
votes
1 answer

how to send response from AjaxServlet to JSP div for qq.fileUploader functionality

Within my JSP page, I have used the following ajax call (valums-file-uploader) and the file is uploaded successfully. The JSF invokes the appropriate Servlet correctly. I am checking the uploaded file and doing Server Side validations within the…
user1596476
  • 41
  • 1
  • 3
0
votes
1 answer

Valums file uploader drag drop area change

I have a button and a drag drop area. I want to apply valums file uploader to this button. But want to keep the drag drop area as another box besides it. How do I achieve it? My current implementation is as follows: that.imageUploader = new…
aditya_gaur
  • 3,209
  • 6
  • 32
  • 43
0
votes
1 answer

Valums ajax-upload Multiple files at once

I am having trouble creating multiple uploads with valums ajax-upload whereby a user can select mutiple files at once instead of one at a time.
Javascript var ajaxup =…
Ian Brindley
  • 2,197
  • 1
  • 19
  • 28
0
votes
1 answer

how does Valums-File-Uploader get fileSize in onComplete and pass it to server as params

I am using Valums-File-Uploader VERSION 2.1.2,It comes from https://github.com/Valums-File-Uploader/file-uploader. Now, after uploading file successfully,I want to save file name and size to Sqlserver at once. new qq.FileUploader({ element:…
Kevin Auds
  • 174
  • 1
  • 4
  • 15
0
votes
1 answer

valums ajax-upload broken script after xhr.send(file) - sometimes works, and sometimes does not

I searched for solution to this the better part of the day and I'm still in the dark. For a client of mine I created a simple web gallery for uploading images and I'm using valums file uploader. Till now I didn't have any problems with it on any…
Kristjan O.
  • 814
  • 1
  • 9
  • 33