Re: [AngularJS] Re: Need study material and samples application concept

2016-09-19 Thread kumaran skills
Thank you Tony. On Sun, Sep 18, 2016 at 10:29 AM, 'Tony Starke' via AngularJS < angular@googlegroups.com> wrote: > Sure, some good source for learning angular are the following: > www.w3schools.com, Lynda.com., google.com, forums(since it was develoed > by Google), Also, here is a multitude of

[AngularJS] Re: External CSV file data to array

2016-09-19 Thread Sander Elias
Hi, Didn't I answer the same question of you a few day's ago? What was unclear in my answer? Regards Sander -- You received this message because you are subscribed to the Google Groups "AngularJS" group. To unsubscribe from this group and stop receiving emails from it, send an email to

[AngularJS] External CSV file data to array

2016-09-19 Thread chandra . sannithi
Hi, I need load the data from external CSV file data to Array in Controller. Please help me. send me the code Thanks -- You received this message because you are subscribed to the Google Groups "AngularJS" group. To unsubscribe from this group and stop receiving emails from it, send an

[AngularJS] Re: Extending the Scope prototype

2016-09-19 Thread Sander Elias
Hi, Jean-Baptiste. No, there is no official way to extend the $scope. Angular uses dependency injection instead. You can use a factory or a provider that provide the behaviour you want and inject that into the places where you need it. You can bind the needed scope from withing the

[AngularJS] Re: $watch does`t react on element.innerHeight()

2016-09-19 Thread Sander Elias
Hi Hans, Why don't you move the entire logic into your event handler? Something like: app.directive('resizeWatch', function ($window) { return function ($scope, element) { var w = angular.element($window); w.bind('resize', function () { var newSize = {

[AngularJS] Re: Problem using $http.get in a function

2016-09-19 Thread Sander Elias
Hi Alejo, .success is a remainder. $http should be used the .then instead. Your fiddle gives a 404 on the resource, so I can't use it to dig into your actual issue. Regards Sander -- You received this message because you are subscribed to the Google Groups "AngularJS" group. To unsubscribe

[AngularJS] Error: [$compile:tplrt] http://errors.angularjs.org/1.5.5/$compile/tplrt?p0=indicatorWidget=indicator

2016-09-19 Thread Dinesh N K
Round progress is working fine in firefox, but the same thing is not working in Internet Explorer and Google chrome. Please refer progressindicator It shows the error in console, which is given below angular.min.js:117 Error: [$compile:tplrt]

[AngularJS] Re: Error: [$compile:tplrt] http://errors.angularjs.org/1.5.5/$compile/tplrt?p0=indicatorWidget=indicator

2016-09-19 Thread Sander Elias
Hi Dinesh, If you want to enable someone to help you, it would be a good idea to provide the code that caused the issue in a plunk . Regards Sander -- You received this message because you are subscribed to the Google Groups "AngularJS" group.

[AngularJS] Extending the Scope prototype

2016-09-19 Thread jean-baptiste demonte
Hi, Is there a clean / official way to extend the scope prototype to append some features (as we can do with jQuery...) I'm near to use this but, my approach is like a rape... angular.module('Gojob') .run(function ($rootScope) { $rootScope.constructor.prototype.$watchOnce = function

[AngularJS] Re: Free JSON based API

2016-09-19 Thread David Moore
One I know of that is open ( doesn't have CORS restrictions ), is the JSON API for Reddit. https://www.reddit.com/.json Not sure if there is enough data there to play with data visualization though. Another option would be to create your own using http://www.generatedata.com/ Good luck,

[AngularJS] How To Display HTML Twitter Embed from JSON using Angular JS

2016-09-19 Thread Anthony Lombardo
I am parsing JSON data using Angular that has simple HTML embed code for a twitter widget stored in one of the JSON properties but I am unable to get the twitter widget to display on the page. My app is setup to use ngtweet as a dependency. var app = angular.module('Top10App',

[AngularJS] Free JSON based API

2016-09-19 Thread Venkata Oruganti
Hi All, I am trying to build a small angularJS app, with some data to build tables and visualization, can anyone point me with free sample data, which I can call with $http methods. Looking forward to your help Rgds, Krishna -- You received this message because you are subscribed to the

[AngularJS] Re: Free JSON based API

2016-09-19 Thread Sander Elias
Hi Krishna, Have a look at http://chancejs.com/ Regards Sander -- You received this message because you are subscribed to the Google Groups "AngularJS" group. To unsubscribe from this group and stop receiving emails from it, send an email to angular+unsubscr...@googlegroups.com. To post to

[AngularJS] Angular current menu active

2016-09-19 Thread Murali Mohan
I'm pursuing an issue as I wanted to add a class to the selected li and to the parent li after a click. we don't want to use template or templateURL in the directive as I want to use plain HTML menu with angular menu selection. I have tried but no luck. Can we achieve this using some tricky

[AngularJS] ng test failure: 'Error: Cannot call Promise.then from within a sync test'

2016-09-19 Thread Matthew Hegarty
Hi All I'm new to Angular2 and am struggling with the basics. I have a simple component and I thought it would be sensible to write a unit test. I followed the Twain example which is very similar to what I am trying

[AngularJS] How to show users info in profile using node.js angular and sequelize?

2016-09-19 Thread 'Julia' via AngularJS
I want to show the users info and make it editable in his profile page, using angular, node, and sequelize. Nothing really works so I would really appreciate some help! my backend: router.get('/:id', function(req, res, next){ if(req.params.id==req.user.id) User.findOne({ where:

[AngularJS] Problem using $http.get in a function

2016-09-19 Thread Alejo Ribes
Hi, i get this error on run a function with $http.get: "angular.js:12477 TypeError: $http.get(...).succes is not a function" when $http works in a controller I need a button to call rest service, i using with ng-click directive but on call the function, show the error. Code in a controller:

[AngularJS] Display error on form submit?

2016-09-19 Thread Eric Blankenburg
I want to display errors messages for a model-driven form if the field is not valid and EITHER the field was touched or the form was submitted. pseudo code: if !field.valid && (field.touched || form.submit) And NO, disabling the submit button won't work because you cant tell what fields are

[AngularJS] Enterprise Support/Maintenance Agreement for AngularJS?

2016-09-19 Thread Eric Wyles
Hi, I'm curious if there is any third party company that offers support/maintenance for Angular JS? We are looking at using it for some internet facing applicaitons. My company uses quite a bit of open source software, but we prefer to have a third party available that can give us some support

[AngularJS] Angular: How do I initiate and show an animation of a div layer?

2016-09-19 Thread 'Tony Starke' via AngularJS
*Hi guys and gals. I need to open a menu div layer when a button is clicked and close menu div layer if it is open on mouseover event using angular. How do I start with a partially closed div and then get it to open on click event? My code seems sound yet it does not work. Here is the code:*

[AngularJS] $watch does`t react on element.innerHeight()

2016-09-19 Thread Hans Peter
Hello, I hava a directive that should react ($watch) if I resize the window. A directive react only on innerWidth but not on innerHeight. I cant solve this problem. Can someone help me? Here is my codesnippet: *app.directive('resizeWatch', function ($window) {* *return function

[AngularJS] I have problem with resource, I am know how send two variable in resource

2016-09-19 Thread Arturo Jose Mojica Guerrero
I try... $resource('http://example.com/resource.json') or $resource( 'http://example.com/:id.json')or even $resource( 'http://example.com/resource/:resource_id.:format') If the parameter before but no conect -- You received this message because you are subscribed to the Google Groups