[AngularJS] Re: Restraint GET service to row operated by user

2016-04-15 Thread Tito
Not sure if this is what you are looking for? {{ room.roomname }} On Friday, April 15, 2016 at 9:40:53 PM UTC-7, Enrique del Bosque wrote: > > I have a table with some rows (ng-repeat), each row has a butto

[AngularJS] Restraint GET service to row operated by user

2016-04-15 Thread Enrique del Bosque
I have a table with some rows (ng-repeat), each row has a button and a select box, when button is triggered a GET service populates the select box, any one knows how to restrain the call to the row that was operated by the user? -- You received this message because you are subscribed to the Go

[AngularJS] Re: Angular JS binding when back from diffrent page

2016-04-15 Thread Anthoni Gardner
Hi, The way to pass information between controllers (wether it's a single page application or multi page application) is via service. You create a service with your variable inputs. In controller A you Dependency Inject your service and then set your inputs from the controller. Then in Controlle

[AngularJS] Anyone here tried using ng2-bootstrap?

2016-04-15 Thread Vern Jensen
This looks really cool: http://valor-software.com/ng2-bootstrap/ but when I try pasting the Typeahead html/js into my angular2 beta 15 app to test it, I get this very cryptic console error: *Error: SyntaxError: Unexpected token <(…)* ZoneDelegate.invoke @ angular2-polyfills.js:390 Zone.

[AngularJS] Re: custom html component using the formbuilder in angular 2

2016-04-15 Thread yogesh bansal
component code export class MyInfoComponent{ myInfoForm : ControlGroup; userProfile:UserProfile; constructor(fb:FormBuilder,private _validationService : ValidationService){ this.userProfile = new UserProfile(); this.myInfoForm = fb.group({ 'phone' : [thi

[AngularJS] custom html component using the formbuilder in angular 2

2016-04-15 Thread yogesh bansal
Hi i am trying to create a custom radio button using the formbuilder in angualr 2. Below is the code snippet. I just started to learn angular 2. i am getting the error in console "angular2.dev.js:23941 EXCEPTION: No value accessor for '' in [myInfoForm.controls['gender'] in MyInfoComponent@51

Re: [AngularJS] AngularJS Chart for StockExchange

2016-04-15 Thread Tito
what errors do you see in your browser console. what browser are you using? are you running any kind of server? -- 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 angu

Re: [AngularJS] AngularJS Chart for StockExchange

2016-04-15 Thread Tito
please post sample data On Friday, April 15, 2016 at 12:40:17 PM UTC-7, samy chihi wrote: > > Hi Tito, > > I just downloaded the chart: http://plnkr.co/edit/5vQOj9?p=preview > Then downloaded d3.js and angular.js > but i'm still getting white page ! > what should i do ? > > > On Friday, April 15,

Re: [AngularJS] AngularJS Chart for StockExchange

2016-04-15 Thread samy chihi
Hi Tito, I just downloaded the chart: http://plnkr.co/edit/5vQOj9?p=preview Then downloaded d3.js and angular.js but i'm still getting white page ! what should i do ? On Friday, April 15, 2016 at 8:03:01 PM UTC+1, Tito wrote: > > please post sample data here? as json or csv or tsv. You might be

Re: [AngularJS] AngularJS Chart for StockExchange

2016-04-15 Thread Tito
please post sample data here? as json or csv or tsv. You might be interested to look at D3.js. On Friday, April 15, 2016 at 11:26:18 AM UTC-7, samy chihi wrote: > > Hi guys, > > I downloaded this into my pc, unzipping the directory, clicking on > index.html and it is not working, i'm getting whi

Re: [AngularJS] AngularJS Chart for StockExchange

2016-04-15 Thread samy chihi
Hi guys, I downloaded this into my pc, unzipping the directory, clicking on index.html and it is not working, i'm getting white webpage. Do you have any idea how to donwnload and use this chart please ? Thanks in advance. Samy On Friday, April 15, 2016 at 6:27:57 PM UTC+1, samy chihi wrote: >

Re: [AngularJS] AngularJS Chart for StockExchange

2016-04-15 Thread samy chihi
Thanks again Andras :) I'm trying the website you suggested, and i will update this post later. Samy On Tuesday, April 12, 2016 at 1:16:57 AM UTC+1, Tito wrote: > > maybe this might help > > http://coderexample.com/restful-api-in-lumen-a-laravel-micro-framework/ > > On Monday, April 11, 2016 at 4

[AngularJS] [angular 2] Is it necessary to dispose of Observable subscriptions in ngOnDestroy()?

2016-04-15 Thread Brian Kotek
One thing that I'm not clear on is whether I'm required to manually dispose Observable subscriptions I set up in a component. For example say I do this in ngOnInit(): this.someService.somethingChanged.subscribe( ( value ) => this.onSomethingChanged( value ) ); Am I required to store that subscr

[AngularJS] HOT LIST : GATEWAY SOLUTIONS, INC.

2016-04-15 Thread narendar gateway
Hi Professionals, Greetings from *GATEWAY SOLUTIONS, INC**.,* Please let me know if you have any Direct Client requirements available with you for our consultants. Mail your Direct Client requirements to naren...@gatewaysi.com . Please add my Email ID to your mailing list and send me your requi

[AngularJS] [angular2] Differents behavior between Chrome and FireFox

2016-04-15 Thread Ahmed GMATI
Hi guys, I am a newee using Angular 2. I developped some forms with Typesript and it is working with Chrome but doesn't with FireFox. First of all, I tried the "two way" data bindings with both browsers : Chrome has a correct behavior but FireFox doesn't take in consideration the binding with

[AngularJS] Post data using angular js

2016-04-15 Thread testambit
Hello, I have to post data to MVC controller's action using angular http.post method. Below is the implementation in MVC. I have to replicate the same in angular js. return RedirectToAction("Authorize", new RouteValueDictionary(new Dictionary()

[AngularJS] Re: MVC 5 + Angular JS - Redirect to another website from controller action

2016-04-15 Thread testambit
Thanks Sander. Finally I have implemented a work around rather than enabling the CORS on azure. On Tuesday, April 12, 2016 at 11:25:58 AM UTC+5:30, Sander Elias wrote: > > Hi Anand, > > Here I found this article >

[AngularJS] Angular2 - Unhandled Promise rejection: No provider for ElementRef

2016-04-15 Thread Paul Belowee
I'm want to get reference to dom node of a component. Here is the code: import {Component, Inject, ElementRef} from 'angular2/core'; declare var ol: any; @Component({ selector: 'olmap' }) export class MapComponent { elementRef: ElementRef; constructor(@Inject(ElementRef) elementRef