All Questions
Tagged with angular-file-upload angularjs
140 questions
0
votes
1
answer
111
views
how to transfer multiples files and data to API in one request with angularjs
i have a angularjs form with data (name,surname,adress...) and multiple file upload.
I use this to manage fileupload : https://github.com/nervgh/angular-file-upload
But what i want is to fill my ...
0
votes
0
answers
29
views
Sending body fields to server while using angularjs library
My backend has been modified and now requires a field to be sent along with a file. Before it was enough to just upload the file.
My frontend is using since before this angularjs library:
https://...
1
vote
0
answers
443
views
How can we upload the binary file(.bin) through angular and handle it in backend with code igniter
I'm creating an application in which the user will upload a binary file onto the server and the admin can view and verify the file. But the problem I am having is that the FileUploader class in ...
1
vote
0
answers
110
views
How to get dynamic status of file upload in angular ui from java rest service
As part of my requirement need to show dynamic progress bar about uploaded file to user. I am using Java rest service for placing file into a separate location. Is there any way to get upload% from ...
0
votes
0
answers
126
views
Clear queue on bootstrap close on X
I use angular-file-upload for upload file on my server.
I put everything in the bootstrap modal box.
Everything working nice.
When I select a file for upload and upload them I want when I click on ...
0
votes
1
answer
188
views
Access fileitem from child controller on parent controller in AngularJS
I am using angular file uploader in child component and need to access the fileitem when onAfterAddingFile is fired. I have implemented binding in component. So far, I have tried this-
...
0
votes
1
answer
258
views
How can I set authorization header in Angular filemanager
I am using angular-filemanager in my project.
Is it possible to set the authorization header? I use a bearer token and the server needs the following header: "Authorization" "Bearer [token]"
I want ...
0
votes
1
answer
3k
views
Remove Content-Disposition and Content-Type from request body using angular-file-upload
I'm using https://github.com/nervgh/angular-file-upload for my file uploads.
However, I see that the upload body is like this -
------WebKitFormBoundaryXjCfky7muJb4rrZu
Content-Disposition: form-...
0
votes
0
answers
39
views
file not binding to angularjs service using FormData
I am trying to upload a file using angularjs and spring 3, I have written a service which is not binding the selected file. I don't know what mistake I have been doing, please help me to solve this ...
0
votes
1
answer
642
views
How to detect file name exist on upload in Angular file manager
I'm using Angular File Manager In My current Angularjs App.
I want to show an error(like: file name exist) to user when upload a file with name exist in a directory.
$scope.uploadFiles = function () ...
1
vote
1
answer
4k
views
Angular-File-Upload does not work with Internet Explorer
I am using Angular File Upload library.
https://github.com/nervgh/angular-file-upload
and I have been successful in implementing,works in all browsers except Internet Explorer. I am using Internet ...
0
votes
2
answers
514
views
Angular 1.x typescript "TypeError: "Uploader" must be an instance of FileUploader"
I have been trying to use the angular-file-upload here https://github.com/nervgh/angular-file-upload with typescript, and I keep getting this error:
TypeError: "Uploader" must be an instance of ...
0
votes
1
answer
721
views
angular-file-upload async filter in angularjs
I'm using angular-file-upload to upload files, where I'm writing a filter in which I need to take headers from the csv file selected for upload & match them with headers from some API. I'm able to ...
2
votes
0
answers
213
views
AngularJS: Multiple file upload window
I need a separate upload window to show queue/progress as shown in the image below.
I am using this module to upload multiple files. Find the following image for desired output.
0
votes
1
answer
3k
views
File drag and drop functionality in Angular js/MVC not working
I am trying to implement a simple file drag and drop functionality in Angular js/MVC.
I created a directive for the drag and drop.
(function (angular, undefined) {
'use strict';
...