Re: [AngularJS] Re: JavaScript Tutorial - Tour of Heroes

2016-12-10 Thread verniagrogan via Angular
On Sat, 12/10/16, Daniel Zen wrote: Subject: Re: [AngularJS] Re: JavaScript Tutorial - Tour of Heroes To: angular@googlegroups.com Date: Saturday, December 10, 2016, 8:02 PM I highly doubt it. At this point I have fully embraced TypeScript. Ev

[AngularJS] Re: Unique email custom validation in FormGroup

2016-12-10 Thread Vipul Singh
can you show me html section ? On Friday, December 2, 2016 at 2:52:54 PM UTC+5:30, birjes...@3pillarglobal.com wrote: > > My Code is here: > > import { Component,OnInit } from '@angular/core'; > import { FormGroup, FormBuilder,Validators } from '@angular/forms'; > import { matchingPasswords } fr

[AngularJS] Re: Angular 2 *ngFor problem

2016-12-10 Thread Vipul Singh
do not use this keyword. solution would be like tht {{test.}} On Thursday, December 8, 2016 at 8:32:51 AM UTC+5:30, Dawg wrote: > > Hello, > > I'm missing something and I'm hoping someone here can help. > > Data is pulled from a database: > [{"prj_name":"TestProject One"},{"prj_nam

[AngularJS] Re: Angular 2 *nfFor, problem iterate through object array

2016-12-10 Thread Vipul Singh
you cant bind this object in UI,becouse Dom doesnt know this keyword coming from html On Friday, December 9, 2016 at 5:12:59 AM UTC+5:30, Dawg wrote: > > Hello, > > I searched the internet and still not able to resolve my problem and could > use some help. I also attached a image of console outp

Re: [AngularJS] Re: JavaScript Tutorial - Tour of Heroes

2016-12-10 Thread Daniel Zen
I highly doubt it. At this point I have fully embraced TypeScript. Even the requirement I had was dictated by the client. Although I am still aware of how to deal with Angular in ES6 without TypeScript, I don't use it much. And the syntax to use ES5 is ridiculous. -zen On Fri, Dec 2, 2016 a

[AngularJS] Re: How do I customize my Angular JS script for file upload?

2016-12-10 Thread Anshul Ghorawat
Hi Sander, Thanks a lot! I modified the code a bit and tried again. But, it doesn't seem to work still! What could be wrong here? View: Home

[AngularJS] Re: Add or update current URL parameter using angular's $location

2016-12-10 Thread Sander Elias
Hi Christy, This is not easy done within angular itself. If you think it's worth the effort, you can create your own URL rendering function outside angular, and use that. It is possible, but a lot of work. All that, just to make the URL look better? Regards Sander -- You received this messag

[AngularJS] Re: route to specified number of views in angularjs

2016-12-10 Thread Sander Elias
Hi Ashly, Wondering why you want to user to tell you how many employees they are going to enter? isn't it easier to let them add one at a time untill they are 'done'? Regards Sander -- You received this message because you are subscribed to the Google Groups "Angular" group. To unsubscribe f

[AngularJS] Re: How do I customize my Angular JS script for file upload?

2016-12-10 Thread Sander Elias
Katrick, You seem misinformed. Uploading files is not that hard with angular, and also not with xmlHTTPRequest directly. It is very well possible, and usually not worth the addition of another 3rth party (wich is written in JS itself!) Regards Sander -- You received this message because you

[AngularJS] Re: How do I customize my Angular JS script for file upload?

2016-12-10 Thread Sander Elias
Hi Ansul, You are pretty much on the good path! You need to set your transformRequest, otherwise angular will mess up your files. If you don't get it figured out, ping back to me, and I will reveal a bit more. (BTW if you search in this group for "upload file" you will find quite some hints..

[AngularJS] Re: How do I customize my Angular JS script for file upload?

2016-12-10 Thread karthick bala
Hi Anshul, Welcome to Angular!!! What you are trying to achieve is not possible at all. File upload can't be done via an AJAX call. This statement is true for vanilla JS itself. so, its obviously it applies for Angular. You can try some File Upload plugins for Angular. blueimp is a nice plugi