Change Detection | How Angular Tracks and Updates Data | Advanced Angular | Hero to Superhero

Поделиться
HTML-код
  • Опубликовано: 28 янв 2025

Комментарии • 63

  • @ShaliniRavi369
    @ShaliniRavi369 Месяц назад +2

    Clear and Straightforward explanation. Thanks!!

  • @jakirhossainmolla2126
    @jakirhossainmolla2126 7 месяцев назад +3

    I have not seen any other video that explained change detection so well. Thanks a lot sir

  • @rahulrahul6259
    @rahulrahul6259 Год назад +2

    Very crystal clear explanation,with very basic example not too complex thankyou so much

  • @shambhvisharma8164
    @shambhvisharma8164 2 года назад +3

    The best solution for all the confusion. Thanks a lot

    • @WebTechTalk
      @WebTechTalk  2 года назад

      Thank you very much for your valuable feedback.

  • @kenhsu4229
    @kenhsu4229 2 месяца назад +1

    This is an absolutely crystal clear video demonstrating the concept of change detector of angular among other angular tutorial series. Thank you for your high quality instruction.

    • @WebTechTalk
      @WebTechTalk  2 месяца назад

      Thank you so much for your lovely feedback 🙏

  • @Aliana9603
    @Aliana9603 4 месяца назад +1

    Thank you so much for this video! So well-explained with the explanations and examples ❤
    Helps a lot

  • @kaushalkishor143
    @kaushalkishor143 11 месяцев назад +1

    Thanks for explain in very clear way.

  • @Furki4_4
    @Furki4_4 Год назад +3

    Thank you a lot, can't be more clear than that.

  • @faixan13
    @faixan13 2 года назад +1

    Just love your precise and to the point explanation, as I am preparing for interview, these quick videos covering all the basic/advance concepts helping me alot 😇

    • @WebTechTalk
      @WebTechTalk  2 года назад +1

      Thanks. All the very best for your interview

  • @nallusamysubramanian5899
    @nallusamysubramanian5899 2 года назад +2

    Thanks Bro. Your videos are crystal clear. Much better than paid courses. Keep Going. I am waiting for Angular JWT Authentication...

    • @WebTechTalk
      @WebTechTalk  2 года назад +1

      Thank you very much for your valuable feedback. I will try to do a video on JWT Authentication

  • @bharatkumarprajapati6817
    @bharatkumarprajapati6817 2 месяца назад +1

    great explanation, amazing

  • @ravitejabommakanti
    @ravitejabommakanti Год назад +1

    the explanation is spot on, Thanks for the amazing work!

  • @shwetakumari-ms2xg
    @shwetakumari-ms2xg Месяц назад +1

    best video ever!

  • @belalmohamed963
    @belalmohamed963 2 года назад +2

    Great Explanation Bro

  • @VigneshwaranSourirajalu
    @VigneshwaranSourirajalu 4 месяца назад +1

    Thanks a lot sir

  • @dopeshots9687
    @dopeshots9687 2 года назад +2

    please continue this playlist. and elaborate change detection video.
    also create a playlist on declarative reactive programming in Angular with RxJS

    • @WebTechTalk
      @WebTechTalk  2 года назад

      Sure

    • @dopeshots9687
      @dopeshots9687 2 года назад +1

      @@WebTechTalk please create a playlist on NgRX too

    • @WebTechTalk
      @WebTechTalk  2 года назад +1

      @@dopeshots9687 Sure. NgRx is already in my list

  • @techpro-q1o
    @techpro-q1o 6 месяцев назад +1

    well explained !

    • @WebTechTalk
      @WebTechTalk  6 месяцев назад

      Thank you so much 😊

  • @Tanmesh1992
    @Tanmesh1992 9 месяцев назад +1

    Nicely explained, keep it up

    • @WebTechTalk
      @WebTechTalk  9 месяцев назад

      Thank you so much 🙏

  • @santhosht6397
    @santhosht6397 Год назад +2

    Really excellent
    Could do to advance level of angular code in industry level
    Technical problem and solution

  • @greekplayback
    @greekplayback 2 года назад +2

    Thanks , can you please share the code of the parent child example ?

    • @WebTechTalk
      @WebTechTalk  2 года назад +2

      Pushed the code. You can get it from the git repo.
      github.com/freelancer-surender/Angular---Hero-to-Superhero/tree/master/change-detection

    • @greekplayback
      @greekplayback 2 года назад +1

      @@WebTechTalk Thanks ✌️✌️✌️

  • @SandeepSaini-tr9sv
    @SandeepSaini-tr9sv 8 месяцев назад +1

    well explained sir

  • @uifrontenddeveloper3841
    @uifrontenddeveloper3841 11 месяцев назад +1

    Very Awesome

    • @WebTechTalk
      @WebTechTalk  11 месяцев назад

      Thank you so much 🙏

  • @markorazumenic6915
    @markorazumenic6915 10 месяцев назад +1

    There was a nice source code for this video on github before? Did you remove it? Can we please have github link again?

    • @WebTechTalk
      @WebTechTalk  10 месяцев назад +1

      No, it is still there. You can get all source codes for this series from this repo.
      github.com/freelancer-surender/Angular---Hero-to-Superhero

    • @markorazumenic6915
      @markorazumenic6915 10 месяцев назад +1

      @@WebTechTalk thanks

  • @pruserin
    @pruserin 6 месяцев назад

    Hi Sir, quick question
    if i have component like this : Grandparent => parent => child => grandchild
    scenario1: if use changedetection onpush on child and parent and, I set read and increment counter from all the compnents.
    so when i increment the counter in parent it does not reflect in child and grandchild
    but when i increment counter from child it reflects in parent even though i am using OnPUsh strategy on parent is this normal behavior ?
    PS: can you cover all scenarios it would be gread help

    • @WebTechTalk
      @WebTechTalk  6 месяцев назад

      Hi, I didn't understand your question fully. If we set strategy as onPush, change detection will not be triggered on that component. In your scenario, did you set it as onPush in child and parent or child and grand child?

  • @mirzaleka9319
    @mirzaleka9319 2 года назад +2

    You could also use setter inside a child component to get latest value coming from parent
    @Input() set nameSetter(value: string) {
    this.name = value;
    }
    this will trigger on every change to the property

  • @SaiKumar-tg6ct
    @SaiKumar-tg6ct 2 года назад +1

    Will you make videoes on state management

    • @WebTechTalk
      @WebTechTalk  2 года назад

      Sure. I will do a video on state management using NgRx

    • @SaiKumar-tg6ct
      @SaiKumar-tg6ct 2 года назад +1

      @@WebTechTalk ok, thanks

  • @sandeep_gandham
    @sandeep_gandham 2 года назад +3

    Sir waiting for JS super hero series

    • @WebTechTalk
      @WebTechTalk  2 года назад +2

      Sure. Actually I want to make all the topics ready before I publish the first one. That is why it is getting delayed

    • @sandeep_gandham
      @sandeep_gandham 2 года назад +1

      @@WebTechTalk Ohoo Ok sir daily you publish one video sir so that we can catch the concept.

    • @WebTechTalk
      @WebTechTalk  2 года назад

      @@sandeep_gandham Actually I am a single person. I want to prepare for the concept, record, edit and publish. That is the problem. I will try to increase the frequency. :)

  • @kiransaravade5127
    @kiransaravade5127 3 месяца назад

    very nice.. please share source code

    • @WebTechTalk
      @WebTechTalk  3 месяца назад

      You can find the source code of the applications used in all the videos in this repository.
      github.com/freelancer-surender/Angular---Hero-to-Superhero