[AngularJS] How to create the nested loop json data.

2016-04-04 Thread Lenin Muthu kumar
hi all. i want to create the nested loop json data in following structure using Angularjs, $scope.tasks = [ { name: 'Europe', children: [ { name: 'Italy', children: [ { name: 'Rome' }, { name: 'Milan' } ] }, { name: 'Spain' } ] }, { name: 'South America', children: [ { name: 'Brasil' }, {

[AngularJS] Typings???

2016-04-04 Thread Adnan Salahuddin
Hi Developer, I am using Angular 2 beta 12 and using visual studio 2015 IDE. I am confused about typings. What is typing json in Angular 2? Is it ok without typing? waiting for your response Thanks in advance! -- You received this message because you are subscribed to the Google Groups

[AngularJS] Re: Angular 2.0

2016-04-04 Thread Abd -
Angular 2.0 is not Angular at All !! I wish they issued another technology and left the version 1.X grow up normally, I think these changes are wrong (statistical) To Development Team, > > Today I read about Angular 2.0. ( > http://ng-learn.org/2014/03/AngularJS-2-Status-Preview/) > As we

[AngularJS] Re: How to create the nested loop json data.

2016-04-04 Thread Sander Elias
Hi Lenin, You mean something like this ? 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]

2016-04-04 Thread Jahnavi Y
Dear Professionals, Below are the available consultants open to work on contract position. Please share your requirements to *jahn...@csrinfotech.com * *SKILL* *LOCATION* *RELOCATION* *AVAILABILITY* Salesforce Developer NC Open Immediately QA Analyst NC Open

[AngularJS] Tab Order for Choosen Dropdown in Angular Js

2016-04-04 Thread Suresh Murthy
Hi, I am using chosen dropdown in my angular js its working fine but when we gave a tab order focus is not getting in to that dropdown. I have used choosen version 1.4.2.Please share any solutions for this -- You received this message because you are subscribed to the Google Groups

[AngularJS] Hotlist Req

2016-04-04 Thread Jahnavi Y
Dear Professionals, Below are the available consultants open to work on contract position. Please share your requirements to *jahn...@csrinfotech.com * *SKILL* *LOCATION* *RELOCATION* *AVAILABILITY* Salesforce Developer NC Open Immediately QA Analyst NC Open

[AngularJS] Re: accessing factory variables from multiple controllers

2016-04-04 Thread Tito
what error are you seeing? I am thinking you need the UserFactory before NavCtrl? On Monday, April 4, 2016 at 12:04:30 PM UTC-7, Rj Ewing wrote: > > Hello, I'm new to angular and having trouble accessing the user from my > UserFactory. My NavCtrl isn't recognizing when UserFactory.user is

[AngularJS] add angular module to main module runtime using reuqirejs

2016-04-04 Thread hardik Patel
I am working on Angular Application. I have a application with multiple modules. Application structure is like i have a Main Module and at run time i want to inject sub modules in main module. Please help me out. Thanks in Advance -- You received this message because you are subscribed to

Re: [AngularJS] Re: accessing factory variables from multiple controllers

2016-04-04 Thread RJ Ewing
I'm not really getting an error. NavCtrl.vm.user is undefined even though I can grab the UserFactory on the console and the user property is set correctly. > On Apr 4, 2016, at 7:17 PM, Tito wrote: > > what error are you seeing? I am thinking you need the UserFactory before

[AngularJS] Re: add angular module to main module runtime using reuqirejs

2016-04-04 Thread Vaibhav Gupta
Hi, I am assuming that you don't want to inject sub modules to main module, rather you want to load modules dynamically along with main module. You can manually bootstrap your application using a code like the following: if(/*some condition*/){ angular.bootstrap(document,

Re: [AngularJS] add angular module to main module runtime using reuqirejs

2016-04-04 Thread Ashish Kumar
Hi Hardik, According to your requirement ,I am not sure ,there is a way to do this by angular because you need to load your all modules in browers .Try this..(might work) window.SubModuleDependencies = [];//add this before you do anything else // at the end of each module

[AngularJS] Best approach

2016-04-04 Thread Marco Berri
Hi, I find a best approch for this template. I have a right column with more buttons. Every button load a template pannel with form and push into main content page. Is correct using ui-route? Another solution or online example? Tnx!!! -- You received this message because you are subscribed to

Re: [AngularJS] Hotlist Req

2016-04-04 Thread Sander Elias
@donald, Do as I do, use the right top menu to report abuse! Regards Sander On Monday, April 4, 2016 at 5:13:13 PM UTC+2, Donald Organ wrote: > > Can someone remove this person from the list? > > On Mon, Apr 4, 2016 at 9:49 AM, Jahnavi Y > wrote: > >> Dear Professionals,

[AngularJS] Re: $resource promise in Explorer 11

2016-04-04 Thread Jorge L.
Just a correction in the previous sample, it is actually: > > console.log(profile); instead of: > console.log(promise); Of course, this is not the reason of our problems with IE. On Monday, April 4, 2016 at 6:09:34 PM UTC+2, Jorge L. wrote: > > I'm testing a very simple angular resource: > >

Re: [AngularJS] Hotlist Req

2016-04-04 Thread Donald Organ
Can someone remove this person from the list? On Mon, Apr 4, 2016 at 9:49 AM, Jahnavi Y wrote: > Dear Professionals, > > > Below are the available consultants open to work on contract position. > Please share your requirements to *jahn...@csrinfotech.com >

[AngularJS] $resource promise in Explorer 11

2016-04-04 Thread Jorge L.
I'm testing a very simple angular resource: .factory('ProfileService', ['$resource', function($resource) { >return $resource('/api/users/me'); > }]); > ... > ProfileService.get().$promise.then(function(profile) { > console.log(promise); > }); > Although it has worked perfectly in

[AngularJS] accessing factory variables from multiple controllers

2016-04-04 Thread Rj Ewing
Hello, I'm new to angular and having trouble accessing the user from my UserFactory. My NavCtrl isn't recognizing when UserFactory.user is updated (after authentication) app.controller('NavCtrl', ['$scope', 'AuthFactory', 'UserFactory', function ($scope, AuthFactory, UserFactory) { var vm

[AngularJS] Angular ng-show and ng-hide For Dynamic Contents

2016-04-04 Thread Amit Swain
Hi All I have a list of Products and on each Product i have a 'Add To Cart' button ..once user clicks and adds i have to hide it and Show the remove and Add more Button..How can i achieve it using Angular..Its will not be the right way to declare this much of variables for all the Products...

Re: [AngularJS] Angular ng-show and ng-hide For Dynamic Contents

2016-04-04 Thread Donald Organ
I would suggest implementing product as a direct, this way each product card has its own scope. Then you can just build out the directive and have click binding to update which buttons should be shown. On Mon, Apr 4, 2016 at 3:11 PM, Amit Swain <284aksw...@gmail.com> wrote: > Hi All > I have a