Questions tagged [auto-populate]

Populate the data elements automatically as they are requested.

261 questions
1
vote
2 answers

Auto populate a combobox

Here i am again. I have 3 comboboxes on my form ie cmbPart_number, cmbPart_name and cmbEOnumber. All i want to find out is how the cmbPart_name and cmbEO_number boxes are autopopulated when the user makes a selection from the cmbPart_number. What i…
TT1611
  • 77
  • 2
  • 5
  • 12
1
vote
1 answer

Autofill data from one tab to another under certain criteria

I enter customer details onto an excel 2010 spreadsheet, ie customer name, date, description of order, amount of order etc. Sometimes, under certain criteria, the same or part of the same information needs to be added to another tab, ie tab2, on the…
DVP
  • 61
  • 2
  • 3
  • 9
1
vote
2 answers

Array diagonal neighbourhood analysis and sort

I've been battling with this for some time and seem to be getting nowhere. The set up is so; I have a 2D array. For this array I need to iterate through each value and return the diagonal neighbours (5 values). These neighbours will be put into a…
Oliver Burdekin
  • 1,098
  • 2
  • 17
  • 36
1
vote
1 answer

How to update this to auto populate the date in an input field

Haven't posted anything in a while so apologies if I am missing something. I am trying to update these signature forms that were grandfathered down to me. I have very little experience with HTML. When I copy and paste it into a different section its…
1
vote
1 answer

Is there a way to autopopulate a mongoose field with a string?

I have a Item schema with an array of categories where I store some ids : const schema = new Schema( ... categories:[ { type: Schema.Types.ObjectId, ref: 'Category', autopopulate: { select:'name'} } ] ... ) Category: const schema =…
Riadh Adrani
  • 486
  • 2
  • 5
  • 16
1
vote
0 answers

SharePoint List customized in PowerApps : Automatically change value of dropdown column based on selection in another dropdown

I’m new to SharePoint and PowerApps, can you help me on this one on how to resolve this issue? I have my SharePoint list customized through PowerApps. These are the dropdown columns that were set to automatically change value based on selection of…
1
vote
1 answer

Keyword Search with Auto Populate Array Formula

I have a list of bank transaction that each transaction has to be categorized. I have formulas that populate C2:C which works as keyword searcher. A2:A are the bank transaction descriptions C2:C are the bank transaction category E2:E are the…
1
vote
0 answers

Autopopulate documents and subdocuments in mongodb

I'm using NodeJs & I want to know how I can autopopulate documents and theirs subdocuments in mongodb, I use 'AUTOPOPULATE' of https://plugins.mongoosejs.io/plugins/autopopulate, but, this only autopopulate the first documents of schema but not…
1
vote
1 answer

How to keep jQuery auto populated dropdown result selected?

I have this dynamic dropdown which fetches result on selection of one select menu, but the challenge I am facing after it auto populates the results on the second dropdown on submit of form the value of second select disappears. How to make it not…
Sherline
  • 53
  • 6
1
vote
2 answers

Check if there are higher values in 2 columns (C&D) on other sheet based on cell value in column B & autopopulate result

Link to Google Sheet Sample In column E on sheet 'Calc', I want to check if there's a person in sheet 'Data' who has the same A value, but a higher value on B and C. Eventually I want to Return 'No' if not, return 'yes' if yes. If there's a person…
Lisa
  • 897
  • 9
  • 27
1
vote
2 answers

When submitting a Flask WTForms, how can fields be left blank without blanking-out those values from the database table?

Question: I'm working on a Flask app w/ a WTForms EditProfileForm containing: First Name, Last Name, Username, and About Me. The form loads w/ Username and About Me auto-populated. First Name and Last Name are blank. If the user edits the About Me…
1
vote
1 answer

how to deal with many-to-many relationship in mongodb?

it is easy to deal with 1-1(via refs) or 1-N(via populate virtuals) relations in MongoDB but how to deal with N-M relations? suppose I have 2 entities teacher and classroom many teachers can access many classrooms many classrooms can be accessed by…
Kent Wood
  • 1,392
  • 2
  • 14
  • 30
1
vote
1 answer

Efficient way to populate drop-down dynamically in laravel

I have multiple database tables which each one of them populates a dropdown, The point is each dropdown effects next dropdown. I mean if I select an item from the first dropdown, the next dropdown values change on the selected item, which means they…
Mohammad_Hosseini
  • 2,481
  • 3
  • 30
  • 53
1
vote
1 answer

How to detect Event Listeners and their actions on input fields

I have purchased a booking plugin (wordpress) to add to a site. https://wpamelia.com/ I cannot show the site I am working on, but here a demo from plugin developers https://sports.wpamelia.com/#book Once you have chosen your date and time, you end…
Admino
  • 69
  • 1
  • 3
1
vote
2 answers

How do you auto-populate the email address on a feedback form in IOS?

Wakemate does an amazing job of auto-populating a users email address in a Feedback form in an iphone app. See here: Does anyone know how to do this (with the caveat that we are using Facebook Connect for login)?
scottorn
  • 51
  • 5
1 2
3
17 18