Questions tagged [auto-populate]

Populate the data elements automatically as they are requested.

261 questions
1
vote
2 answers

Retrieve data with child from Firebase Database and Populate Object Class using Kotlin

How can I retrieve data with child* from Firebase Database and populate an User object class. Firebase example: users uid : 131232 firstName : John lastName : Doe location lat* : 15.2512312 lon* : -12.1512321 chats -k1231* : true -k1285* :…
1
vote
0 answers

How to Populate a Select Box with another Select with Thymeleaf, JPA and Spring

as the title says i wanna know how to implement that functionality in this project. I'm new at this Spring and Thymeleaf topic using the CrudRepository, Entities, the services for each repository and their controller. In resume, i want to populate…
1
vote
2 answers

How to populate list of object in class A by class B constructor

I have an issue: There are 2 classes that implements some interfaces. In class A I have a list of objects of class B. Is there exist a way to populate these list using class B constructor instead of hardcode every object that will be created? In…
MDaniluk
  • 62
  • 2
  • 2
  • 16
1
vote
3 answers

Select options from Autopopulate text boxes using Selenium webdriver

Driver.findElement(By.xpath("//*[@id='client']")).sendKeys("Ho"); Driver.manage().timeouts().implicitlyWait(1,TimeUnit.MINUTES); WebElement dropdown = (new WebDriverWait(Driver,…
1
vote
1 answer

Filter Dropdown Based on Another Dropdown Selection

I have multiple dropdowns and want to filter the contents of the second dropdown based on what is selected in the first dropdown. Here is the following code that I have so far. How could I do this? HTML/PHP:
Rataiczak24
  • 1,032
  • 18
  • 53
1
vote
1 answer

SQL auto-validating data when adding it to row

My SQL code is as follows: CREATE TABLE personsdb (personID int IDENTITY(1,1) NOT NULL, personName varchar(50) NOT NULL, associatedWith varchar(50) NOT NULL, CONSTRAINT pk_persondb PRIMARY KEY (personID), CONSTRAINT uq_persondb UNIQUE…
David
  • 47
  • 6
1
vote
1 answer

How to auto populate multiple sheets from a single master tracker in google spreadsheet

I am having trouble creating a script that can populate multiple sheets from a single main tracker spreadsheet. More specifically, the Main tracker spreadsheet has a column named outcome in which a clients outcome is recorded. I want to be able to…
shavonb900
  • 13
  • 2
1
vote
4 answers

How to make a value in dropdown selected based on value from database

I have a dropdown which has three options User, Instructor and Player. Now i have a table which displays the list of all users from the database. The username, firstname, lastname and a 'change authority' column. This change authority column has…
alice walker
  • 11
  • 1
  • 4
1
vote
3 answers

How to populate WPF window from database

I want to auto load some data from database to populate some text boxes and combo boxes when a new window is loaded. For example when I click a button in window1, window1 will show a new window window2 and pass an ID to window2 (id is required for…
BMA
  • 33
  • 6
1
vote
2 answers

On Screen Keyboard auto pop up

Is there a way to on screen keyboard auto pop up when user clicks TextBox field on WPF? If it is possible, can it work across the app?
arti
  • 645
  • 1
  • 8
  • 27
1
vote
1 answer

Autopopulate by searching multiple columns

I am trying to find a formula that says look at all of column A - if you see the word "Desktop", add up all the amounts for them from Column B and put it in F1. Then same for Laptops. I know that I can manually hold down the 'ctrl' key and click…
JaneW
  • 11
  • 1
1
vote
1 answer

Dynamically adding a table row with jquery, then add auto populate select box in each new row

Hey, guys, I tried to ask this yesterday but I didn't explain myself clearly or simply enough. I have a form that is setup in a table. User can add new rows (and more form elements) as they please. Each row of this form needs to have its own…
Dylan
  • 412
  • 4
  • 19
1
vote
1 answer

Auto-Populate Field using Javascript

I created this javascript to auto populate a field, with values from other fields. It is called in the form onSave event. function OppTopic() { var products = ""; var parent = Xrm.Page.getAttribute("parentaccountid").getvalue(); var city =…
AndroidAL
  • 1,111
  • 4
  • 15
  • 35
1
vote
1 answer

how to automatically populate other fields when town is chosen

I have 3 textboxes in a form - town, county and country. A list appears for town so the user can select from this list. When a town is selected I want the country and county textboxes to be populated. But when the town is selected, nothing appears…
user123456789
  • 1,914
  • 7
  • 44
  • 100
1
vote
1 answer

How to Populate Combo Box Access VBA

I am trying to fill in a combo box with names from a text file. The file ill ready something to the affect of. Greg Smith John Oliver Bob Cassidy .... .... So far I have the code from another thread which works great but only takes the last name…
hightryan
  • 41
  • 1
  • 4