Questions tagged [dynamicform]

Questions about dynamic HTML forms, e.g. JavaScript managed (add/remove inputs, change inputs' values...) It also represents one specialized class/widget in SmartGWT.

Questions about dynamic HTML forms, e.g. JavaScript managed (add/remove inputs, change inputs' values...).

It also represents one specialized class/widget in SmartGWT, i.e. DynamicForm. Please refer to http://www.smartclient.com/smartgwt/javadoc/com/smartgwt/client/widgets/form/DynamicForm.html for more info.

201 questions
37
votes
3 answers

Spring 3 MVC: one-to-many within a dynamic form (add/remove on create/update)

I'm looking for a solution to manage a one-to-many relation within an HTML form using jQuery. I'm developing with Spring, Spring MVC and Hibernate. I found many tracks on the web, but not any working full-example. The background I've three JPA…
sp00m
  • 47,968
  • 31
  • 142
  • 252
16
votes
4 answers

How to pass a dynamic function name to the click event in Vue Js

Is there any way we can pass the function name from the parameters ? some thing like this..
Tony Tom
  • 1,435
  • 1
  • 10
  • 17
13
votes
4 answers

Formik - Update initial values after API call

I'm getting my inputs dynamically from an API call based on a change in select input, but when I try to add to the initial values of Formik, it always gives me an error ... Warning: A component is changing an uncontrolled input of type text to be…
Ruby
  • 2,207
  • 12
  • 42
  • 71
7
votes
2 answers

Why can't you add a EditorExit Handler to a DynamicForm or FormItem?

This handler only exist for a ListGrid. But if you look at the docs for DynamicForm.setValidateOnExit(), it says: If true, form items will be validated when each item's "editorExit" handler is fired as well as when the entire form is submitted…
Adel Boutros
  • 10,205
  • 7
  • 55
  • 89
6
votes
0 answers

Zeppelin : How to fill dynamic form dropdown list from sql interpreter

I have connected my Zeppelin to postgresql using the native driver provided in the Zeppelin package. I have a column - ID (of a table say 'a') which consist of all the ID's required for further processing. …
kumar_m_kiran
  • 3,982
  • 4
  • 47
  • 72
4
votes
0 answers

How to dynamically generate component based on json in form in React?

I have created a simple application containing a form.json file: { "items": [ { "componentType": "NameBox", "lable": "Name", "properties": { "type": "text", "minLength": 3, …
beingshuchi
  • 109
  • 1
  • 10
4
votes
2 answers

how to get value from dynamic form in angular

how do i get values from angular dynamic form here is my code: my html
4
votes
2 answers

How get values as integer in formGroup.value in Angular2

I make a form using DynamicForm it work perfect but when try to get the values using form.value or form.getRawValue() all files are return like string, how I make to the number files as return as integer in the JSON file Example actually I get a…
oriaj
  • 768
  • 1
  • 16
  • 33
4
votes
1 answer

How to submit form with dynamic html Input texbox using jQuery Ajax

I'm creating dynamic multiple HTML input box using jQuery and populating the value, after populating I want to update the product price in each text box and submit the form with updated value to server using ajax. I'm facing issue with below code,…
java begineer
  • 319
  • 5
  • 15
3
votes
2 answers

Nested dynamic array forms in Angular Reactive forms

I'm having a array form namely "address" and this will be a dynamic once the user clicks the "Add Address" button immediately one address form will add. I implemented this with an issue (Add/Remove address works fine). Now I need to add a dynamic…
3
votes
2 answers

DB Design for storing dynamic form data with multi select fields

How to store data from dynamic form with multi select fields. I have read various post and all example has only list key,value input. But if the form has multi select input. what is the best way to store the data. I am not looking for NoSQL…
Mukun
  • 1,756
  • 10
  • 30
  • 57
3
votes
1 answer

Using Angular2 reactive forms with nested TypeScript model objects

I am trying to use angular 2 model driven forms in my application, but if I have nested objects(with null value) I am not able to make it work as desired. Here is my code: person.model.ts (This is Person model object with address as nested…
user3595026
  • 560
  • 2
  • 9
  • 26
3
votes
0 answers

Entity Framework for dynamic entities

I am creating an application in which user can design their forms dynamically. So, number of fields won't be know in advance. Will Entity Framework fit into this requirement to do so? If so, how dynamic entities should be created to map separate…
Hari
  • 73
  • 1
  • 8
3
votes
1 answer

jQuery how to add unique id to dynamic form input fields

I have this form created using Laravel blade template and made it dynamic using jQuery. now i can populate table rows with all the input fields in it. now i'm trying to get ajax data in to those fields on change select value in first column. it only…
Dhan
  • 501
  • 1
  • 8
  • 21
3
votes
1 answer

How to design a database for relational dynamic forms?

My requirements are: Need to be able to dynamically add forms with different fields/field types A form can include a dropdown that gets filled with the values of another submitted form Eg : Staff form : First name(text box) Last name(text…
Solmaz
  • 31
  • 1
  • 2
1
2 3
13 14