Questions tagged [auto-populate]

Populate the data elements automatically as they are requested.

261 questions
0
votes
1 answer

cakephp select checboxes with string from db

When adding a record, I let user mark as many checkboxes and needed: echo $this->Form->input('us_roles', array('label' => 'Roles:', 'type'=> 'select', 'multiple'=>'checkbox','options' => $arr_pr_role)); and store selected indexes to a string field…
Carlos Garcia
  • 359
  • 1
  • 5
  • 29
0
votes
1 answer

Auto populating form with existing data symfony2

How could I autopopulate a form that contains entity option things? I'm trying to do an update details form that when called already contains that users information. I'm using Symphony 2.1. The form would look like this: $builder …
Aaron Cole
  • 333
  • 2
  • 11
0
votes
2 answers

Select Box Populated From Table

I currently have a table sorted/filtered by several select boxes and two radio buttons, and it is working fine. I would the select boxes to be automatically populated from a table. Specifically, I would like a state select box that is populated from…
0
votes
1 answer

jquery to autopopulate field with a constructed url

I am making this much harder than it has to be, so I am stopping and starting from the beginning. I want to use jquery to auto populate a url field for a client. As the client types in the info, I want to autopop the Complete Url field For example:…
user1176783
  • 673
  • 4
  • 19
  • 39
0
votes
2 answers

PHP\HTML script to auto populate form fields when an item is selected from a dropdown list

I created a HTML form with one drop down listing of items from postgresql database, I wish to have some of the fields in the form to populate automatically from the database when an item is selected from the dropdown menu. I also have some…
Shade
  • 31
  • 1
  • 2
  • 10
0
votes
2 answers

How to populate select from database in Struts2+Hibernate?

I'm using Struts2+Hibernate. I have a form in a JSP page, in which there is a select that I need to populate it from Database. I have implemented the DAO class BookDAO ( selectBooks(), updateBook(Book book)). I have created the Action class in which…
user1459961
0
votes
1 answer

How to define an empty javascript object with the following struture so that I can dynamically insert data into it?

I am using JIT Infovis stacked or mono-valued piechart to do some data visualization. The stacked pie chart takes an object "obj" specifically with the following structure: This is the hard coded version of jsonObj: var obj = { // labelID…
FongYu
  • 767
  • 4
  • 15
  • 24
-1
votes
1 answer

Populate Google Form With Short Question from Google Sheets (App Script)

I want to create a google form that is used for my customers to inform me whenever they want to buy something from me. The google form is simple, it is filled with short questions of list of on sale item that ask about the quantity of item that they…
-1
votes
1 answer

Populate a select dropdown based on another select dropdown on Angular 14

so im trying to create a simple form with 2 select dropdowns. one select for the countries. one select for their states. the idea is to display a list of countries and when one country is selected, the second select gets populated with its main…
xbl
  • 3
  • 4
-1
votes
3 answers

How to write Land.cost() instead of "Land(0,0,0).cost() in my python code?

I wrote a Python program to calculate the cost of a land. Why can't I just write "Land.cost() instead of "Land(0,0,0).cost()" inside print function? class Land: def __init__(self, length, width, unitcost): self.length = input ('length…
Ronald
  • 21
  • 6
-1
votes
2 answers

How can I auto-populate a range from another tab based on a Data Validation selection in Google Sheets?

I have been looking for info about this for sometime, but nothing seems to work. I hope I'm going to explain this right, but here goes... I have a data validation setup (cell G31 on 'Fellowship Tracking' tab.) Based on whatever option is selected,…
-1
votes
1 answer

jQuery and Auto-populat selects

I have a simple page where I can select a client, then once I chose that autopopulate to the projects that belong to the client. I am using PHP/MySQL to pull the results. I took at a look at this:…
user39980
-1
votes
1 answer

VBA For Auto Fill

I want to be able to choose a value in E4 on the Invoice (which must have a drop down list of Client ID, Then I want the Client Name to populate into B5 the client address into B6, The vat number into B7, Terms into E6 All the info must come from…
djpret
  • 1
  • 1
-1
votes
2 answers

django modeling and load JSON input as tables

Have to make django models and take a JSON file to feed all the data for a student and classes display webapp. JSON file is what going to drive my modeling, it looks like this (truncated to couple of data points)... { "students": [ { …
LuckyStarr
  • 1,465
  • 2
  • 12
  • 14
-1
votes
1 answer

Auto fill cells in excel from drop down list

I just want to know how to autofill all cell if I select value from 1 cell using drop down box. Suppose in 1st cell of the row I will select "Yes", then all the 5 adjacent cell of that row will also show "Yes". ther is data validation activated in…
1 2 3
17
18