As a newbie to Angular, I tried watching multiple videos on Reactive vs Template-driven forms. This was the only video whose explanation and use of graphics finally made it click in my head. Thank you Mosh! Don't know why I even bothered looking elsewhere for learning Angular Forms.
@rjconnolly6 жыл бұрын
You are my hero - coming from an HTML PHP environment this is helping me out so much!!! THANK YOU!
@sanmani77816 жыл бұрын
Thank you Brother. This video helped me to learn the angular form very easily. God Bless You.
@bubamanjang6 жыл бұрын
Your efforts in making these amazing videos is highly appreciated. Thank you so much!
@ananthuvenugopal96552 жыл бұрын
This is one of the finest tutorial about forms in angular. Explained everything crystal clear. Thank you so much 🙏
@ShruthiVeda2 жыл бұрын
I must share my feedback about this video. Content is very easily understandable. I tried many other videos to understand how these formCcntrol and formGroup works. I failed many times to ans properly in interview. But this video made concept clear to me. Thanks a lot.
@NourLababidi6 жыл бұрын
Thank you very much. The speed is perfect and the instructions are clear . One of the best. Thank you!
@someshnukala8044 жыл бұрын
One of the greatest Technical Teachers in the world. Mosh sir! Thank you so much sir. Hats off
@jamaluddinmondal92765 жыл бұрын
Thanks for giving a clean explanation ,👌 You may use Prettier extension on Vs Code automatically every property will be shown line by line
@danishchief10784 жыл бұрын
From anyone who gets an error "There is no directive with "exportAs" set to "ngModel"" you should: import { FormsModule, ReactiveFormsModule } from "@angular/forms"; @NgModule({ imports: [ BrowserModule, FormsModule, //
@saivaruntangalla22794 жыл бұрын
Do we need it import it in component.ts file
@bilalnizamani74474 жыл бұрын
I have the same problem.
@SapreShreyas4 жыл бұрын
thanks man! add this in app.module.ts
@TheDruzzila4 жыл бұрын
i love your face so much and i dont know even how you look like
@hafsadolly68304 жыл бұрын
Where we should do this?
@m.m.farhad5292 Жыл бұрын
Can not thank you enough Mosh, lifesaver.
@soundariyab2064 жыл бұрын
Amazing and very helpful video, as I am a beginner in angular so this video is very helpful to clear basic things related to angular form and controls. Thank you Mosh for this video and please try to make some more videos on angular basics especially for beginners.
@1000lino4 жыл бұрын
Clear and concises explainations make the subjet so much easier to understand Thank you so much!
@julioblancas7067 жыл бұрын
Thank you for sharing your time and knowledge with the people loves learn. Congratulations!.
@dominiccampese2159 Жыл бұрын
This is exactly the explanation I was looking for great content
@manjunathrajure22576 жыл бұрын
This helped a lot to understand angular forms in simpler way.
@hussain57557 жыл бұрын
I can never thank you enough you have restored my faith in humanity Love you man. Please keep making these awesome videos with the amazing explanation of theory and the code along solutions thanks again
@marekkazimierczak92102 жыл бұрын
You are amazing teacher, Mosh! 🏆
@sample18012 жыл бұрын
Thank you mosh ! This video explained me easier !
@rjbirelly15 жыл бұрын
Thank you Mosh. Your videos are amazing and very easy to understand the concepts.
@premiuminstituteofexcellen90352 жыл бұрын
For Angular 13 use this statement First Name Required
@charliemccharlie Жыл бұрын
In the most recent versions of Angular you might get errors that one of these validation properties might be null. In such a case, you can use a safe navigation operator such as this: *ngIf="firstName.errors?.['required']"
@anandbmuley5 жыл бұрын
I like the part and the thought process behind code formatting. You should always treat the code as an art too and not only science👍
@grazielesilva53065 жыл бұрын
Thank you for share some knowledge and spend some time doing that kind of content for the community! Bless you.
@williamsbron26863 жыл бұрын
that was great Mosh it helps me a lot really really really really thank you Mosh😍😍😍😍😍
@MrTryten3 жыл бұрын
The besting about your teaching is that you advise on the use case scenarios…. That is a great way to learn…. Thanks
@jasminem3605 жыл бұрын
you are really good at explaining ! help me a lot!
@farhangmdc Жыл бұрын
Great Explanation 😇
@yogeshcaptain6 жыл бұрын
that's wonderful and so easy to understand. Thanks a lot Mosh :)
@ScienceSeekho3 жыл бұрын
Your the best please upload all courses on udemy I am ready to pay
@breakingcode926 жыл бұрын
Thanks so much for making this video.. Honestly it was such a good help. I'll link you when I'm done with the site I'm working on :D
@nashrampy6 жыл бұрын
Thank You Mosh!
@bigsmall994 жыл бұрын
Excellent instruction.
@romankostiuk4 жыл бұрын
Good lesson for beginers... thanks!
@tonynguyendtn19846 жыл бұрын
would you ever consider updating your courses for Angular 7?
@priyeshprince23185 жыл бұрын
Thanks Mr tutor
@abderazzakmnaimoutaanni17633 жыл бұрын
Hello, Thanks for the awesome video, I just want to add that on Angular10, the firstName.errors object can be NULL, so you need to use the safe navigation operator ? *ngIf="firstName.errors?.required" regards
@aviralgoel28412 жыл бұрын
And now in 2022 use *ngIf="firstName.errors?.['required']"
@irohits40192 жыл бұрын
Its a great help..Thanks
@soultouchingsongs6 жыл бұрын
You are the best👍. It helped me a lot.. Thank u..
@bilelmaaloul7850 Жыл бұрын
thanks for the effort
@noname-bh1os7 жыл бұрын
Well explained. thanks a lot Mosh!!
@objectObject2125 жыл бұрын
Great tutorial, thanks.
@khizer35286 жыл бұрын
Excellent 🔥🔥 Thank you for this tutorial .
@asifaasi9185 жыл бұрын
tnQ Mr.Mosh
@rahulmathew87135 жыл бұрын
U can do mvvm in angular you dont need reactive form and other crap. You decide your architecture the framework should not decide for you. And unlike react , you don't need to write html inside javascript. So there is clear separation of concern. View is not responsible for checking business logic , its business model job to do that and let the view know about how to present the data via viewmodel. Just create a viemodel and bind that to the view. Do data transformation logic and data validation inside a business model. Inject the business model to view model via the constructor. inject the dataservice api layer to model via constructor. If you need to call component B from component A, just expose an interface and let A create a viewmodel by inheriting from that interface and pass an instance of that viewmodel as a property binding to B. Thats it. Angular clearly simplifies the architecture and lets your write decoupled manageable application. Period.
@journeyofadigitalartist50214 жыл бұрын
you made this easy to understand, I will still watch it again , though
@Shiva-zy7jq4 жыл бұрын
Thank you Mosh for the video.
@mathieufabre71944 жыл бұрын
really good video, good sound, good voice, and goos explanations. a f****ing good work !
@ledspbr6 жыл бұрын
Puts... Este cara é muito bom This guy is greeeat teacher
@alyaaabou_elhamd13315 жыл бұрын
thank you so much .. i need a reactive form video please
@jagadeeshkalugotla5 жыл бұрын
Actually i was struggled a lot for form validating but trust me this is the one of the best tutorial ----->Jagadeesh
@mahilkr5 жыл бұрын
Very nice, great presentation.
@bmulamba66853 жыл бұрын
this is awersome thank you
@skilljourney63575 жыл бұрын
r u great teacher.
@ASouza-ut9kb5 жыл бұрын
Much better then oficial site!
@sharathkp23104 жыл бұрын
nice class
@purshotham915 жыл бұрын
Seriously your tutorial was very helpful for me. But you didn't mention about submit button validation. Can you help me with that?
@7Rainbows6 жыл бұрын
Thank you so much Mosh
@AdityaKumar-cy2cr3 жыл бұрын
Thank you
@nareshgoud19055 жыл бұрын
Great video Mr.Mosh. thank you very much
@davooddehghan656 жыл бұрын
Thank You man great tutorial it's an amazing work!
@ramuk95704 жыл бұрын
use full of the beginners
@santoshsingh64046 жыл бұрын
Many Thanks for such an awesome videos. Thanks a Ton Sir!!!!
@ericwilfriedettien46036 жыл бұрын
Thank you very much !
@MrAmrmnabil4 жыл бұрын
Thanks
@SushilSharma-po6ur7 жыл бұрын
Such a nice video helping to easily create an angular form
@elenegulordava18686 жыл бұрын
Thank for your detailed, great explanations, it's an amazing work!
@raghubsrinivas60255 жыл бұрын
Thank you for this Information.
@ErayTonyali6 жыл бұрын
Thanks for your amazing tutorial!
@danielaregawi5 жыл бұрын
Thank you so for sharing this video!! What's the editor you we're working on?? I love how it simply generates the markup can you please share how I can use it too?
@jamaluddinmondal92765 жыл бұрын
Vs Code Editor by Microsoft
@aoam91946 жыл бұрын
I like your videos. Thanks alot mosh 😃
@tejpalsingh2946 жыл бұрын
حسبي الله لا اله الا هو الحي القيوم ggghhtt ho ki hi
@aoam91946 жыл бұрын
Tejpal Singh 😒 I don't understand this language
@benjaminperez67772 жыл бұрын
exelente video
@maximrunix5 жыл бұрын
sos un groso , gracias , me salvaste la vida
@adityachoudhari21824 жыл бұрын
people watching this video now , use prettier or beautify extensions , for clean templates instead of hardcoding lines.
@amahrizal6 жыл бұрын
Many thanks
@rickys34813 жыл бұрын
This is the best
@faisalmushtaq60084 жыл бұрын
An excellent tutorial indedd
@ale_lunalili6 жыл бұрын
Great video, thanks.
@cachkiemtienonlinetainha5 жыл бұрын
Thank you so much
@slays69165 жыл бұрын
awesome job man!
@cvchanel47634 жыл бұрын
Thank you verry much :)
@hassanaguezoum34774 жыл бұрын
Thank you ❤
@agustinbcu5 жыл бұрын
Great video, but the way awesome t-shirt.
@SushilSharma-po6ur7 жыл бұрын
Thanks a lot Mosh
@RandomNiceThings124 жыл бұрын
great video
@weezySKLH5 жыл бұрын
Dude you are the best
@guyr9896 жыл бұрын
Great video! But how do you clean all the alerts after you 'unFoucused'? and how to add a confirm submission massage?
@alaamoustafa79916 жыл бұрын
you are perfect !
@leratomphahlele19083 жыл бұрын
in the beginning of the video you said you will show us how to make submit button active when all fields are valid???
@jainshilpi36 жыл бұрын
I am getting this error There is no directive with "exportAs" set to "ngModel" ("ass="form-group"> Name: ]#firstName="ngModel" (change)="log(firstName)" type="text" class="form-control" id="firstName"/>
you have to add the validation rule in input filed.. so change the input field from ]#firstName="ngModel" (change)="log(firstName)" type="text" class="form-control" id="firstName"/> to ]#firstName="ngModel" (change)="log(firstName)" type="text" class="form-control" id="firstName"/>
@amaanimtiyaz6 жыл бұрын
For those whom are looking for the same: 1.Go to app.module.ts 2.Paste - import {FormsModule} from '@angular/forms' ; 3. In "Imports" section down there: write FormModule eg: imports: [ BrowserModule, FormsModule ]
@petarjovanovic85246 жыл бұрын
Did you solve that problem ,cuz I got the same ? Thanks!
@علياءاسامه-ت4م6 жыл бұрын
thanks a lot .It is awesome
@arjunsunny9994 жыл бұрын
Yoy are great.. ty,,,,,,,Where d o i get this code????
@kaushikdas13663 жыл бұрын
Thanks for the tutorial Object is possibly 'null'. -> did anyone getting this error.after adding individual validations.
@yt12345671006 жыл бұрын
thanks.. good jobs
@rajiraji-qd8bo7 жыл бұрын
bootstrap styles not working like alert alert-danger in
@choonsenglim73877 жыл бұрын
raji raji ya....i faced the same problem as well....do u have any idea why?
@SzigSag5 жыл бұрын
Hy there,... i was wondering why im getting the ERROR TypeError: Cannot read property 'required' of null! Been already on stackoverflow and the angular docs but no solution could help me get rid of that problem! You guys have any solutions for me? ;) btw... visual studio gives me that error message aswell: Identifier 'required' is not defined. '__type' does not contain such a member
@prayagparikh80203 жыл бұрын
It's showing same error for me. What's the solution?
@neko_senpaianimeamvedits95983 жыл бұрын
Nice ❤
@Me.anything4 жыл бұрын
You didn't explain how bootstrap css class was being applied on form? For me classes are not being applied?
@proxy50614 жыл бұрын
hey i am also stuck there plz let me know how to use boot strap
@robertoradu99654 жыл бұрын
add this to yor code
@airor43 жыл бұрын
6 months late but you can add the bootstrap.min.css relative path to your angular.json styles property which will give you global access to bootstrap. Or I think you can link it in the stylesUrl attribute within the component decorator within the ts file. Or you could do what @Roberto Radu said and link it directly within the html.
@estebansepulveda54073 жыл бұрын
@@robertoradu9965 thanks buddy! This should be added to the html file. Though I still dont see the red alert when the error pops up
@abderazzakmnaimoutaanni17633 жыл бұрын
install bootstrap by executing the cmd npm install --save bootstrap then go to angular.json file and add on "styles" : "node_modules/bootstrap/dist/css/bootstrap.css",