Angular 17 Tutorial #27 - Two Way Data Binding | Angular 17 Tutorial For Beginners

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

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

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

    I am learning with you, step by step in the Web Development area. Thanks bro. 🥰🥰🥰

  • @abhishekjadhav9289
    @abhishekjadhav9289 5 месяцев назад +1

    In the example you have used [ngValue] only in case of dropdown, however in other controls you have used only [value].When should I use [ngValue] over [value] ?

  • @abhishekjadhav9289
    @abhishekjadhav9289 5 месяцев назад +1

    Sir hats off to you. You are simply an excellent mentor to new technologies.

    • @ARCTutorials
      @ARCTutorials  5 месяцев назад +1

      Thanks for awesome feedback and glad you like Angular tutorials 👍

    • @abhishekjadhav9289
      @abhishekjadhav9289 5 месяцев назад

      @@ARCTutorials Thank you sir. I also asked a question in another comment based on this video. Can you please reply on that ?

  • @andreacrinella2208
    @andreacrinella2208 5 месяцев назад +1

    Hi! Nice work, just one question, what is the difference between [value] and [ngValue] ?

    • @ARCTutorials
      @ARCTutorials  5 месяцев назад

      Both are attribute binding. One is custom value binding and the other is built-in attribute binding

  • @kenhan168
    @kenhan168 5 месяцев назад +1

    great video!

    • @ARCTutorials
      @ARCTutorials  5 месяцев назад

      Thank you so much for your kind words and encouragement 👍

  • @MO8IUS
    @MO8IUS 6 месяцев назад +1

    Solid work sir! Enjoy your coffee!!

    • @ARCTutorials
      @ARCTutorials  6 месяцев назад +1

      Thanks a lot for your support! Cant thank you enough for supporting me!

    • @ARCTutorials
      @ARCTutorials  6 месяцев назад +1

      I also provide job support and personal training too. Let me know if you need any help anytime!

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

    Please share the Signals tutorial as well

    • @ARCTutorials
      @ARCTutorials  6 месяцев назад +1

      Recording today. Should go live today

  • @RahulShaw-v1g
    @RahulShaw-v1g 6 месяцев назад

    Sir when can we see signals tutorials?

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

      Its coming today. Im recording it right now

    • @RahulShaw-v1g
      @RahulShaw-v1g 6 месяцев назад

      Thank you so much sir

  • @charlotte-4751
    @charlotte-4751 6 месяцев назад

    Thanks for this videos.
    I would like to ask, maybe I didn't see the explication or wasn't attentive enough, but, how do you make the submit button ?
    I was told to put this on the htmls' form :

    Titre


    Title needed
    The title must be like this



    Envoyer

    and this on the ts :
    onAdd(form : NgForm){
    const newNumber = + this.articleToAdd;
    console.log("newNumber :" + newNumber) ;
    }
    And this in the ts file :
    onSubmit() {
    const newTitle = this titleToAdd ;
    const newPrice = this.priceToAdd ;
    }
    But it doesn't work exactly as I want and I didn't understood how to send newTitle and newPrice to another component.
    What is the difference beetwin the (click)="onAjouter()" function, if I put it in a button contained in my form ?
    Sorry to ask such a basic question :\