Thank you so much. I think I've found a good Angular tutorial KZbin channel. Before watching this video, I didn't have an idea about transferring data between unrelated components. Now, it's clear to me. From this video, I understand how to communicate with unrelated components using event emitters and subjects.
@heybiplabb2 жыл бұрын
The way you teach us is just remarkable. Sometimes are confused that is we really learn Angular from KZbin or a paid Udemy course. Kudos to you sir.
@Aurobinda-h8n3 ай бұрын
Excellent. This is what exactly I wanted. Please don't stop posting videos on KZbin.
@vivianequeiroz67442 жыл бұрын
Your explanation was clear as water, thank you!!!
@nagaranjandarbha72552 жыл бұрын
Are there any cases where use of Subject is recommended over EventEmitter?
@MyBrilliantSupport4 ай бұрын
Great Thanks Very Clear Tutorial About Subject...!
@nirmesh44 Жыл бұрын
Best tutorial ever on angular
@oksureapollo84862 жыл бұрын
Thanks a lot, this has helped me big time with the project Im currently working on👍👍
@kirillzlobin7135 Жыл бұрын
This was an amazing explanation. Thank you!!!
@rey62532 жыл бұрын
Still it does not explain why using an Subject over an Event emitter, having to know both concepts is good, but its way more important to know when to use one over the other.
@gtanmoy2 жыл бұрын
Excellent! Learnt a lot. Thank you
@scottvickrey27432 жыл бұрын
I love the way you make it so easy!!
@mdgosoddin192 Жыл бұрын
Excellent knowledge I have 5 years of experience Even though I appreciate you
@yumraj12 Жыл бұрын
Nice description, Do you have a repos for the same?
@NagarajaT2 жыл бұрын
That was an excellent explanation !!
@ranjanadeore29572 жыл бұрын
Thank you sir for uploading value your video very helpful.
@mahendrababu66384 ай бұрын
now i am clear with subjects... provide same like this for the observables and which is the best to use in projects i want to using a service... if already have please share the video link...thanks
@GauravKumar-rh1yl Жыл бұрын
Very Nice explanation
@meriamzayani Жыл бұрын
Nicely explained, thank you.
@sharatha65332 жыл бұрын
Good one. Can you please add different unit test topics in Angular.
@procademy2 жыл бұрын
I have planned to do it at the end of this course.
@sharatha65332 жыл бұрын
@@procademy Thanks a lot 🙂
@emad_arnesto91752 жыл бұрын
thank you for this useful tutorial
@devareddy726 Жыл бұрын
great explaination
@sivatejag Жыл бұрын
Let's say there is no button and I want to achieve same component interaction..how do we achieve it?
@arpitachakraborty3162 Жыл бұрын
I just want to know if we don't have any click function to trigger the event from service then how we can trigger that method ? What if I just need only the value in another component without any button click or anything ..
@procademy Жыл бұрын
The simple thing to understand here is that...what is going on in one component is not known to another component. If you want to pass a value from one component to another...the another component has to know that something has changed. For that we need to notify that component. To do that, we will have to emit some event. This event need not to be a click event, it can be any user defined event as well.
@manojradharapu18002 жыл бұрын
what is the difference between Subject and EventEmitter ?
@procademy2 жыл бұрын
Subject is an observable which makes component comunication easier. It has nothing to do with events or EventEmitter. But, we can use it pass value from one component to another which are not related. But, if we don't have subject and want to communicate between two components which are not related, we need to use the concept of property binding and event binding and combine these concepts to achieve it.
@manojradharapu18002 жыл бұрын
@@procademy Thanks , it is clear
@fbsouza2 жыл бұрын
If the two components were children of the same parent, should I still use subject?
@marceloteixeiramodesti22682 жыл бұрын
Very nice. Thank you
@compton83012 жыл бұрын
You're amazing. Thank you.
@igorr46822 жыл бұрын
How simple is that. Try to do the same in redux or vuex.
@mainrowtech84372 жыл бұрын
Great work. thank you
@shriyanagrath37142 жыл бұрын
HI thanks for the explanation. My data being passed is little complicated, so I am using 'any' type definitions in the methods. I see an error subscribe does not exist on type '(data: any) => void'. Do you have any idea where I might be going wrong?
@vibhuverma66232 жыл бұрын
How your ngOnIt method gets called when you enter text?
@ДимаЕфремов-г6е Жыл бұрын
God bless you!
@narenk80772 жыл бұрын
what is difference between eventemitter vs Obsevable?
@viniciussantosaguiar95432 жыл бұрын
Great vídeo!
@nadruf2 жыл бұрын
so why using subject instead of eventemitter? i don't get it
@billbortkevich23002 жыл бұрын
Hi, could you discuss Subject a bit more? The official explanation is not too clear. Thank you
@sergeymigel46802 жыл бұрын
thanks!
@leninnani52222 жыл бұрын
Waiting
@narenk80772 жыл бұрын
Please update response from below queries
@greekplayback2 жыл бұрын
Thanks can you please share code in github ?
@procademy2 жыл бұрын
Here is the github link to download the source code: github.com/manojjha86/complete-angular-13-course.git
@greekplayback2 жыл бұрын
@@procademy Thanks 😃😃
@shagunnikam30952 жыл бұрын
@@procademy Thank you so much sir for this GitHub link.