[AngularJS] Fwd: Us congress hearing of maan alsaan Money laundry قضية الكونغجرس لغسيل الأموال للمليادير معن الصانع

2017-07-01 Thread sami kamal
YouTube videos of U.S. Congress money laundering hearing of Saudi Billionaire " Maan Al sanea" with *bank of America* and The owner of Saad Hospital and Schools in the Eastern Province in *Saudi Arabia* and the Chairman of the Board of Directors of Awal Bank in *Bahrain*

[AngularJS] Re: How to Select First row index of P-dataTable in Angular ?

2017-07-01 Thread Zlatko Đurić
On Thursday, June 29, 2017 at 11:22:24 AM UTC+2, har...@rapidd.net wrote: > > > I am showing some data in P-dataTable but i want to put input text field > on click on first row of table only (I am getting inout box but get > repeated through out of thee table). > This should be really easy to

[AngularJS] Re: angular2 and lite-server

2017-07-01 Thread lazar
Well it's true, but what if I use lite-server behind Nginx or Apache? On Saturday, July 1, 2017 at 7:20:35 PM UTC+3, Sander Elias wrote: > > Hi, > > There is no safety of any kind in lite-server. It's a bit as surfing the > internet with a Windows XP computer without firewall, and antivirus.

[AngularJS] Re: angular2 and lite-server

2017-07-01 Thread Sander Elias
Hi, There is no safety of any kind in lite-server. It's a bit as surfing the internet with a Windows XP computer without firewall, and antivirus. Can be done, but you are sure you are going to catch something unpleasant pretty soon ;) Regards Sander -- You received this message because you

[AngularJS] angular2 and lite-server

2017-07-01 Thread lazar
I'm now learning Angular 2 and I can see that the tutorials are using lite-server for serving static files. I've read that lite-server is a development-only server, but what's actually the reason it cannot be used in production? Thanks. -- You

[AngularJS] Re: How Do I call the function with ng-model in AngularJs?

2017-07-01 Thread Sander Elias
Hi Kapil, try: Regards Sander -- 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 from it, send an email to angular+unsubscr...@googlegroups.com. To post to this

[AngularJS] Re: How to Select First row index of P-dataTable in Angular ?

2017-07-01 Thread Sander Elias
Hi Harsh, Can you build a plunk to show us what it is you are after? Regards Sander -- 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 from it, send an email to

[AngularJS] Re: cloning forms in angular js

2017-07-01 Thread Sander Elias
Hi Surbhi, You have a single users array, that you reuse in all your forms. As this is the same array for each form, all mutations you make to it, will be reflected into every display of it. Regards Sander -- You received this message because you are subscribed to the Google Groups

[AngularJS] Re: Solution for [Violation] Added non-passive event listener to a scroll-blocking 'touchstart' event

2017-07-01 Thread Sander Elias
Hi Nirmal I'm not even sure this is an angular warning. However, it holds both the cause and the solution. In your app somewhere you added something to a TouchStart. This something is doing some form of calculation.Change that code in such a way, that this doesn't happen anymore (moving it to

[AngularJS] Re: angular 2

2017-07-01 Thread Sander Elias
Hi Mel, did you try searching for that text, and see where it originates? Regards Sander -- 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 from it, send an email to

[AngularJS] Re: switching from System JS to angular CLI

2017-07-01 Thread Sander Elias
Hi Reza, With the cli you do a production build, that builds a dist folder. Add those files to your jar, and you should be good. Regards Sander -- You received this message because you are subscribed to the Google Groups "Angular and AngularJS discussion" group. To unsubscribe from this

[AngularJS] Re: Angular 1 - Custom directive for collection checkbox

2017-07-01 Thread Sander Elias
Hi César, You are using a jQeury bind to attach your click handler. This click happens outside of AngularJS's field of sight. If you do something like this, you need to notify angular that you have changed something behind its back, so it can update. In a case like this, I think I would use