Communication between components | Explore @Input and @Output in Angular | Angular Zero to Hero

Поділитися
Вставка
  • Опубліковано 11 вер 2024

КОМЕНТАРІ • 37

  • @srivarshagardas
    @srivarshagardas 21 день тому +2

    Your videos encourages me to learn angular with more passionate. Please continue uploading videos. It will help us a lot.

    • @WebTechTalk
      @WebTechTalk  21 день тому

      @@srivarshagardas Thank you so much 🙏. Happy to hear this.

  • @HoangHuyNguyen-hl2xu
    @HoangHuyNguyen-hl2xu 2 місяці тому +2

    Thank you sir. You save my time and helped me a lot.

  • @childtalentvlogs
    @childtalentvlogs 7 місяців тому +2

    Outstanding Explanation

  • @BrahmiYassine
    @BrahmiYassine 3 роки тому +5

    Good job Bro

  • @jayac4400
    @jayac4400 2 роки тому +6

    Hi,
    Ur video's on angular is awesome, Please don't go fast while explaining.

    • @WebTechTalk
      @WebTechTalk  2 роки тому +1

      Thanks for your feedback. In the initial days I was explaining very fast. Now I have improved on that.

    • @jayac4400
      @jayac4400 2 роки тому +1

      @@WebTechTalk hi,
      Can you please provide ur Mail id for further queries.

    • @WebTechTalk
      @WebTechTalk  2 роки тому +1

      @@jayac4400 freelancer.surender@gmail.com

  • @archarghaba1833
    @archarghaba1833 2 роки тому +3

    Thank you, interesting explanation.

  • @priyankamj3944
    @priyankamj3944 2 роки тому +3

    Super explanation pls make more videoes about angular...pls pls pls my hamble request

  • @dhanaiakshmi8411
    @dhanaiakshmi8411 3 роки тому +2

    Super explains more video potuga

  • @adityajaiswal5603
    @adityajaiswal5603 10 місяців тому +2

    Good tutorial

  • @MinhLe-qc2ow
    @MinhLe-qc2ow Рік тому +1

    Awesome explaination

  • @shihabhasan8959
    @shihabhasan8959 Рік тому +2

    Your video is awesome, You deserve millions of subscribers

  • @NgocDucDo
    @NgocDucDo 9 місяців тому +1

    Thank you very much for your videos.

  • @priyankamj3944
    @priyankamj3944 2 роки тому +2

    Please do more video about angular

    • @WebTechTalk
      @WebTechTalk  2 роки тому

      Sure. I will. Lot more videos coming soon.

  • @abdulaziz7013
    @abdulaziz7013 3 роки тому +1

    nice

  • @tanson86
    @tanson86 Рік тому +1

    While communicating from child to parent we use this syntax in the html ""...And in the parent.ts we set the event to the string variable directly where as the normal approach would be event.target.value. Why this inconsistency?

    • @WebTechTalk
      @WebTechTalk  Рік тому

      In the child component, as we are having a text box, we are using event.target.value to get the value from the input. And now we are having the string. We are sending that to the parent and so there we can directly get it.

  • @venkatsaro6088
    @venkatsaro6088 2 роки тому +2

    Child components la error - {{item.name }} varudhu

    • @WebTechTalk
      @WebTechTalk  2 роки тому

      Enna error? Please post error description.

  • @venkatsai339
    @venkatsai339 7 місяців тому

    Getting Type '{ name: string; type: string; }[]' is not assignable to type 'never[]' at this.filteredItems in task

    • @WebTechTalk
      @WebTechTalk  7 місяців тому

      You should be using some recent versions of angular bro. In recent versions, stricter type checking has been enabled. You should specify the exact type or use 'any'. That will fix this issue.