[AngularJS] Re: ngFor on Array of objects not updating DOM elements properly

2016-10-10 Thread SLV SNZ
Resolved: In order to get *all* DOM elements/objects inside ngfor updated: I had to create a new component, and then instanciate the component inside the ngFor. now elements are properly updated as they were in RC4... Le mardi 4 octobre 2016 11:25:46 UTC+2, SLV SNZ a écrit : > > After

[AngularJS] Re: [Angular2] navigation through arrow keys

2016-10-10 Thread vvvttt
I am new to angular 2. Can you please provide an example of how you achieved the navigation? Thanks. On Monday, February 1, 2016 at 3:55:34 AM UTC-7, HansMeise wrote: > > Thanks, didn't even know you could refer inside of the component to a > template variable. So this hint will also help in

[AngularJS] Re: Angular2, unable to retrieve data from a PHP mock data file...

2016-10-10 Thread Sander Elias
Hi Dawg, on php you are sending out your content, without putting it inside a data attribute. The json that goes down the line looks like this: [ { 'userID': '1', 'userName': 'user1', 'password': 'pass1' }, { 'userID': '2', 'userName': 'user2', 'password': 'pass2' }, { 'userID':

[AngularJS] Angular2 milliseconds in formatted date

2016-10-10 Thread Alex
Hi there, Can't find the way to print milliseconds in pipiline's formatted date like {{ mydate | date: 'hh:mm:ss.sss'}} http://plnkr.co/edit/UiIMzimrzY0hRvpNN6Ai Does anybody know what is the right way to do that? Thanks -- You received this message because you are subscribed to the Google

[AngularJS] Angular 1 and 2 hybrid app - "require is not defined"

2016-10-10 Thread Ed Pelc
You need to declare require. Take a look at the ts docs on declarations. -- 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

[AngularJS] [Angular 1] Progress bar

2016-10-10 Thread Isaac Silva
Hello everyone, I have a servlet in Java that receives a GET to process some stuff, then, it returns integer values as a progress of the proccess(a % value). My doubt is, how can I get these data from the server(assincronous) with AngularJS (to create a progress bar)? It needs Ajax or can I do

[AngularJS] Re: Angular 1 and 2 hybrid app - "require is not defined"

2016-10-10 Thread Matt Zalen
I appreciate the response, but if that were true, why does it work when I set the tsconfig.json module to "umd"? On Tuesday, October 11, 2016 at 2:39:04 AM UTC+3, Ed Pelc wrote: > > You need to declare require. Take a look at the ts docs on declarations. -- You received this message because

[AngularJS] Angular 2 - Http service issue in example of the ebook

2016-10-10 Thread neuber sousa
Hi guys, I have this ebook: https://drive.google.com/file/d/0B9gPdWq4OH-XRkw0UGZQVGp1NGc/view?usp=sharing (Please pay attention to pages: *47, 119, 124* - AngularBase and AngularHttp) The problem is: I can't up the application (AngularHttp) only with http://127.0.0.1:8080 (*without click in

[AngularJS] Re: Angular2, unable to retrieve data from a PHP mock data file...

2016-10-10 Thread Dawg
Hi Sander, Thanks for your reply back.. After reading your reply I noticed another reply/post by you that helped with my issue, didn't understand the fixed but it works. I ended up removing the data from i removed the "data" from .then(response => response.json().data as UserType[]) which