Questions tagged [filedrop.js]

This tag is for questions that relate to the drag-and-drop library, jQuery Filedrop.

jQuery Filedrop is an HTML5 drag-and-drop solution that uses the HTML5 File API to allow users to upload and organize files into a repository.

12 questions
1
vote
0 answers

filedrop.js rename file using hidden field

I am using filedrop.js to upload files (.net mvc razor). I want to rename the file based on a hidden form field value upon file upload. There is a rename function, but I don't know how to pass the new name, field value to it. Here is the code on the…
jpieps
  • 41
  • 4
1
vote
1 answer

Filedrop.js no success Message

i am using filedrop.js fo an Image Upload Script. I fund a script here : https://tutorialzine.com/2011/09/html5-file-upload-jquery-php In the Prject is a file_post.php which i wanted to change to save some informations (like the Filename) into a…
1
vote
1 answer

FileDrop.js and laravel routes

I am trying to use FileDrop.js (latest version) along with Laravel 5.1 in order to upload files. I have set a route for the ajax request inside routes.php: Route::any('/fileupload/ajax', ['as' => 'fileupload.ajax', 'uses' =>…
giorgos
  • 1,771
  • 4
  • 15
  • 14
1
vote
1 answer

Upload files with FileDrop.js on a Python Flask server

I run a Python Flask application and want to implement the possibility to upload files to the server. FileDrop.js looks promising for this task, however, I do not get it to work together with Flask. The reason for this seems to be that Flask expects…
Dirk
  • 9,381
  • 17
  • 70
  • 98
1
vote
0 answers

FileDrop.js & PHP from data not pass but pic correctly work

I am trying to my select box data with picture in my php file using FileDrop.js when file uploaded. my code works correctly except passing select box value. my code: dropbox.filedrop({ paramname:'pic', data: { param1: function () { …
WWereft51
  • 11
  • 2
1
vote
1 answer

FileDrop.js & PHP resulting in empty $_FILES

JSFIDDLE I'm using filedrop.js to create a file repository structure within my app. The above noted JSFIDDLE has all of the Javascript / jQuery / HTML and CSS code for this small module. While everything on the client end seems to be functioning…
DevlshOne
  • 8,357
  • 1
  • 29
  • 37
0
votes
1 answer

JQuery FileDrop.js How To Read Data Params in Controller?

Using ASP.NET MVC 5, I'm having trouble reading the param data I am sending from my filedrop jquery code into my controller. Here is my .cshtml filedrop code: And here is my Controller code, showing that param1 is being passed as null:
SweetTomato
  • 509
  • 1
  • 6
  • 16
0
votes
1 answer

PHP HTTP_X_FILE_NAME removed, what alternatives do I have

Good day, I use filedrop to upload images in my application. Recently I moved to PHP 7.1 on my development location and I found out that HTTP_X_FILE_NAME has been removed. Searching the web I found out that this key has been removed as…
Alex
  • 1,223
  • 1
  • 19
  • 31
0
votes
1 answer

Unable to upload call post for transfering group of files to Action

The problems is that when passing an array of File type objects to MVC model action there is a problem with $.post call What I am doing is using jquery.filedrop library to drop in multiple times. then, after all of the items are dropped and when…
0
votes
0 answers

Remember chosen file and reload it in Filedropjs

I'm using FileDropJS to allow users to choose a local file and upload its content to the application. I'm looking for a way to "choose" the same file automatically for the user, when the user comes back, without him having to drag & drop the file…
Tom Shir
  • 462
  • 1
  • 3
  • 14
0
votes
1 answer

Save base64 file received from HttpPostedFileBase

I am using jquery filedrop and I was getting an error using readAsBinaryString on Internet Explorer (10+). It works on Chrome and Firefox. Then I changed that method to readAsDataURL, which 'works' in every browser. The problem is that this last…
Lucas
  • 599
  • 7
  • 20
0
votes
1 answer

Multiple file selection

I'm playing with FileDrop library, to allow users to upload multiple files "one-shot" with IE11. As documented, setting this property zone.multiple(true); is possible to select multiple files to be uploaded. I noticed this strange behaviour. If I…
Andrea Baglioni
  • 303
  • 1
  • 2
  • 20