Populate the data elements automatically as they are requested.
Questions tagged [auto-populate]
261 questions
2
votes
1 answer
Django - How to auto populate form field from two others fields
Here's what I'm looking for. In my form I have three fields, all CharFields. Those are Name, Surname and Username. Username should be set as a sum of Name and Surname, so for Name = Joe, Surname = Black, Username = Joe Black.
As the form is…

Gandi
- 3,522
- 2
- 21
- 31
2
votes
2 answers
LabVIEW Virtual Folder vs Auto-populated Folder
In a LabVIEW project, when should I use virtual folder and when should I use auto-populated folder? Why?

Yifeng Y.
- 31
- 4
2
votes
1 answer
How to create pre_populated_field in admin django like slug
i want create a custum auto populated field in admin django like slug but calculate another thing , not slugify.
how do this ?

mina fathollahi
- 79
- 6
2
votes
1 answer
Populating Inputs Based on HTML Dropdown Selection
I know there are many questions like this one on Stack Overflow, but I am really needing something more related towards what I am doing...so that is why I am posting this question.
I have an HTML form with PHP that pulls data from an MSSQL database…

Rataiczak24
- 1,032
- 18
- 53
2
votes
1 answer
Word Template, populate fields, C# .NET
I have a word document (docx format) that I need to populate with data from a dictionary . The key of the dict will be the word field to be populated. I was wondering what is the best way to do this (bookmarks, mail merge fields, etc)? I did a…

Tomislav Markovski
- 12,331
- 7
- 50
- 72
2
votes
1 answer
How to populate/fill with random data an Oracle 11g table with Oracle SQL developer or other tool?
We have several tables that we would like to test and in order to save time it would be very helpful to populate them with random data.
We do not request the data to make sense. It can be any string or any date inside the row.
Because we are at a…

George Pligoropoulos
- 2,919
- 3
- 33
- 65
2
votes
2 answers
need to connect to MS access database and populate them in mysql table automatically every 30 min
I am developing a time sheets project, i am using mysql as database, i need to connect to MS access database and pull required data and sore it in mysql database. I have to do this automatically every 30 min. I was wondering if there is anyway i can…

Svanteru
- 21
- 1
2
votes
0 answers
Auto populate text fields using URL
There is an external webpage I use frequently at work that requires I renter generic (non-passord) information before I can use the functionality:
https://online.worksafebc.com/anonymous/employer%20clearance%20letter/default.aspx
I want to create a…

user3254785
- 21
- 2
2
votes
3 answers
Using a FetchedResultsController to Auto-Populate a Table view below a TextField with entries from Core Data
I am working on my first app and am in need of some assistance. I've read through tons of similar questions on SO but just not getting anywhere.
I have a simple table view controller which has a plus button; when pressed, that leads to a modal view…

amitsbajaj
- 1,304
- 1
- 24
- 59
2
votes
1 answer
What are all these extra values appearing in dropdown list?
To start, I created a static version of an auto-populate dropdown list from another input.
This worked fine, but when I put it into a joomla site, and put all the head tags in, I get it working as it should, but in the second dropdown field I'm…

Lee Collings
- 39
- 1
- 3
- 12
2
votes
2 answers
Struts2: Autopopulating fields based on a dropdown value without JavaScript
I tried searching the site but could not find an answer to my question.
i am developing a java Struts2 web application.
There are 3 form fields on a jsp page as follows:
(Struts2 tags are being used)
other…

user2545863
- 87
- 2
- 9
2
votes
2 answers
Populating a second select box depending of the first select box option
I'm having this select, let's call it "X", that is populated with car brands as options from the database via a SELECT.
2
votes
3 answers
Auto populating Set
Is there anything like AutoPopulatingList but for Set?
The data that I want to show is an association that uses Set.
public class Employer implements java.io.Serializable {
private Set employees = new HashSet();
}
I've tried using…

Agustinus Verdy
- 7,267
- 6
- 26
- 28
2
votes
2 answers
Get images from multiple folders within /images and place each folders contents in its own div
I am trying to make php do the following.
I have a structure of folders in my root directory. /images/1234, /images/2345, /images/3456 etc. (multiple folders all in images)
I would like to get the contents of each folder and put their contents into…

user1881482
- 746
- 2
- 16
- 34
1
vote
1 answer
How to auto-populate specific fields when using @Html.EditorForModel() to build a form?
I have users fill out their profile information somewhere on my site using the AspNetSqlProfileProvider that came with the IDE.
I allow my users to edit their profile at any time by going to the edit profile page where the form to edit their profile…

Ecnalyr
- 5,792
- 5
- 43
- 89