Questions tagged [auto-populating]
25 questions
17
votes
4 answers
Populating a hashmap with predefined values (java)
I've run into a problem I haven't had to deal with before. I'm writing a patch for a database in java that's basically converting data stored in certain rows. In order to do this I have a conversion table that tells me what values become…

user1652875
- 233
- 1
- 3
- 7
3
votes
1 answer
Pre-Populating InfoPath using SQL Database
I am creating an InfoPath form and want to retrieve the data from the SQL database. I'm not looking for end users to fill in blank text fields, but rather am just wanting to populate the fields with the data from the SQL Database.
I have searched…

Richell
- 315
- 2
- 10
- 22
2
votes
3 answers
jQuery - can I fill form inputs from a serialized form string?
Given that I have some form on a page, I know I can get a unicode serialized string using
var query = jQuery('#some-form').serialize();
It's also possible setting the value of each input with $('#some-input').val(...). Assuming that same form above…

sa125
- 28,121
- 38
- 111
- 153
1
vote
1 answer
Issue Binding AutoPopulating List to a form Spring MVC
I have an issue binding the AutoPupulating List in a form to update the data. I was able to save the data using Autopopulating list though.
Here is the form backing model.
public class AddUpdateShot {
private Integer shootId;
private char…

lakshmi
- 385
- 3
- 8
- 18
1
vote
0 answers
Stop p tags from automatically adding in Wordpress - Twig, ACF and filter shortcodes
Wordpress is adding p tags automatically when i wrap my code with {% filter shortcodes %} {% endfilter %}. Is there anyway i can disable this because i have to use the filter shortcodes code. I am using Twig and Advanced Custom Fields so the_content…

mgonz
- 45
- 1
- 8
1
vote
1 answer
Populating a field using multiple field values
I'm using InfoPath 2007, and coding in C#. What I want to do is populate the field Contract Number, with multiple fields, being Contract Period End Date (dtTo, which has to be in the format YYYY/MM, which is a datepicker that was selected), Project…

Martin
- 23
- 2
1
vote
2 answers
How do I give reference of a AutopopulatingList to a List in spring?
I am trying to create a dynamically populated list using the AutoPopulatingList. I also have a form object as shown in the code below:
public class CDNoteForm{
private AbstractCDNote cdnote;
private List extends AbstractInvoiceItem>…

Devashish Khattar
- 79
- 1
- 9
1
vote
1 answer
cfselect problem
I theory seems to be the answer to the pre populated selectbox issue.
this is what it outouts

Roscoeh
- 59
- 1
- 4
1
vote
1 answer
Creating .additem for combobox
I have got a list of tariffs that i have set up on an autofilter so that when a specific sales channel is selected and password is correct it shows only the tariffs available to that channel.
My problem is that I cant seem to figure out how to get…

Peter Mogford
- 478
- 1
- 4
- 15
0
votes
1 answer
How to extract a list of mod folder names from an array within variable, check if that mod folder exists, and populate a modchecker list
I have a list of mods in a launcher.bat server command line variable, separated by semicolon:
set…

Batch N00b
- 1
- 1
0
votes
0 answers
Using MS Access 365. Key press event to update bound text field. Code only updates the field when execution is stopped
This Keypress event purpose is to update a bound field called txtSentto after searching a table of values. Code works when i stop execution with a stop command or debug tag. Allow code to run uninterrupted, the field does not update with new value.…

MadDogDave
- 1
- 1
0
votes
0 answers
How can I auto populate other textfields while a user edits first textfield?
I am building a macOS app with multiple text fields. While a user is editing the first text field, I want all the other text fields to autopopulate (according to the int value of the first text field).
So far, I can auto-populate the fields when the…

Zara
- 1
- 1
0
votes
1 answer
How can I iterate through the following directory full of images and add the images to my HTML page
I want to use javascript to automatically update my index.html doc based on files which are inside the images directory.
Here's a snippet of how the html should look if the directory contained the following 3 image files 'moth_forsale.jpg',…

Frankie
- 79
- 5
0
votes
0 answers
bash populating number of variables
I have a text file. Using wc -l I can determine their are 15 lines. I am trying to create a number of variables based on the output of wc -l. So if I get 15 lines, I want 15 variables named var1 var2 and so on. Does anyone know a way to do this?…

Xenon
- 171
- 2
- 9
0
votes
3 answers
Populating a 2D array in Javascript with random numbers
I'm trying to populate a 2D array in javascript with random numbers. Although each column in the array is random, each row is identical which is not what I want (see image below). I want both rows and columns to be…

Ismail
- 25
- 5