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
2
answers
127
views
How to add a memo/note button for each item in a React JSON Schema Form array?
I'm building a form with React JSON Schema Form (RJSF) that contains arrays of items. I need to add a custom feature: a button next to each array item that, when clicked, displays an input field where ...
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 ...
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
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
457
views
Angular: Select checkbox on another checkbox selection ( dynamic form control )
I'm new to angular.
I have this UI. I wanted to make Bill To checkbox checked if any one (Address, Email or Phone) of the checkbox is checked. I'm using dynamic form control for checkbox.
code ...
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
1
answer
335
views
how to update form fields by condition in dynamic form in angular?
I have a dynamic form in Angular and I want to change form fields by condition, for example I want to show Accept terms field only when the user selects India as a country. Example: The user selects &...
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
0
answers
86
views
Adding input fields and setting their ids dynamically
$(document).ready(function() {
function getData1() {
var innerhtml1 = $('.load1').html();
$('.main_div').append(innerhtml1);
}
getData1();
$(document).on('click', '.add_question', ...
7
votes
2
answers
23k
views
Adding Dynamic Input Fields With VueJs
I'm using Laravel 5.7 & VueJs 2.5.*...
I know how to add input fields dynamically but for my app i don't understand how to do. I have 'TicketInvoice.Vue', In that page i have a bootstrap modal to ...
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.
1
vote
0
answers
583
views
angular survey dynamic questions rendering template driven or reactive
I am new at angular currently started a project with angular 9 to build survey application where I have
dynamic questions with
different question type (radio,checkbox, textbox, textarea, dropdown,etc)
...
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
2
answers
418
views
React dynamic form input fields typeError undefined trim()
I have a React form with dynamic input fields that a user can add and remove input fields. All inputs are required. If all input fields are filled and the form is submitted then i console.log() an ...
0
votes
0
answers
119
views
How do I write my code to dynamically change a part of a form using Select option
I am new to coding, the select option keeps opening in another page but I need it to dynamically change on this same page. I do not know what to do anymore, I have tried switch case, if statements etc....
0
votes
0
answers
30
views
Unable to pre fill Data coming from api, in my multiple dynamic tab depended forms angular
<mat-tab [label]='customCTAArray[tabi].controls.name.value ? customCTAArray[tabi].controls.name.value : "CTA "+ i' *ngFor="let i of [1,2,3,4,5] | slice:0:selectedProductDropDown ; ...
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
2
answers
2k
views
React Dynamic Input form shown Error Some Issues
I am creating Dynamic input fields I am validating some required fields my validated output in the array I try to show error values in input I cause some errors. I tried an some match with an index ...
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 ...