[AngularJS] Template-driven form Reference variable (Material design)

2018-01-04 Thread Nitish kumar
Hello Team, I'm creating dynamic fields in angular Template- Driven form. But i'm unable to make Input reference variable name dynamic. What i'm doing is Where ' i ' is the index value of ngFor. Please, suggest me how can i make ref. variable name* unique for each fields*.

[AngularJS] Material Design vs Bootstrap (or both?)

2018-01-04 Thread Rich Leach
I'm going to be designing more and doing more layout work for Angular and wanted to know if the community has a preferred toolset? I've seen a lot of Material Design https://material.angular.io/ but I've done a lot with Bootstrap in the past so I found https://mdbootstrap.com/angular/ (which i

[AngularJS] Re: How to use a global variable in HTML and use it in typescript? (Angular4)

2018-01-04 Thread Reza Razavipour
if((window as any).standalone !== undefined) { console.log('standalone'); } seems to work just fine. It was a matter of getting past tsc only. On Thursday, January 4, 2018 at 12:26:58 AM UTC-8, Zlatko Đurić wrote: > > You could "teach" typescript that there is a "standalone" global variable,

[AngularJS] How to read Private Key(Certificate) from Pen Drive with Angular 2, when the browser has fetched the certificates... ?

2018-01-04 Thread Mayur Saini
How to read Private Key(Certificate) from Pen Drive with Angular 2, when the browser has fetched the certificates... ? -- You received this message because you are subscribed to the Google Groups "Angular and AngularJS discussion" group. To unsubscribe from this group and stop receiving emails

[AngularJS] Re: AngularJS passing function to modal ("this" is not referring to the controller I want)

2018-01-04 Thread Sander Elias
Hi Charly, I don't have an answer form the source you are showing. If you can reproduce your issue in a stackblitz/plunker/jsbin it becomes so much easier to help you. Regards Sander -- You received this message because you are subscribed to the Google Groups "Angular and AngularJS discussio

[AngularJS] Re: Angular - 2

2018-01-04 Thread danamanisha
hello want to learn angular with realtime examples checkout my channel https://www.youtube.com/watch?v=OwPLG1agi_A&list=PLoFTEfCXebzrJP5JlPm2n-jlIXQ2kFo8M On Thursday, December 31, 2015 at 2:57:28 PM UTC+5:30, Ankush Joshi wrote: > > Hello Guys, > > Can you pls suggest me some sites or pdfs to

[AngularJS] Re: Angular - 2

2018-01-04 Thread danamanisha
hello want to learn angular 4 with realtime example join my channel and stay updated https://www.youtube.com/channel/UC0qBmCO9CtX5_37WECkFkhw On Thursday, December 31, 2015 at 2:57:28 PM UTC+5:30, Ankush Joshi wrote: > > Hello Guys, > > Can you pls suggest me some sites or pdfs to begin with ang

[AngularJS] AngularJS passing function to modal ("this" is not referring to the controller I want)

2018-01-04 Thread Charly Terrier
Hi, I'm having issue while trying to use function of the *parent controller* of my *modal*. >From the *parent controller* I open a *modal*, in the *modal* I do actions and when I click on a button I want to use the function *parentOnChange* of the *parent controller.* To do this I pass the *

[AngularJS] Re: Angular 5 and Google index issues

2018-01-04 Thread Michael Ben-Nes
Well, Googlebot source is not open so the best we can do is to test the website with chrome ver 42. (which we did and it works as expected). Assuming there is a problem with googlebot crawling the site. I would expect Google to be more transparent about it. On Wednesday, January 3, 2018 at 6:39

[AngularJS] Re: How to use a global variable in HTML and use it in typescript? (Angular4)

2018-01-04 Thread Zlatko Đurić
You could "teach" typescript that there is a "standalone" global variable, e.g. in your module: declare const standalone: any; .. // further in component.. this.property = standalone === 'true' ? true : false; You could even give it some type instead of any. But then it's not on your imported