[AngularJS] Angular Templates not loading on file update/build in $StateProvider (WebLogic 12)

2015-08-06 Thread George Wilson
Greetings all, I have been looking around and am having a hard time finding a definitive solution but we are having an issue with an AngularJS based Java application deployed to WebLogic. Ideally, any files which are updated following a new build would be updated and served to the browser. This

[AngularJS] How can I get a click event on a section of an SVG data set

2015-08-06 Thread Ennio Bozzetti
I have a controller that gets SVG data from a factory and it display on the screen for the user. On my SVG data I have a class called .clickable that when the user click on that section I want to display an alert box for now. How can I get that done in angularJS? Can my controller function be

Re: [AngularJS] Bypass file:// restrictions

2015-08-06 Thread Jaco De Villiers
It worked like a dream! I now have gulp building the template and node serving it for testing. It also works from file:/// Thanks guys On Mon, Jul 13, 2015 at 9:12 AM, Jaco De Villiers jac...@gmail.com wrote: Thanks Sander, that sounds like the solution. It will allow me to develop in

[AngularJS] Re: Getting “Unexpected request” error when running Karma unit test in an AngularJS app

2015-08-06 Thread Manish G
Hi Gillian,Charly I am also facing similar issues.I have done as following: beforeEach(inject(function($injector) { // Set up the mock http service responses $httpBackend = $injector.get('$httpBackend'); // backend definition common for all tests var url = 'x';

[AngularJS] coffeescript best practice for Angular apps?

2015-08-06 Thread audrey . lee . is . me
Hello world, I just finished walking through the Angular tutorial: https://docs.angularjs.org/tutorial My JavaScript coding is a bit weak. I like the look of coffeescript. What is considered a straightforward and modern way to build a simple Angular app with coffeescript? Currently I am

[AngularJS] $http POST request stuck in OPTIONS

2015-08-06 Thread Jake K.
Hello, I am trying to upload a file(s) using this directive: https://github.com/danialfarid/ng-file-upload In my code I have something like this: $upload.http({ method: 'POST', url: 'url-to-api', //this is the url to my api to where I want to upload the file(s)

[AngularJS] angular post request in IE9 not working (IE edge and IE 10 work fine)

2015-08-06 Thread Jake K.
Hello, I am trying to make a post request using angularjs $http. The implementation looks something like this: Assume $scope.user is an object that has been initialized like this: *$scope.user = {};* *$scope.user.username = 'my-user-name';* *$scope.user.password = 'my-password';* *then, when

Re: [AngularJS] Re: lazy load HTTP script inside HTTPS website

2015-08-06 Thread Jake K.
To the Angular team developers, I have the following issue regarding $http POST request in IE9: I am trying to make a post request using angularjs $http. The implementation looks something like this: Assume $scope.user is an object that has been initialized like this: *$scope.user = {};*

[AngularJS] Re: Get variable value from directive to Controller

2015-08-06 Thread Sander Elias
Hi Nintin, You are storing data in the DOM and then parsing it out. Why? You can just access the data in your controllers, without touching the dom. That is the whole idea of angular! If you want to access the scope in your directive, it's available there. But you better switch to the

[AngularJS] Get variable value from directive to Controller

2015-08-06 Thread Nitin Tomer
We got stuck in a situation where we are unable to get a scope variable value from a link function of custom directive to an application Controller in angularJS. Below is the custom directive code: oxadminApp.directive(test, ['$compile', function($compile){ return {

Re: [AngularJS] Who is caching my templates?

2015-08-06 Thread César Barone
Sander, Concatenated, my temples have 71kb, and gziped, 13kb. I will use this approach :) Thanks again. 2015-08-04 12:26 GMT-03:00 César Barone cesar.bmco...@gmail.com: Sander, I will test this solution and come back here to post my conclusions. Thanks :) 2015-08-03 9:14 GMT-03:00

[AngularJS] Re: Angular Templates not loading on file update/build in $StateProvider (WebLogic 12)

2015-08-06 Thread George Wilson
I added the following line in a call to myApp.config(): $httpProvider.defaults.headers.common['Cache-Control'] = 'max-age=0, must-revalidate'; This appears to have corrected it but a colleague is verifying. On Thursday, August 6, 2015 at 9:34:06 AM UTC-7, George Wilson wrote: Greetings all,

[AngularJS] Angularjs Custom Filter stopped working after migrating to 1.3.4 from 1.2.1

2015-08-06 Thread Bedanta Bikash
I am trying to build an app which uses a custom filter. My filter works perfectly with angularjs 1.2.1 but when I am trying to upgrade it to 1.3 or 1.4 my filter stops working. here is my github repo link https://github.com/Bedant/AngularjsOrFilter -- You received this message because you are

Re: [AngularJS] Re: Best practice for triggering jQuery/DOM transforms on ng-repeat'ed element

2015-08-06 Thread Stewart Mckinney
Hi Steward, Keep in mind too that the DOM will be changing every time the collection changes, so you will have to destroy/recreate stuff every time that happens. your `coolCustomDirectiveThatFiresAfterNgRepeatIsDone` will work, but why would you like to do something like that? I know the DOM

[AngularJS] Data visualisation widget to be used with angular js

2015-08-06 Thread Sushant Kadam
Hi, What are the visualization components that can be used with Angular js for following Grid Charts (Can highcharts be used for the same ? ) Regards, Sushant Kadam -- You received this message because you are subscribed to the Google Groups AngularJS group. To unsubscribe from this group

[AngularJS] Animating ngRepeat while simultaneously animating ngView

2015-08-06 Thread marcovdbout
Hi, I am currently working on a project (using AngularJS 1.4.3) where I'm animating changes to the view. I would also like to animate some of the *contents* of the view. For example the view might contain a table where I want to animate the rows that are added using ngRepeat. Right now it

Re: [AngularJS] Re: Angular Directive to point to item in view

2015-08-06 Thread Michael J. Mahony
Thanks Alain for finding the typo! Thanks Sander for the tip on ngModelController.$setViewValue(). I've implemented both changes. Onward my lessons in Angular.js go! Michael J. Mahony Personal Trainer ISSA Certified http://fastfitnessonline.com On Wed, Aug 5, 2015 at 6:37 PM, Sander Elias