![]() |
I amĀ an independent software consultant specializing in the development of successful Web (AngularJS) and Windows (.NET) applications. I have authored several technical books and speak at conferences.
|
![]() |
I publish Pluralsight courses including:
Click here for a list of all of my Pluralsight courses. |
![]() |
For work in support of software developers, I have been recognized with the Microsoft Most Valuable Professional (MVP) award.
|
Ramachandran — July 11, 2016 @ 7:11 am
Thank you for this the course was very intuitive but I am having one issue when using HTTP.GET and serving the data asynchronously I am getting an error at NGFOR in the template. It says undefined property, length, as the products array does not have data. I tried to put the NGFOR in ASYNC also but that is also not working. When the app runs I think the get does not return data yet and therefore the products array is empty. When I return the JSON data from the service without HTTP.GET it work fine. Any advice?
deborahk — July 11, 2016 @ 2:13 pm
Is this what your table tag looks like:
table class=”table” *ngIf=”movies && movies.length”
If the first part of the if expression (“movies &&”) is missing, you will see this error.
JoeH — July 12, 2016 @ 2:28 pm
Hi Deborah:
Just got done watching the “Angular2: Getting Started” Pluralsight Course. Great course. Learned a lot. You make it very easy to understand.
Was wondering if the slides presented in the course are available?
Thank You,
Joe
deborahk — July 12, 2016 @ 2:33 pm
If you have a Pluralsight Plus membership, then the slides come with the sample code.
JoeH — July 12, 2016 @ 2:37 pm
Ah… Thank you!! I see them.
Joe
Jalpesh Vadgama — July 12, 2016 @ 9:39 pm
I have seen your most of courses on pluralsight and You are doing great. Congratulations for being Google Developer Exprert for web technologies.
deborahk — July 18, 2016 @ 2:30 pm
Thanks!
GURJEET SAINI — July 15, 2016 @ 9:08 am
Hi Deborah
just watched this course on plural sight and you have done an excellent job.
Thanks
deborahk — July 18, 2016 @ 2:30 pm
Thank you!
greg luo — August 9, 2016 @ 6:00 am
Dear Deborah,
I am very appreciate your video in Pluralsight. I am new to Angular2.
I want to use angular2(typescript) in asp.net MVC of Visual studio 2013–not Visual Studio 2015. But I cannot find any example about MVC+Angular2(typescript) in VS2013. Can you help me? Thanks a lot.
Looking forward to hearing from you.
Yours sincerely,
Greg
deborahk — October 19, 2016 @ 8:55 am
Any way you can upgrade to VS 2015? If so, then you can use the new Angular 2 project template for MVC here: http://blog.stevensanderson.com/2016/10/04/angular2-template-for-visual-studio/
Robert Heuser — August 10, 2016 @ 10:26 am
Hello there Deborah,
I really enjoyed your PluralSight course Angular 2: Getting Started. The starting project was very easy to follow.
How do you debug it in Visual Studio 2015?
Thanks
Robert
deborahk — October 19, 2016 @ 8:57 am
Your best bet is to use the browser tools (F12).
Phil — September 29, 2016 @ 6:16 am
Hi Deborah,
(your email contact form does not work, so I’m posting this as a comment)
Really loved your content (some of the best on Pluralsight for sure), and I wanted to share some feedback privately.
I think the vocal style used in this course could be improved a lot. It comes across as quite monotone and can often feel synthesized and unnatural, which I found an obstacle to immersion.
I’ve seen you on youtube and you sound lovely and human-like, so I wanted to share just in case it hasn’t been mentioned.
I really enjoyed your content, and just followed you on twitter to see what you’re involved in.
Thanks for the great course, look forward to the update.
Best,
Phil
deborahk — October 19, 2016 @ 9:09 am
Thank you for your post. Can you tell me which course you are referring to? In some of my earlier courses, the audio was “flattened” to even out the audio levels which had a negative impact on the tone. I stopped doing that recently. If this is referring to a more recent course then that’s not the issue.
Thanks.
Ayz Pat — October 12, 2016 @ 11:52 pm
How to use mask in Angular2?
Ayz Pat — October 12, 2016 @ 11:57 pm
Looking for some masking an input fiels in ng2 .. I need an input that accepts 2 numbers only between 18 to 60. How can I mask the field??
deborahk — October 19, 2016 @ 9:05 am
You can build your own custom validator. There are instructions in the Angular documentation here: https://angular.io/docs/ts/latest/cookbook/form-validation.html#!#custom-validation
Alternatively, you can check here: https://angular.io/resources/ under UI components for a list of possibilities.