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 Жыл бұрын
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 🙂
@bongguiao7 ай бұрын
I really appreciate your swift response sir, Cant wait to see your next video.
@vinay619 Жыл бұрын
Nice, with this we can reuse the angular forms
@letsprogram30 Жыл бұрын
Yes yes
@alexdisd56703 ай бұрын
what a good video, thanks you so much
@PAJANI1910 Жыл бұрын
Excellent Tutorial.. awesome job. Hats off.
@letsprogram30 Жыл бұрын
Thanks man!
@richter99119 ай бұрын
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
@miroslavjakovcic458510 ай бұрын
GREAT video, thnx!
@letsprogram3010 ай бұрын
You’re welcome 😇
@danielpacheco25207 ай бұрын
Great, it helped a lot, I appreciate it
@letsprogram307 ай бұрын
Thanks mate!
@omverma087 ай бұрын
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❤❤
@abhirajgawai505 Жыл бұрын
Amazing video sir ❤ Thank you sharing your knowledge.
@letsprogram30 Жыл бұрын
Thanks Abhiraj Sir ❤️
@bighneshsamal65237 ай бұрын
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
@letsprogram307 ай бұрын
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
@bighneshsamal65237 ай бұрын
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.
@letsprogram307 ай бұрын
@@bighneshsamal6523 It was not the part of the blog/video. If you want I can update the existing code base with some sample code 🙂
@bongguiao7 ай бұрын
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?
@letsprogram307 ай бұрын
You can load the config on runtime, I might create a video to explain it.
@manikanta58799 ай бұрын
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
@letsprogram309 ай бұрын
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.
@manojv289311 ай бұрын
Thank you so much
@letsprogram3011 ай бұрын
You’re welcome 😉
@prathameshkoyande898427 күн бұрын
Hi Sashi..great tutorial..helped me a lot. Got a silly doubt...the Html code does not show the formGroup or form Controls name in blue. It displays in orange only. Any fix available for that?😅
@letsprogram3025 күн бұрын
maybe that could be something related to your lint? can you share some screenshot to me on discord or telegram
@vinaykumar-be7nm3 ай бұрын
can u share the blog link of dynamic form
@Wellwishers12327 күн бұрын
Does the data will be saved somewhere after submit?
@letsprogram3025 күн бұрын
Well it depends on you now, after submit what action you need to perform with that data
@sradhanayak47349 ай бұрын
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
@letsprogram309 ай бұрын
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
@mahdiandalib186 Жыл бұрын
nice man i hope one day you create form builder using angular where users could create form using drag and drop...
@letsprogram30 Жыл бұрын
Well, it's a great idea. I accept this as my new challenge 😊 Thanks bro❤
@mahdiandalib186 Жыл бұрын
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
@codewithkholfaa86298 ай бұрын
how to handle files upload and form array
@RahmathShan-q4q Жыл бұрын
Tried this, but I got error 'Cannot find control with name: 'firstName' '..
@letsprogram30 Жыл бұрын
Check the config is mapped correctly and make sure to do all the necessary imports
@RahmathShan-q4q Жыл бұрын
I checked all that , but still showing that binding error for all the fields @@letsprogram30
@RahmathShan-q4q Жыл бұрын
yes I got it ..thanx
@teja61247 ай бұрын
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'; } }