0
votes
1answer
41 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
1answer
73 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
0answers
111 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
200 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 ...
1
vote
1answer
559 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 ...
0
votes
1answer
944 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
821 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 ...
5
votes
1answer
2k 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
2answers
717 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
1answer
611 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] ...
2
votes
1answer
2k 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 ...