The course is out! 🎉Congrads to the winners (see them here ruclips.net/video/0coIwp1twhU/видео.html ). Winners, reach me via dmytro@decodedfrontend.io You can enroll in the course now bit.ly/advanced-angular-forms
Cracked a senior-level angular interview with the knowledge gained from the interview hacking course. I think I will be at a very good understanding of forms from this upcoming course. Super excited!
Thanks to Dmytro for the development of the Angular community! Keep doing it! When my co-workers ask me about the best Angular resources, I recommend watching this channel🤝
Thank you for your tutorials. I've got from them many knew knowledges and also inspirations. Hope you and your love ones have lots of health and success!
you're always explaining the best possible way, with simplicity an good examples, thanks for the content man appreciate the time and deep knowledge shared
Despite I lost the chance to get a free enroll in the course :-), I just feel that I must to leave a comment! I absolutely love your content. Every time I watch your videos, I learn something new. Thank You & Slava Ukraine! 🇺🇦
absolutely frontend decoded and disassembled.😁🙏. I have been looking for content on dynamic forms/form controls with angular n loading custom forms from mongodb/json schema. May be you can include in the course. cheers.👍
Тема сек’юрності доволі цікава та мало де розглядається. То, й правда, було б чудово, якщо Дмитро розгляне її🔥 А можливо і, навіть, курс з цієї теми хотілося б, то була б бомба!
@@DecodedFrontend prevent XSS, prevent SQL Injection. Як можуть обходити це - це для розуміння наскільки сек'юрним є сам Ангуляр по відношенню до цих хаків. Як захистисти інпути та форми взагалі від подібних можливих атак.
@@VladyslavHaidar дякую Влад! З приводу sql injection одразу скажу що ніяк :) по-перше тому, що це має бути зроблено на сервері, тому що Ангулар не взаємодіє з sql напряму. Ну і взагалі є правило, щоб ніколи не довіряти клієнту (браузеру). Тобто всі валідації мають буди зроблені також на сервері, навіть якщо цє було зроблено на клієнті. XSS це вже актуально для клієнта :) це я можу добавити до списку.
As always, deeply explained, with core details. Despite I'm quite advanced in working with Angular, always getting something interesting from yours videos. Good job! :)
Very good approach to also see the Angular source code relating to forms directives. Question: instead of writing: [(ngModel)]="userInfo.firstName" name="firstName" -> just write: [(ngModel)]="userInfo" name="firstName" (similair to address: ngModelGroup="address"?
Thanks a lot for the feedback! :) I don't think that the notation `[(ngModel)]="userInfo" name="firstName" ` will work as you expect... I don't currently have a chance to quickly check it but I guess that in this case, the ngModel's value will be an object 'userInfo' and ngModel won't be using the 'name' attribute to resolve the 'firstName' property of the 'userInfo' object.
Hi Anter! Just wanted remind you that you have won the course during the giveaway and (according to my recordings) you still didn't reach me for the enrollment. Please write me at dmytro@decodedfrontend.io to be enrolled for free :)
Thanks Dmytro for creating such nice videos! I am a mid-Angular developer, struggling to find some resources on more advanced Angular topics. But your channel is definitely helping :)
As always, amazing quality of video and attention to detail. Thank you so much for your work! Btw, what useful extensions/theme for VSCode do you use? Thanks!
Awesome mini-course video, btw can u explain the advantajes of formBuilder? As I saw u are using that to create a formGroup but not for controls (I mean different between this.fb.contol() and control = new FormControl())
@@DecodedFrontend Thanks for the response. I know that the date type takes a uTc formatted string which doesn’t bind to a date on the code behind side, assuming the data is saved as a date. I believe ControlValueAccessors are required to actually hook the two things together.
Great content! I'm react developer but I am currently learning angular . Would you please make a vedio demonstrate how can we build component like react-select-async-paginate in angular ?
The course is out! 🎉Congrads to the winners (see them here ruclips.net/video/0coIwp1twhU/видео.html ). Winners, reach me via dmytro@decodedfrontend.io
You can enroll in the course now bit.ly/advanced-angular-forms
for blackfriday some discount please please
@@luiscevallos1 the black Friday sale is already running. -30%-off for all courses
Cracked a senior-level angular interview with the knowledge gained from the interview hacking course. I think I will be at a very good understanding of forms from this upcoming course. Super excited!
Congrats Swadeep! Glad to hear that my course helped ;)
Amazing, you are the best, thank you.
I work on an older Angular application. With your help my knowledge has broadened to where I am able to do a major refactor. Thank you!
I'm surprised just how you're promoting and helping to grow Angular community single-handedly :)
You really played a huge role in me becoming a professional in Angular today
Really like that u touch all details and there is no magic afterwards
Thanks for contributing in-depth concepts with examples. Looking forward to your work. Cheers 🥂
Thanks Bhargav! It is pleasure for me :)
Thanks to Dmytro for the development of the Angular community! Keep doing it!
When my co-workers ask me about the best Angular resources, I recommend watching this channel🤝
Great content. I always look forward to learning some advanced concepts of Angular forms.
Wow what a video! Thank you for your insights and congrats to 25k subscribers!
Great content! The quality of these videos and the knowledge in there are so useful to the whole community. Keep going!
Thank you for your tutorials. I've got from them many knew knowledges and also inspirations. Hope you and your love ones have lots of health and success!
I started to work with angular thanks to your channel! Thank you for all your fantastic lessons!
You are my Angular Guru. I've learn lot of angular concepts from your video .
Thanks for all your videos. I like the way you share your knowledge. Great job !!!!
you're always explaining the best possible way, with simplicity an good examples, thanks for the content man appreciate the time and deep knowledge shared
Excellent content. very excited about the course. Thanks for help.
Every time watching your video, I recognize a new deeper thing in Angular! Thanks a lot for it ❤
Despite I lost the chance to get a free enroll in the course :-), I just feel that I must to leave a comment! I absolutely love your content. Every time I watch your videos, I learn something new. Thank You & Slava Ukraine! 🇺🇦
You're the best Angular Tutor out there Dmytro!
Thanks for explaining all the concepts in a very simple manner.
Great course. Do you have any material (course, vídeo) about angular project structure (architecture)? Thank you.
No Paulo! Not yet but thanks for the suggestion:)
Great. Very helpful course I have learned a lot from you. Waiting to see Reactive forms
This is the best Angular forms ever seen. Thank you for this high quality content !
Thanks, I always appreciate your contribution 👍. Looking forward more or you. 👏
Great video as usual. Thanks for the new video. 😀
These informative videos can really save someone's job. Thanks
I hope so :)
I really enjoy all your tutorials!
absolutely frontend decoded and disassembled.😁🙏. I have been looking for content on dynamic forms/form controls with angular n loading custom forms from mongodb/json schema. May be you can include in the course. cheers.👍
Thank you 🙏🏻 Dynamic forms are on the roadmap and will be definitely included until the end of the year ;)
I am looking forward to the publication of the course 💯
Great video with awesome explanation. Keep posting
love the content and looking forward to this course!
Thanks for preparing the course!
Looking forward to it.
Thank you, Manish! :)
Love Angular form management! I want the courseeee!!!!
Thank u for giving information in really simple way. It is the coolest Angular stuff in whole the Internet)
Awesome content! These in depth tutorials are exactly what the angular community needs. Thank you!
I am waiting for the full version of video ☺️ . I have watched all your videos , keep it up. You are rocking 🤝💐👌🥳
It's a great mini course! Thank you for all your awesome angular tutorials!
Great videos thank you so much. Looking forward for some content that will explain about clean code best practices in angular.
Thanks for content. Brilliant explanation, waiting for the next video :)
My angular reference is your channel. Great course 👏👏
Thanks for your amazing contributions !
Thank you for what you do. Very high-quality and useful content. Helped me many times
Thanks! This will be an awesome course!
Amazing tutorial as usual
Thanks for the course and for the video! Hope will be one of 5 winners!
🤞
Just completed to watch the full video, Cheers for this course 🚀
Як завжди, дуже крутий контент!
А чи планується якийсь відос по сек'юріті Ангуляр аплікух?
Тема сек’юрності доволі цікава та мало де розглядається. То, й правда, було б чудово, якщо Дмитро розгляне її🔥
А можливо і, навіть, курс з цієї теми хотілося б, то була б бомба!
Бімба)) А можете накидати тем або юзкейсів які були б цікаві? Може щось зліплю цікаве з нового року ;)
@@DecodedFrontend добре, спробуємо придумати)
@@DecodedFrontend prevent XSS, prevent SQL Injection. Як можуть обходити це - це для розуміння наскільки сек'юрним є сам Ангуляр по відношенню до цих хаків. Як захистисти інпути та форми взагалі від подібних можливих атак.
@@VladyslavHaidar дякую Влад! З приводу sql injection одразу скажу що ніяк :) по-перше тому, що це має бути зроблено на сервері, тому що Ангулар не взаємодіє з sql напряму. Ну і взагалі є правило, щоб ніколи не довіряти клієнту (браузеру). Тобто всі валідації мають буди зроблені також на сервері, навіть якщо цє було зроблено на клієнті.
XSS це вже актуально для клієнта :) це я можу добавити до списку.
when you say this video is optional and explain some internal logic - this is the moment you know you will spend your time with pleasure:)
As always, deeply explained, with core details. Despite I'm quite advanced in working with Angular, always getting something interesting from yours videos. Good job! :)
Very good approach to also see the Angular source code relating to forms directives.
Question: instead of writing: [(ngModel)]="userInfo.firstName" name="firstName" -> just write: [(ngModel)]="userInfo" name="firstName" (similair to address: ngModelGroup="address"?
Thanks a lot for the feedback! :) I don't think that the notation `[(ngModel)]="userInfo" name="firstName" ` will work as you expect... I don't currently have a chance to quickly check it but I guess that in this case, the ngModel's value will be an object 'userInfo' and ngModel won't be using the 'name' attribute to resolve the 'firstName' property of the 'userInfo' object.
You always broaden the knowledge on concepts with amazing examples. Highly appreciated.
This course is just what I need for a project I'm working on! Thanko so so so much!!!
Thanks for giving indepth knowledge.Great video
Thank you so much for sharing your knowledge😊
Awesome video, in-depth content like this is exactly that I am looking for, thanks for your contribution.
Very nice and instructive, I would like to see the full course!
Another masterpiece. Thanks🙏
Allways good content. Thanks for sharing.
Thanks for these advanced tutorials
My pleasure!
Nice video, and very well explained, keep sharing all your knowledge with us! thanks!
Looking forward to your new course
Oh Man , You make learning Angular easy and fun !
Glad to hear that! :)
This will be an awesome course!
great video as always
As always great content Dmytro.. 👍🙌
Cool. The best channel about Angular! Thank you friend!
great tutorial. thank you
Thanks! This course is what I was looking for.
Thank you for sharing your knowledge👌
Merci beaucoup, un si beau travail
Great video. Excellent skills.
Even if I don't win I will buy this course))) Everything is pretty cool as always
Yeah, I'd take that free course, the topic is pretty interesting. Good video by the way :)
Thank you for sharing 👍
Good video as usual. How much in-depth goes for the reactive forms?
The same level for both ;)
Keep going with content, you're one of the best when we are talking about Angular! 💯
Great content! I didn't know about the 'standalone' property... That's very useful...
Well done. Keep it on🎉 tnks
Hi Anter! Just wanted remind you that you have won the course during the giveaway and (according to my recordings) you still didn't reach me for the enrollment. Please write me at dmytro@decodedfrontend.io to be enrolled for free :)
Great content Dmytro, the course is a must take :) thanks again for sharing your knowledge in this way.
Thanks for your efforts, Dmytro
My pleasure!
Great as always. Thanks for your scrupulousness in preparing those videos!
Great, thanks for your effort.👍
Great. It's very useful and well-structured course and an excellent way of presenting the material.
Very excited about this course! I've been only working with template-driven validations, but i'd love to see how to properly build a reactive form
An spectacular course, You are a Master ok angular thanks u
It looks awesome, thanks for the hatd work
Thanks Dmytro for creating such nice videos! I am a mid-Angular developer, struggling to find some resources on more advanced Angular topics. But your channel is definitely helping :)
As always, amazing quality of video and attention to detail. Thank you so much for your work!
Btw, what useful extensions/theme for VSCode do you use? Thanks!
Thanks for the great tutorial.
Awesome mini-course video, btw can u explain the advantajes of formBuilder?
As I saw u are using that to create a formGroup but not for controls (I mean different between this.fb.contol() and control = new FormControl())
this is soo good, thank you😊
Glad to hear that! Thank you for your feedback :)
Awesome. I enjoy when you dig into the source code. Thank you!
Can I ask, does your full course also cover making an input of type date to make it two-way bindable? Thanks!
Hi Cinnamon,
2 way databinding for an input with exactly “date” type isn’t covered but 2 way-binding works for any input type
@@DecodedFrontend Thanks for the response. I know that the date type takes a uTc formatted string which doesn’t bind to a date on the code behind side, assuming the data is saved as a date. I believe ControlValueAccessors are required to actually hook the two things together.
Great video as usual!
Coincidentally I was also browsing through the forms source code today! 😅
Keep up the good work!
Nice video, thanks for sharing your knowledge :)
Great content! I'm react developer but I am currently learning angular . Would you please make a vedio demonstrate how can we build component like react-select-async-paginate in angular ?
Pure gold, as usual! Great thanks!
Super video. Thank you!