[AngularJS] Exporting convention explicit vs implicit

2016-09-30 Thread Tom Dodson
when you import Component import {Component} from '@angular/core' The resolution path is... @angular/core/index.ts -> ./src/core -> @angular/core/src/core.ts The content of core.ts is here.

[AngularJS] Communication between components in angular 1.5

2016-09-30 Thread S kumar
I am working on components in Angular 1.5. I have a requirement similar to this http://stackoverflow.com/questions/36033940/how-to-pass-data-between-child-components-in-angular-1-5-not-using-scope . In the above plunker I have two components Header and Main. If I click on List button

[AngularJS] Angular Universal -- Angular 2

2016-09-30 Thread James Freund
When testing robot crawlers to see what gets picked up thanks to the server rendering my entire application gets crawled! Which is awesome! However, I'm noticing that it doesn't pick up that the title is getting changed using @angular/common and importing the Title service to use the setTitle

[AngularJS] Re: error 404 bootstrap with angular 2 final release

2016-09-30 Thread Guto Godoy
Hi Sander Elias, I installed the bootstrap intorducing in package.json the line: "Bootstrap": "^ 4.0.0-alpha.4" and in index.html I inserted the line: When running ng serves, the chrome shows the error 404 for bootstrap.min.css file and is not applying the style. I'm using Anglular 2.1.0

[AngularJS] Angular1: How do I inject a div layer into an animated div layer?

2016-09-30 Thread 'Tony Starke' via AngularJS
*Hi, guys and gals. Ok, I am having trouble attempting to bind a div layer inside of a sliding animated menu div after a button click. Ideally, every button click should show a different div layer with different data after the animated slide. Here is the code:* * * * Collapsible Menu

[AngularJS] Re: Creating a generic data service in Angular 2

2016-09-30 Thread Stephen Rios
That's exactly what I was thinking would work best for REST-heavy SPAs. Good to know I was on the right track. Thanks Sander. On Thursday, September 29, 2016 at 12:59:06 PM UTC-5, Sander Elias wrote: > > Hi Stephen, > > What I did was create a rest service, that I can provide to components. >

[AngularJS] Re: naming conventions

2016-09-30 Thread 'Jörg Hohwiller' via AngularJS
Already Angular Coders themselves do it as suggested and do not follow own angular conventions. See e.g.: https://github.com/angular-ui/ui-router/tree/master/src/url -- You received this message because you are subscribed to the Google Groups "AngularJS" group. To unsubscribe from this group

[AngularJS] Urgent Position::Sr. Java Developer::Ann Arbor, MI || Need GC and US Citizen Only

2016-09-30 Thread rahul goswami
Hi Need GC and US Citizen Only Need Local Candidate Please share profile at rahulg...@onsinteractive.com *Job Title: Sr. Java Developer* *Location: Ann Arbor, MI* *Job Type: Contract job* *Job ID:* *16-01741* *Primary Initiative:* The Senior Software Engineer will perform complex

[AngularJS] Urgent Position:: Android Developer::Ann Arbor, MI ||| Need GC and US Citizen Only

2016-09-30 Thread rahul goswami
Hi *Need GC and US Citizen Only* Please share profile at rahulg...@onsinteractive.com *Position title: Android Developer* *Location Ann Arbor, MI* *Job type: Contract * *Job ID: 16-01737* *Description:* Take on this challenging position, and thrive at the forefront of cutting –edge

[AngularJS] Bootstrap doesn't working with angular2 components

2016-09-30 Thread Navaneetha Krishnan S
CSS/Bootstrap doesn't work when it is rendered in a angular2 component. If I try to render the html contents in Index.html file (with proper references for CSS,JS) the application/functionality works fine. But when the same html contents along with CSS classes is rendered in the angular2

[AngularJS] Re: angular 2 heroes tutorial - using a server for data

2016-09-30 Thread norricorp
I added the following console messages getHeroes(): Promise { return this.http.get(this.heroesUrl) .toPromise() .then(response => { console.log("service response text " + response.statusText); console.log("service response data " +

[AngularJS] naming conventions

2016-09-30 Thread 'Jörg Hohwiller' via AngularJS
Hi there, I just want to question your suggested naming conventions: https://angular.io/docs/ts/latest/guide/style-guide.html#!#02-02 https://angular.io/docs/ts/latest/tutorial/toh-pt3.html#!#naming-conventions IMHO you should follow the TypeScript conventions from Microsoft - the makers of

[AngularJS] Re: angular 2 heroes tutorial - using a server for data

2016-09-30 Thread norricorp
Hi Sander, I do not think it is a CORS issue because I did have CORS errors in the browser debugger console. These stopped when I added a grails plugin for the data server. Because of the log messages from Tomcat, I do think that is doing its job so the problem is somewhere inside the angular

[AngularJS] Re: Slow rendering of an *ngFor list view

2016-09-30 Thread Birowsky
Whoever helps us out with this, gets paid: https://www.codementor.io/dashboard#/active-requests/9638767805 -- 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] Re: angular 2 heroes tutorial - using a server for data

2016-09-30 Thread norricorp
Just to add, how can the URL be null when the there is a record in the tomcat log showing a 200 response to a request? > -- 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: Directive delegated function in directive controller doesn't pass parameters?

2016-09-30 Thread mightyplow
Thank you very much! Am Donnerstag, 18. Oktober 2012 06:33:36 UTC+2 schrieb Jay B: > > After some searching, I found the fix to pass parameters to a delegated > function in a directive. I don't believe this is clearly explained / > documented, so hopefully this will help someone out. > > See

[AngularJS] Slow rendering of an *ngFor list view

2016-09-30 Thread Birowsky
The detailed discussion is in StackOverflow: http://stackoverflow.com/q/39778634/592641 But here's the jist of it: I'm rendering out a list view of quite complex component using *ngFor. Instead of what i expected to be out-of-the-dom html construction and single push to render it into the

[AngularJS] Re: angular 2 heroes tutorial - using a server for data

2016-09-30 Thread norricorp
> > Hi Sander, > I do not think it is a CORS issue because I did have CORS errors in the browser debugger console. These stopped when I added a grails plugin for the data server. Because of the log messages from Tomcat, I do think that is doing its job so the problem is somewhere inside the

[AngularJS] .success of $http get -Angular js Equivalent in Angular 2

2016-09-30 Thread Santhosh Kumar S
Hi, My requirement is to get the data from a webapi and do some calculations, i am unable to catch exactly when my function returns the the data from webapi. In angular 1 I used to write code in .success block which fires when the data is returned from webapi, now in angular 2 I am

[AngularJS] Re: Reading a .txt file from Angular 2 Typescript

2016-09-30 Thread Santhosh Kumar S
HI Sander, Thanks That really worked and my requirement changed from .txt to .json, Regards Santhosh On Thursday, September 29, 2016 at 11:30:23 PM UTC+5:30, Sander Elias wrote: > > Hi Santhosh, > > Yes, put the text file on your server, and use the http to fetch the file, > > Regards >

[AngularJS] In angular2, are there any methods just like $compile() ?

2016-09-30 Thread yisense101
In angular2, are there any methods just like $compile() ? -- 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 this