Re: [AngularJS] Re: which plugin should used to crate table with more columns and rows with search,pagination and column sorting etc functionality in angular1.

2016-08-09 Thread Sunny Firodiya
Hi thanks . which one you will suggest if I have to choose between ui-grid vs smart-table? On Tue, Aug 9, 2016 at 9:35 PM, Tito wrote: > I have used this in the past > > http://ui-grid.info/ > > > On Monday, August 8, 2016 at 10:16:24 PM UTC-7, sf wrote: >> >> Hi >> >> which

[AngularJS] Angular 2 - RC5 - Available

2016-08-09 Thread Paulo Coutinho
Hi, Angular 2 RC5 - NgModules, Lazy Loading and AoT compilation http://angularjs.blogspot.com.br/2016/08/angular-2-rc5-ngmodules-lazy-loading.html Ty. -- You received this message because you are subscribed to the Google Groups "AngularJS" group. To unsubscribe from this group and stop

[AngularJS] angular2 guards

2016-08-09 Thread oto lolua
I use angular2 guards in this case authGuard, which looks like this: let isLoggidIn:boolean = false; this.userService.isUserLoggedIn$.subscribe(param => { isLoggidIn = param; }) if(isLoggidIn) { return isLoggidIn; } else { this.router.navigate(['/home']); return

[AngularJS] Re: Launching websites

2016-08-09 Thread Tito
not exactly your situation but have you looked into gulp? not sure if you are using it or not but thought to throw that out there. if you come up with a streamlined idea you should market it On Monday, August 8, 2016 at 8:20:17 AM UTC-7, david...@gmail.com wrote: > > Hi, > > This is slightly

[AngularJS] Angular2 route pathMatch = 'prefix' doesn't seem to work

2016-08-09 Thread FANG Colin
Hi I am wondering if someone could help me out here. Am I using router wrong? Or the behaviour of `prefix` isn't what I expected. Current behavior path: 'a' pathMatch: 'prefix' doesn't match url 'aa' in A B Reproduction of the problem

[AngularJS] Re: which plugin should used to crate table with more columns and rows with search,pagination and column sorting etc functionality in angular1.

2016-08-09 Thread Tito
I have used this in the past http://ui-grid.info/ On Monday, August 8, 2016 at 10:16:24 PM UTC-7, sf wrote: > > Hi > > which plugin should used to crate table with more columns and rows with > search,pagination and column sorting etc functionality? > -- You received this message because you

[AngularJS] Angular 2 vs React

2016-08-09 Thread Kathreen Riya
Angular 2 and React are supreme platforms having a good core of developers favoring on both sides and the article details some major highlights of angular 2 vs React. Angular is a framework, it provides significantly more opinions and functionality out of the box. With React, you typically

[AngularJS] Hunting For the best angular2 project structure?

2016-08-09 Thread sumit
Hi Guyz, Greetings !! I'm new in angular2, looking forward to work in it. I've started a project but not sure whether m following a standard and conventional folder structure for angular2. Below is the snapshot of my *current folder structure* and here's the *github link

[AngularJS] [ Angular2 ] call obsevable in other obsevable

2016-08-09 Thread mathieu galoseau
Hello, I use Contentful with GET Requette like this: return this.http.get(url) .map(res => res) .map((items: any) => { //blablabla ... Rate= this.getsCurrentUserRate(item.sys.id);

[AngularJS] Why Angular 2 app has to be downgraded to use Angular 1 Directive?

2016-08-09 Thread njm
We have developed many Angular 1 components and would like to use it in our Angular 2 application. But the documentation describes that we have to downgrade the Angular 2 application in order to upgrade and use the Angular 1 directive. Why is this? Here we are not upgrading NG1 app, but we want