Questions tagged [populate]

This is a general tag used when applying structured or unstructured data into a context.

This is a general tag used when applying structured or unstructured data into a context.

It doesn't necessarily mean that any kind of triggering of logic is in place. In case this is happening it should be mentioned in the question.

1176 questions
-1
votes
1 answer

How to populate my sport activity with data?

Hello everyone I'm working on my Android project where I created expandable list view with Men's and Women's sports. Under each of them I have a list of sports. Each sport after you click on it open new activity. Example: If you click on Men's…
espresso_coffee
  • 5,980
  • 11
  • 83
  • 193
-1
votes
2 answers

Way to re-populate checkboxes on page?

I have a bit of an odd/unique situation, where I am currently looking for a way to 're-populate' checkboxes on my page. First some background on how the page/app works. 1.) state1: You get simple search form. Enter in first or last or state, etc.,…
whispers
  • 962
  • 1
  • 22
  • 48
-1
votes
3 answers

Populating a listview with videos from sdcard. android

I have a number of videos in my sd card in the following location... "sdcard/new folder/**.mp4". Now I want to populate a listview with the names of these videos. The number of videos is going to vary every time. There is no fixed number of videos.…
Mohammad Sohaib
  • 577
  • 3
  • 11
  • 28
-1
votes
1 answer

How do I move txt from one column to another

I need to take an address that consists of "city, state" from column "location" and populate 2 new columns "city" and "state" but leave location the way it is, now I have done this with a SUBSTRING_INDEX command but I have to run the command…
bodhi926
  • 21
  • 7
-1
votes
3 answers

Image hover displaying content in separate div

I have a photo gallery (carousel slideshow style) and I'd like to get it so that anytime someone hovers over one of the images, image-specific content is populated below the image in a separate div. Here is a example of my code:
Scott
  • 3
  • 1
-1
votes
2 answers

Database used to populate selection list

i am trying to create a form and in that form have a selection list in which the options are automatically populated with data from a database (namely customer's last names), after which when the last name is chosen from the list and the submit…
user2273149
  • 29
  • 1
  • 2
  • 7
-1
votes
4 answers

Selection list populated from database

I have been having a problem trying to figure out how to create a selection list which is populated with data from a table in a database, namely with the options being customer's last names. Here is what i have tried: I am trying to make the…
bigsenator
  • 19
  • 1
  • 7
-1
votes
1 answer

Android autocomplete textview population using local json

How To use a local JSON(present in raw folder) file to populate an autocomplete textview? I am new to android, and building a small application. plz help
-1
votes
1 answer

Dynamically change certain text in textarea with drop-down selection

I have a text area that has names within the default value. For example the textarea reads.. (dynamic registrant name) just registered to become a donor in (dynamic from pull-down above) honor. This text is editable So in the same form I have an…
-1
votes
1 answer

Android: How to populate a spinner from saved openFileOutput Mode_PRIVATE?

What i want to achieve is populating a spinner with previously created openFileOutput files. This is the code for creating the files: save.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v)…
MeesterPatat
  • 2,671
  • 9
  • 31
  • 54
-1
votes
1 answer

How to populate a ListView from ArrayList?

I'm writing an android RSS feed reader. when my program read the feeds at the end return me an ArrayList Item is my class: public class Item implements Serializable { private String title; private String description; private String…
-1
votes
2 answers

Do until populating string with comma separated values

Hey all i am trying to populate an array like so: Dim tmpArray As String = "" Do Until x = Form1.arrayCal.Length tmpArray = tmpArray & "," & x x += 1 Loop tmpArray = Replace(tmpArray, ",1", "1") Dim arrDaysInMonth As String() =…
StealthRT
  • 10,108
  • 40
  • 183
  • 342
-2
votes
1 answer

Edit user information through modal

I am developing a small Interrail Planner for me and my friends. At the moment, I am trying to create a modal to edit/update the travelers information. Firstly, I have made it in a separated file. A workflow: USER click on edit button ----> …
-2
votes
1 answer

I want to populate the column of a dataframe with values from the column of another dataframe when the values of two columns match

I want to populate values of df2['VALUE'] in a new column in df1 df1['New'] when category and location match for both dataframes. When df1['category'] = df2['CATEGORY'] AND df1['location'] = df2['LOCATION'] populate values of df2['VALUE'] into a…
pluret
  • 3
  • 1
-2
votes
1 answer

Need help in NodeJs and MongoDB problem (Mongoose populate is not working)

Here is my schema const mongoose = require("mongoose"); const Schema = mongoose.Schema; const finalDocument = new Schema({ name: { type: String, }, Properties: { type: mongoose.Schema.Types.ObjectId, ref: "Properties", }, …