So true! Using this series to understand and practise on angular, doing all the exercises he suggests and I just love it. I'd recommend this channel to anyone who wants to learn Angular. Thanks sir, much apprecciated effort.
Thanks for your efforts.. just with 6-8mins video you're covering one topic and making it understandable 🔥 Excellent.. I have some doubts please clarify.. 1: for switch case using property binding.. you assigned lucky number to [ngSwitch]= lucky number .. then used *ngSwitchCase... Do we need to use [ngswitch] only here or we can give any? 2: For ngfor there are odd even first last..some more options please try to cover those 3: Ngforof trackby 4: please cover ng template ng content too
Thank you very much for your valuable comments. Actually I am trying to cover the topic in less than 10 mins because if it goes beyond 10 mins, people are lacking interest in watching the video. It is difficult to grow the education based youtube channel. And, to answer your question ngSwitch is the directive and so we need to give that, only then angular will be able to understand that. But it accepts any expression not only number. I just used number for demo purpose. And, I am also thinking about creating another series for advanced use cases. In that series, I will definitely cover all the other topics you have requested.
To be honest, I have never seen this much informative series on Angular on TH-cam, but it is bit fast when you are explaining, screen changes are also speedy so not getting much time to think about what is written. If speed is slow, it will help a lot to learners like me.
Yes. I agree. Some of my initial videos I uploaded are fast. I got the same feedback from other subscribers too. But I believe I have slowed down a lot after that. You can check any recently posted videos. Thanks for your valuable feedback.
Also define the standard property 'appearance' for compatibilitycss(vendorPrefix) 🚨 Property is nonstandard. Avoid using i what shall i do on the bootstrap step
I am not maintaining the source codes used in the video because I used that for recording purpose. Sometimes I use the same program for different concept. But if you follow the exact steps it will work. You can also post your doubts here. And I suggest you to do the exercises I tell in the end of the video. For that, I have provided the source code in GitHub. You can get the link from the description of that video
u deserve much more subscribers .always straight to point no unneessary dialouges
Thank you very much
So true! Using this series to understand and practise on angular, doing all the exercises he suggests and I just love it. I'd recommend this channel to anyone who wants to learn Angular. Thanks sir, much apprecciated effort.
nice tutorials simple and clear.
Thank you very much
This video is really great. It would really help if you just slow down a little bit.
Thank you so much. My initial days videos were fast. Sorry about that. Please check some of my recent videos.
Best Tutorial
Thank you so much.
Thanks for your efforts.. just with 6-8mins video you're covering one topic and making it understandable 🔥 Excellent.. I have some doubts please clarify..
1: for switch case using property binding.. you assigned lucky number to [ngSwitch]= lucky number .. then used *ngSwitchCase... Do we need to use [ngswitch] only here or we can give any?
2: For ngfor there are odd even first last..some more options please try to cover those
3: Ngforof trackby
4: please cover ng template ng content too
Thank you very much for your valuable comments. Actually I am trying to cover the topic in less than 10 mins because if it goes beyond 10 mins, people are lacking interest in watching the video. It is difficult to grow the education based youtube channel.
And, to answer your question ngSwitch is the directive and so we need to give that, only then angular will be able to understand that. But it accepts any expression not only number. I just used number for demo purpose.
And, I am also thinking about creating another series for advanced use cases. In that series, I will definitely cover all the other topics you have requested.
To be honest, I have never seen this much informative series on Angular on TH-cam, but it is bit fast when you are explaining, screen changes are also speedy so not getting much time to think about what is written. If speed is slow, it will help a lot to learners like me.
Yes. I agree. Some of my initial videos I uploaded are fast. I got the same feedback from other subscribers too. But I believe I have slowed down a lot after that. You can check any recently posted videos. Thanks for your valuable feedback.
Also define the standard property 'appearance' for compatibilitycss(vendorPrefix)
🚨 Property is nonstandard. Avoid using i what shall i do on the bootstrap step
Sorry I didn't get you. This video is more focused towards angular concepts.
Tutorial codes ka hai uske source codes?
I am not maintaining the source codes used in the video because I used that for recording purpose. Sometimes I use the same program for different concept. But if you follow the exact steps it will work. You can also post your doubts here. And I suggest you to do the exercises I tell in the end of the video. For that, I have provided the source code in GitHub. You can get the link from the description of that video
Source codes?
Do you want the source code for Structural Directive? I can send that to you
@@WebTechTalk anu source code
Like ui design
Login page
Api calling
Routing
Etc
ERROR
src/app/app.component.ts:12:11 - error TS7006: Parameter 'status' implicitly has an 'any' type.
12 approve(status){
I am getting error like this
In latest Typescript version, we need to explicitly mention the type. So, instead of status, declare status: string