0
votes
1answer
49 views

Angular with .net WebAPI Token authetication - File Upload

I am trying to implement this file upload plunging into my project using Angularjs and .net web api token authorization File Upload: http://blueimp.github.io/jQuery-File-Upload/ Token authorization: ...
-3
votes
1answer
64 views

Upload files using angularjs without php script

just want to ask if it is possible to upload files (images, docs, pdf, etc.) using angularjs without actually using php script, instead all file uploads will use angularjs or javascript codes?. With ...
0
votes
2answers
101 views

How can i post files without ajax in angularjs on jQuery?

I want to build a gallery, in which multiple images can be uploaded. I found some solution but all of them send the file immediately using ajax. But I want to post them by form submission. I also ...
1
vote
3answers
2k views

How to change dynamically the upload (jquery-file-upload) url using $scope?

I'm using the jquery-file-upload how describes http://css.dzone.com/articles/angularjs-file-upload but aditionally I need to send a parameter via query string, so I need to change that parameter ...
0
votes
0answers
156 views

Making blueimp jquery file upload work with AngularJs

I've read some other questions here on SO regarding this issue but I can't seem to find a COMPLETE answer on how to make it works. So, I already have a controller called project and I'd like to add ...
0
votes
0answers
136 views

jQuery Fileupload Angular Cancel Event

I am working on jQuery file upload with Angular using this plugin http://blueimp.github.io/jQuery-File-Upload/angularjs.html All works fine except cancel button, It cancel the file but I am getting ...
2
votes
2answers
2k views

Jquery file upload angular version - multiple file upload on the same page

Cheers, here is a good example how to use jquery-file-upload plugin with angularjs how to use jquery file upload angular version? BUT! What if on the same page we need few widgets? <form ...
0
votes
1answer
195 views

Blueimp jquery file upload with angular submit all form but not just files

On some entity editing page there is a section with image management - image management implemented via blueimp jQuery file uploader + angular plugin. i cant put image management in form cause nested ...
5
votes
1answer
263 views

AngularJS with Angular-ui-router and jQuery-File-Upload

I am using angular-ui-router to control my states in my AngularJS application. In one partial I use jquery-file-upload. The problem that I have is that when I use the example given by ...
0
votes
3answers
528 views

Scope error: Uncaught TypeError: Object # has no method 'scope'

I am trying to add Angular JS jQuery-File-Upload in my rails application. To implement this, I am using https://github.com/tors/jquery-fileupload-rails gem Angular JS code from ...
0
votes
1answer
94 views

How can blueimp communicate with a Java REST service, if possible

$scope.$on('fileuploadadd', function(e,data) { $http({ method: 'POST', }).success().error(); } i know writing above code for single simple file upload, but with blueimp, can i ...
1
vote
1answer
2k views

CORS file upload for angularjs with IE8 support

I am seeking an easy and light weight way to upload a small file to a REST API using CORS. I am using the following plugin: angular-file-upload The problem is that it uses swf fallback for deprecated ...
7
votes
1answer
4k views

how to use jquery file upload angular version?

here is how I use angular jquery file upload var album = angular.module('album', ['restangular', 'blueimp.fileupload']), .controller('somecontroller',function($scope,){ $scope.options = { ...
0
votes
1answer
796 views

Angularjs jQuery FIle Upload

I'm new at Angularjs and I'm trying to create an AngularJS project with jQuery File Upload but I could not distinguish between directives file controllers file and the view. Can anyone help me by ...
0
votes
1answer
965 views

how can we upload a file in angularJS

is there any direct approach for file upload in angularJS. I am completely new to angularJS. Tried googling about this,but couldn't find any basic example on this.do wee need to install any ...
0
votes
0answers
367 views

scope not found second time fileuploadchange, jquery-file-upload angularjs

i am using jquery file upload with angular and it works great. I added my own callback on fileuploadchange, so when a user selects a different file, u get a callback. The upload form is in a overlay, ...
0
votes
1answer
1k views

blueimp fileupload with angularjs not uploading anything

I'm writing some tests trying to get the blueimp jquery-fileupload plugin working with angularjs. Here is what I wrote, trying to keep it as simple as I could : [controller.js] ...
1
vote
1answer
1k views

Scope Issues in Getting Jquery-File-Upload to work with AngularJS

I'm trying to implement a multi-file upload feature and came across this http://blueimp.github.io/jQuery-File-Upload/angularjs.html. In my form, I am using ng-switch to load in different parts of the ...
1
vote
0answers
2k views

AngularJs $scope.$apply not working as expected

I am using this controll: http://blueimp.github.io/jQuery-File-Upload/angularjs.html to do file uploading in angular, once the file is uploaded to my server I return a url and would like to display it ...
2
votes
1answer
3k views

AngularJS: Pass $scope into Directive

Trying to create a file upload directive using jQuery File Upload plugin and this gist of the directive https://gist.github.com/thoughtpalette/4726114 I need to pass in a id from an object in ...