Angular Forms: Build Dynamic Complex Forms Easily

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

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

  • @MonsterlessonsAcademy
    @MonsterlessonsAcademy  14 дней назад

    WATCH NEXT: Angular Interview Questions and Answers - Dominate Your Next Interview - ruclips.net/video/5A_YKlVWMPo/видео.htmlsi=2DCn7yspEAAJ2H6l

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

    Nicely done, thank you for sharing. It might be a lot to ask but it would be very interesting to see the template drive equivalent approach.

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

      Won't happen. Template driven forms are not flexible and I don't recommend to use them at all.

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

    Very good video. Excellent explication. Im from Brazil. This help a lot in my work. Actually working in exactly this scenario. Im share with my work colleagues. Thanks!!

  • @FRITS-Kh
    @FRITS-Kh 4 месяца назад +1

    Thanks for the video!
    A tip: the remove buttons should also be button tags instead of spans because the keyboard can't select a span, which is not semantic.

    • @MonsterlessonsAcademy
      @MonsterlessonsAcademy  4 месяца назад

      Sure, but not each project needs accessibility

    • @FRITS-Kh
      @FRITS-Kh 4 месяца назад

      I haven't faced such projects in my 14-year career. While there were instances where accessibility was not prioritized, but it was maintained at a basic semantic level because implementing accessibility features costs little but provides significant convenience for users.

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

    great introduction! reactive forms are very useful but also very diffcult to learn, thanks for teaching me something new!

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

    Many thanks, forms are still a thing Im sure I could be handling more effectively.

  • @JoseLeMalin
    @JoseLeMalin 4 месяца назад

    Thank you for your work and sharing your knowledge !

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

    Nice example 👌
    Just curiosity, why use FormBuilder, and not FormGroup and FormControl for build the form 😊?
    By the way, one good point to improve would be add an id to identify the question, because if lately would like apply some filter, the removed question with index could be different and remove unwanted question.
    Continue the good work 😊

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

      There are different ways. Use what is comfortable for you. Sure you can also use IDs

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

    always the best angular instructor on youtube !!! thank you very much ( I'm french dev, sorry for my english)

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

    Thanks,
    It would be really useful to have a form builder that automatically types the form according to its initialization

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

    NonNullableFormBuilder - thank you :)

  • @Khai.it98
    @Khai.it98 Месяц назад

    How to insert new form at index?

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

    Thank you 💯🔥

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

    i really wonder if we can add an API based validation in a dynamic form in angular 17 /18 such as captcha validation or populate cities from multiple countries in a auto complete field in nonnullable forms etc.

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

      You can simply use formData.setErrors({errorMessage:item.errorMessage}) after you make your API call.

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

    excellent... thanks a lot

  • @aliali-pn1cb
    @aliali-pn1cb 5 месяцев назад +1

    Good

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

    Hi, would you know if I have a component A which extends a directive B.
    And in comp. a I am in injecting a service A with inject and inside of the constructor I am also calling super and injecting the service A. The question is, am I creating 2 instances os service A? Thanks in advance.

    • @user-glory-of-ukraine
      @user-glory-of-ukraine 3 месяца назад +1

      I think it depends from few things like: if you providedin :root service A you have 1 instance of components( like singleton). But if you use providers:[ServiceA] in extendable component it will be different instances.

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

      @@user-glory-of-ukraine yeah that’s correct. However my question was more related to the new inject where you do thing like serviceA = inject(ServiceA)
      In that case if we do that more than once in the same component it would create only one instance no matter how many injections you use in the component.
      That conclusion was based on others dev RUclips channels. Let me know if you have any points where makes that wrongly or partially correct.
      Thanks man

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

    Great video

  • @front-flow
    @front-flow 5 месяцев назад +1

    Problem. We get a bug if:
    1) Create a second input
    2) Set it to some value
    3) Delete the first input

    • @front-flow
      @front-flow 5 месяцев назад

      P.S. the problem with the index

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

      If it's an index problem it makes sense to work with elements by ID then

    • @front-flow
      @front-flow 5 месяцев назад

      @@MonsterlessonsAcademy But you can only delete by index)

    • @m.1-n5c
      @m.1-n5c 3 месяца назад +1

      You are correct , change @for with *ngfor and typescript side use new formcontrolName()

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

    I'm that 20%, love you since I found you haha :P

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

    Many thanks :)

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

    Final result has empty string at first answer, probably solution has mistake somewhere

  • @m.1-n5c
    @m.1-n5c 3 месяца назад

    I written your example in my side and it dos not works well, for example if you add 2 question and fill those fields and then remove first question in UI side remove seconds and typescript side remove first, then i refactored code, instead of @for i used *ngFor and typescript side form control value instead of empty string i written new formControl() after that it works well; please chek your example one more time and see yourself what is going on. thanks

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

    Very nice way to strongly type, typed forms! 🦾