311 questions
Advice
1
vote
2
replies
49
views
Dynamic Forms in ADO.NET
I am a newbie in .NET - can someone tell me about dynamic forms? I have done master detail and simple crud - should I go for dynamic form r practice more in master details. I want to know about ...
0
votes
1
answer
70
views
Angular Dynamic Reactive select option form
I'm building a multi-step form in Angular where users can create a Dungeons & Dragons character. In one of the steps, after the user selects a class (Bard, Cleric), they need to choose one ...
-1
votes
1
answer
38
views
How to handle the Formarray in the Nested array in Angular
enter image description here
I need to render the Dynamic fields in the Angular. But, that one is solved. Then what the issue is when i render the Nested Array or a Group it's not rendering properly.
...
0
votes
1
answer
187
views
p-dropdown doesn't show selected value with dynamic options
I have a dynamic form with two interconnected dropdowns. Each option in the first dropdown contains a nested list of options for the second dropdown. However, when the linked dropdown is supposed to ...
0
votes
0
answers
160
views
Dynamic Form with Nested Accordion
I am making n dynamic form within nested accordion.
My question is, how can I make input field inside the generated accordion that contains dynamic form.
I will describe my accordion.
Parent accordion ...
0
votes
1
answer
103
views
Rails - approach for building dynamic forms [closed]
I'm working on a Rails app where user can "design" forms. See the image below:
For this I have the following models:
class ProgramPart < ApplicationRecord
has_many :block_elements, ...
0
votes
2
answers
2k
views
Cannot find control with name: 0 in angular reactive form
I have this component to add question and answers for each question and to select the correct answer.
I found this problem in many questions in StackOverflow but no luck. Please help me for figuring ...
0
votes
0
answers
186
views
Dynamically add a text field whenever clicking on add button in Rails application
I'm developing a food recipe app where a user can post their cooking recipe.
I'm stuck on the part where the user describes the steps for preparation. I want to add a text field for each step. Is ...
0
votes
1
answer
281
views
Populating form with data from API | React
I'm getting data for a Vacation object from mySQL server with axios.
I console log the response.data and I see the object as needed.
for some reason, I cant populate the form inputs with the data I ...
0
votes
0
answers
110
views
Get model object from another component in same form in WIcket 9.2
I have one panel in Wicket. Inside i have 2 separates forms.
In the second form i have 2 dropdowns, the second is dependant the forst one, indeed once selected a value in second i can lokk in the ...
0
votes
0
answers
270
views
Submitting dynamically created form to database in reactJS
I am trying to insert the values through this dynamic form but I am only able to insert just one entry (even though I enter multiple forms) and the values that are getting inserted are 0 (in the ...
1
vote
1
answer
3k
views
React Formik FieldArray remove and push does not work
I wanted to have a dynamic form, so I followed this video (https://www.youtube.com/watch?v=me1kY_uFe5k) to utilize Formik remove and push method.
Now the browser is able to render all the data, but ...
0
votes
0
answers
46
views
In an asp.net core project, Can I assume an option for user to add a field to SQL table and previous forms changing dynamically?
I have a web application that created with asp.net core. My model is a SQL database.
For any table, there is a controller and some views to insert, update, delete, and display data.
(views are use CSS,...
0
votes
0
answers
222
views
Angular - Dynamic form - Access field values
I need to populate some form fields with an API response, after changing the value of specific fields. My problem is that I do not know how to listen to that change, or how to access their values so ...
0
votes
1
answer
441
views
django dynamic forms setting max_length property
I am creating a 'Forms Management' system for my application.
I am creating a forms dynamically using a custom form 'factory' method.
Form data is in a json file.
I can create a forms.CharField and ...
0
votes
1
answer
559
views
How to focus first invalid ngx-formly field
I am using ngx-formly for creating dynamic form from field configuration. On submitting form, validation is showed correctly. I want to focus first invalid formly field.
3
votes
2
answers
8k
views
React dynamic form input
I have a React form with dynamic input fields that a user can add and remove input fields. When i submit the form, i log the values from each input in an array. The problem is that i can't type ...
1
vote
0
answers
303
views
how to programmatically remove all added rows via initial values in antd dynamic form
After I set initialvalues to the dynamic form, it automatically adds rows according to the given length. Next, what I need to do is remove all added rows using a button click or a function.
2
votes
1
answer
38
views
Many parameters with one name in form and get a list of them in
I have a form with dynamic fields..
When submit form, i have this:
Localhost:8000/mysite.com/jobs_form?job="Job1"&job="Job2"
And i cant get all of them in django with ...
1
vote
1
answer
1k
views
Symfony: Get parent object within child from formevent
I have a form that contains 3 fields (date, typeEvent, seller) where Seller is a choiceType that depends on date and typeEvent, and to do that i followed the symfony documentation for dynamics forms.
...
0
votes
0
answers
255
views
Making the label of dynamic field clickable
I'm working on a site with a bunch of form elements that are inserted dynamically from a hard-coded list myFormElements:ElementBase. Each element has a string label, and now I need to make these ...
0
votes
0
answers
647
views
File ID output instead of URL | Suddenly ACF broke | Contact form 7 | Dynamic Text Extension
I have a problem, it used to work great but suddenly it isn't working anymore. I hope I'll be clear.
I have a client (real estate website) and he uploads with ACF a unique pdf brochure per blogpost(...
1
vote
2
answers
498
views
vuetify-form-base Form not Load in Production Mode
I Use vuetify-form-base in Nuxt-Vue project and evrythings is OK in development mode(npm run dev)
When I switch to production mode(npm run start); forms not load and no errors or warnings occurred.
my ...
0
votes
1
answer
296
views
JSReact, Deleting any dynamically added form content other than last item wipes the form
I'm building a form with dynamically added fields and am working on the ability to delete fields if a user changes their mind about one. When deleting the last item added it works as expected, but if ...
0
votes
1
answer
963
views
Django - Error during template rendering for crispy forms with dynamic fields : 'int' object has no attribute 'get'
I have been trying to implement dynamic forms with a given number of fields and rendering these with crispy forms. However, the following errors are coming when rendering the page:
Template error:
In ...