[AngularJS] Re: angular2 tools

2016-01-03 Thread Ankush Joshi
hello, Chrome extension - "Chrome dev editor" - try this add on app On Thursday, December 31, 2015 at 5:22:13 PM UTC+5:30, Philippe Couas wrote: > > Hi, > > We recommend me Aptana Studio ? It's a good tool ? > > Regards > > > Le lundi 28 décembre 2015 14:33:10 UTC+1, Philippe Couas a écrit

[AngularJS] Re: Angular 2 - implementing my own dialogs?

2016-01-03 Thread Ankush Joshi
Hey, This might help you *http://archugs.blogspot.in/2014/12/angularjs-ngDialog.html* On Monday, September 21, 2015 at 11:20:27 PM UTC+5:30, Vern Jensen wrote: > > I'm looking to implement custom dialogs in Angular 2, similar to what is > built into Angular 1, so I can port code there. > >

[AngularJS] Re: routing and ng-include without web server

2016-01-03 Thread Ankush Joshi
Hello Jake, As per my experience, if you are going to use ng-route, you need a server like wamp,xamp, tomcat , anyone... for better result i will suggest to use visual studio will runs asp server and will resolve your errors. Hope it will help you On Monday, January 4, 2016 at 8:16:11 A

[AngularJS] Re: Tag Script , Java Script

2016-01-03 Thread Ankush Joshi
Hey.. You are right its Typescript... that was mistake... Thanks for help ... On Thursday, December 31, 2015 at 11:16:18 PM UTC+5:30, Günter Zöchbauer wrote: > > On Thursday, December 31, 2015 at 10:43:59 AM UTC+1, Ankush Joshi wrote: > > Hello Guys, > > > > > > I just saw that angular2 is

[AngularJS] Re: Angular - 2

2016-01-03 Thread Ankush Joshi
Thanks.. Vincent On Thursday, December 31, 2015 at 4:27:59 PM UTC+5:30, Vincent Zhu wrote: > > As far as I know, there is very few info around. I think the best doc > would be the official one, you can take the QuickStart, and then go for the > tutorial. -- You received this message because y

Re: [AngularJS] Angular2, proper way to redirect to login route?

2016-01-03 Thread Mark Rathwell
I'm interested in this also. I have spent most of the day trying to make something work by overriding the router-outlet, but have only come up with dirty hacks that sort of work. There is literally zero information out there on authentication with Angular 2 that is still current and valid. It is

[AngularJS] Re: Angular 2 - implementing my own dialogs?

2016-01-03 Thread talmog
+1 On Monday, September 21, 2015 at 10:50:27 AM UTC-7, Vern Jensen wrote: > > I'm looking to implement custom dialogs in Angular 2, similar to what is > built into Angular 1, so I can port code there. > > I found a project online that does this using Angular 2 Alpha 26, but > attempting to get i

[AngularJS] Re: Angular2 + Google API ( endpoints)

2016-01-03 Thread Kumar Ranjan
Hi Atali, i have created services for Google API. Please have a look at below example, here i am calling basically loadAPI and then after loading the labels list . getMailLabels(){ return new Promise((resolve,reject) => gapi.client.load('gmail', 'v1',function(){ var request =

Re: [AngularJS] Re: Can I start using angular 2.0 today?

2016-01-03 Thread gitted
Say A2 gets released with a version 1.0 in Q1, it will then take time for other libraries like say Bootstrap UI to get converted to probably Q4 before things are really stable right? On Wednesday, November 25, 2015 at 12:30:26 AM UTC-5, Donald Spears wrote: > > In addition to following the style

[AngularJS] routing and ng-include without web server

2016-01-03 Thread Jake K.
Hello, I was trying to create a small application with angular which needs to include 3 different templates. However, when I use the ng-router I get an error related to CORS. Then I try using the ng-include directive and again I get the same error. Can anyone explain to me how to use partials

[AngularJS] Angular2 adding external JS files

2016-01-03 Thread David Ten Sing
I am using Froala editor with my angular2 app and building a blog component. When Froala is initialised, the Froala scripts cannot get n.events of type mousemove. I get the error cannot find property pageX of undefined. For an example of the issue please visit the following link. http://demo.ma

[AngularJS] Re: Any Material Design libraries for Angular 2.0 applications?

2016-01-03 Thread Günter Zöchbauer
It is how it is. Material components can't be built for Angular2 before Angular2 is ready. It just became useable recently. Work is in progress already, but as we know, complex software projects usually aren't completed within a few days. On Sunday, January 3, 2016 at 4:59:12 PM UTC+1, Raul wrot

[AngularJS] Re: Any Material Design libraries for Angular 2.0 applications?

2016-01-03 Thread Raul
Thank you Günter! As it seems it will take quite a lot of time to have a working alternative :-( It is strange as for many people Angular 2 can only be used if you can provide the material look and feel. -- You received this message because you are subscribed to the Google Groups "AngularJS"

[AngularJS] Re: Any Material Design libraries for Angular 2.0 applications?

2016-01-03 Thread Günter Zöchbauer
https://github.com/angular/material/issues/6458 mentions MDL and http://justindujardin.github.io/ng2-material/ On Sunday, January 3, 2016 at 3:14:45 PM UTC+1, Raul wrote: > > I am looking for a material design library to be used with Angular 2.0. > > Material Design Lite (MDL) was quite easy to

[AngularJS] Any Material Design libraries for Angular 2.0 applications?

2016-01-03 Thread Raul Rodriguez
I am looking for a material design library to be used with Angular 2.0. Material Design Lite (MDL) was quite easy to setup, but I get some problems when I try to create components as I would like to design them. For example I would like my main index.html to look something like this (just the

[AngularJS] Re: Best way to use AngularJS with Google API?

2016-01-03 Thread Rahul Dhawani
Hi Jake, I see you are using timeout for 1sec to load all the necessary file(which is loaded automatically), but do you think its the right way to it? I mean what if internet connectivity is slow and it takes more than 1sec to load? I was also stuck to same problem, came with exact same solution