Это видео недоступно.
Сожалеем об этом.

Master Angular Forms: Create Reusable Forms with JSON Constants (Config) | Dynamic Forms in Angular

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

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

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

    Please share your feedback about this video 🙏

  • @alexdisd5670
    @alexdisd5670 8 часов назад

    what a good video, thanks you so much

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

    I really appreciate your swift response sir, Cant wait to see your next video.

  • @elcocodriloazul
    @elcocodriloazul 9 месяцев назад +2

    Absolutely love it. Two things that will be interesting in this project to do are validator for two cases. Let say when you select a specific option on a drop down, then you must fill another control.
    And the second validation that would be interesting to add is for it to check for example that already exist in database ( you can add to a save class to pretend you are saving to a database.)
    I am very much interested how can this be done using the above validator methods or if its even practical to do so...

    • @letsprogram30
      @letsprogram30  9 месяцев назад +3

      Thanks for the feedback ❤️
      Coming to the question, yes brother it is possible and we can add async validation on the fly for the specific control, I will add it to my todo list for upcoming videos 🙂

  • @PAJANI1910
    @PAJANI1910 8 месяцев назад

    Excellent Tutorial.. awesome job. Hats off.

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

    Amazing video sir ❤
    Thank you sharing your knowledge.

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

    How can we change the sequence of the field . For example if I want to put select field or radio button between two text field.
    Thank you so much for video❤❤

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

    Nice, with this we can reuse the angular forms

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

    Was very inlightening Thank you.
    I have a question though if you using a tab option so for example users answers first 3 questions then it switches to a new tab on submit how do you stop the clashing so that it things the submit button

  • @bighneshsamal6523
    @bighneshsamal6523 3 месяца назад +1

    Very nice. One question, If I want to change value of one control base on another control change. How to achieve this. We can't write login in dynamic form. We have to manage in parent component. Logics are different in different cases

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

      I would say there is still a way to achieve it by adding dependson and dependencyMap of values the values will get mapped at the runtime, for example I have a two controls city and state. Based on state selection I will have to populate the cities depedencyMap values something like this.
      But I should depend on the project to project cases, that do we really gonna use that often, if yes then we should do it generic/centralised way

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

      Thanks for your quick reply. Adding dependson and depandacyMap in jsondata?
      Where I can get Full code? I checked your blog, I didn't get Full code.

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

      @@bighneshsamal6523 It was not the part of the blog/video. If you want I can update the existing code base with some sample code 🙂

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

    Hi Sir, Thank you sharing your knowledge. i have question prompt error message “Not allow to select today’s date” if selected date is today. im using below code to prompt error, but failed. can you help on this ?
    contant file:
    {
    "name": "dob",
    "label": "DOB",
    "placeholder": "",
    "class": "col-md-4",
    "type": "date",
    //"value" : new Date().toISOString().slice(0, 10),
    "validators": [
    {
    "validatorName":"required",
    "required": true,
    "message" : "*dob is required, Not allow to select today date"
    }

    ]
    },
    ts file:
    if (control.name === 'dob' && myFormControl?.value) {
    const today = new Date()
    const selectedDate = new Date(myFormControl?.value);
    if(
    selectedDate.getFullYear() === today.getFullYear() &&
    selectedDate.getMonth() === today.getMonth() &&
    selectedDate.getDate() === today.getDate()
    ){
    errorMessage = 'Date of Birth cannot be today';
    }
    }

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

    Great, it helped a lot, I appreciate it

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

    Great tutorial. Im looking to build a search screen with quick search and advance search options. Quick search is straight forward and i can refer to this tutorial. But advanced search will have multiple sections as expandable ones and with different fields. All these fileds should ve fetched dynamically from json/API and fields vary from text, daterange, date to checkbox and its very confusing

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

      So there will be two configs basic search config and advance config. The advance config should only have the additional search configs. One use clicks advance button we can destructure it into single config and it should do the job.

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

    GREAT video, thnx!

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

    If my application is not standalone, how I can use the dynamic-form-component into the application, suppose I have 4 to 5 different pages in the application? Please suggest

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

      Declare the component in the shared.module.ts then you can use it in your application just by adding the selected and follow the instructions as per video

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

    This is a great tutorial for a newbies like me, may I know how to config if the the value in the dropdowns came from the database?

    • @letsprogram30
      @letsprogram30  3 месяца назад +1

      You can load the config on runtime, I might create a video to explain it.

  • @manojv2893
    @manojv2893 7 месяцев назад

    Thank you so much

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

    how to handle files upload and form array

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

    nice man i hope one day you create form builder using angular where users could create form using drag and drop...

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

      Well, it's a great idea. I accept this as my new challenge 😊
      Thanks bro❤

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

      yeees, thx, i am really waiting to see this tutorial where users could select what ever type of form they want from a list of inputs at a sidebar of the page they are for example and then by just drag and drop functionality they could easily add them to their form... something like wordpress gravity forms plugin @@letsprogram30

  • @user-mc9gs6ek9r
    @user-mc9gs6ek9r 9 месяцев назад

    Tried this, but I got error 'Cannot find control with name: 'firstName' '..

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

      Check the config is mapped correctly and make sure to do all the necessary imports

    • @user-mc9gs6ek9r
      @user-mc9gs6ek9r 9 месяцев назад

      I checked all that , but still showing that binding error for all the fields
      @@letsprogram30

    • @user-mc9gs6ek9r
      @user-mc9gs6ek9r 9 месяцев назад

      yes I got it ..thanx