Populate Text Field From Drop Down List

May 1, 2009

how to create a somewhat simple form. The form will have text fields for 'Name', 'Phone', etc. What I want is to have a drop down list, which has different insurances to choose from (i.e. Medical Insurance, Dental Insurance, Senior products), and say when I choose 'Senior Products', new text fields pop up within the form to add their 'Address' and click a checkbox that states they authorize to be contacted. These new fields aren't visible unless they choose 'Senior Products' from the drop down list.

View 6 Replies


ADVERTISEMENT

Dynamically Populate Text Field From Drop Down Box

Jun 20, 2011

The below script is working fine on IE but notin Mozilla

<script type="text/javascript">
window.onload=function() {
if (document.getElementById) {
document.getElementById("country").onchange=function() { switchme(this); }
}
}
[Code]...

View 4 Replies View Related

Auto-Populate Text Field Based On DropDown List Selection

Dec 3, 2009

I have set up my website quite some time ago that has served its purpose very well, however I will now be adding an order form functionality. So far, by reading books and traversing forums, I have been able to develop a page where the user
1.Enters data into the required fields, that is then submitted to a MYSQL database via PHP,
2.Can retrieve orders that are stored in the database,
3.Delete orders that are stored in the database.

I have wamp installed on my computer as the webserver. I have also incorporated two drop down lists that both retrieve their values from tables within the database. The first drop down list retrieves the Australian States that I have stored in a table, and once the submit button is pressed, it stores the State that is selected to a separate table. This drop down list functions as it should. An extract from "From Place an order.php"

<?php
$dbcnx = @mysql_connect('localhost', 'root', 'tingling');
if (!$dbcnx) {
exit('<p>Unable to connect to the ' .
'database server at this time.</p>');
} .....

The second drop down list retrieves product names from a table that contains products and their prices. What I would like to happen, is that when the product is selected from this drop down list, a text box is automatically filled with its corresponding price. I had this drop down list working as per the "States" drop down list, but could not get it to auto populate the text field. I got some assistance from a friend and was able to get the text box to auto populate with its corresponding price, however when the page was submitted to the database, the "id" number of the product name from the drop down list was stored, and not the product name.

<select name="productSelection" onchange = "getProductDetails(this)">
<option selected value="1product">Select Product</option>
<?php
$products1 = @mysql_query('SELECT * FROM products');
if (!$products1) {
exit('<p>Unable to obtain author list from the database.</p>'); .....

View 9 Replies View Related

Text Field To Drop List

May 10, 2007

I'm looking for have a text field when a user clicks in the text field a drop list of values appears for the user selects from and populates the text box they clicked. Is there anywhere I can find this or something similar?

View 1 Replies View Related

Dynamic Drop Down List Based On Text Field Value

Nov 25, 2009

I have a form that has a pretty complicated combo box - a user starts typing text, it queries a database for matches, and displays the results to the user. The user can then select the match they desire and it has a value id, which I am currently sending to a hidden field in the form. So, for example: user starts typing in a movie name, Seven - it returns Seven and user selects it. The form submits the id of the movie seven (say 12) to a hidden field.

Where I am stumped: Once a user selects a movie title, I have another drop down select box that is to display the available formats of the movie by querying my database based on the product id (12) and returning the available formats in the list:

DVD
BLUERAY
VHS

I am pretty good at programming, but I cannot figure this out - how to make the select box fire and return results once the value for the textbox has been captured.

View 1 Replies View Related

Populate Drop Down List

Mar 27, 2009

I know that this is very basic to most of you JS Guru's out there, but I am stumped. I have found dozens of tuts on this, but can't seem to find a VERY simple basic version of it. This is what I want, actually my client wants. I want to have a select list that gives the options of countries. Then upon selection this changes the drop down list of the states/provinces listed. So when I click on Europe it shows the different sections of Europe, and US it shows the states (I'm sorry I don't know what Europe calls their equivalent of a state), etc.

View 6 Replies View Related

JQuery :: Populate A Drop Down List From Sql Server?

Oct 7, 2010

I need to populate a drop down list from sql server via jquery.I'm unfortunately unable to use any server-side type coding

View 1 Replies View Related

Pre Populate Text Field Based On Another Text Field

Jan 23, 2010

I'm developing a web page. It includes 2 text boxes. One text box for city and another text box for std code. I wrote the code for auto suggestion to city. Now i want to pre populate the STD code when ever a known city is selected (when city is selected from the recommendations displayed for city field).

View 8 Replies View Related

Populate A Dropdown With Text File And Dynamically Update The Second Drop Down

Feb 2, 2011

I created two drop downs, where the second one dynamically updates according to first selection. Now I jus have 2 members in first drop down and 20 in second drop down. I hard coded using javascript. But by the end of this year the number increases to 100's, then we cannot hard code it. I use html,javascript,jsp for the webpage. Is there a way to populate the dropdowns with data in a text file where they can update the text file with new members.

View 5 Replies View Related

Populate Text Field Using Onmouseover

Jun 18, 2010

I have a table where when the cursor passes/hovers over a cell, the current cell, as well as the top cell in its column and the first cell in its row change backgroundColor. I have text fields outside the table which I want to populate with the contents of the cells affected by the mouseover event. So as the mouse moves over different cells, the contents of the text fields changes accordingly. I've got the backgroundColor to change, but when I try to assign the contents of the cells to the text fields, nothing happens. The change of backgroundColor even stops working. This is the code I'm usign to populate the fields.

document.getElementById("tableID").textfieldID.value = Col1Cell[0].innerHTML;
document.getElementById("tableID").textfieldID.value = HeaderCell[n].innerHTML;
document.getElementById("tableID").textfieldID.value = this.innerHTML;

I'm traversing through the <th> and <td> tags to find the header cell HeaderCell[n] and first column cell Col1Cell[0] associated with the current cell. If I leave out these lines the backgroundColor changes, if I use them, nothing happens at all.

View 2 Replies View Related

PHP Drop Down List Selection Populates Second Dropdown List Or Text Box?

Jul 13, 2011

I have been struggling on a bit of code for a while now. I need to populate a second drop down list (Region) based upon the selection of the first (County).I have found a piece of code that works on its own and have adapted to suit my needs - see below. However, when I drop it into my main page the javascript is not working. It's because of the formObject but I just don't know enough to resolve this! Furthermore, I need the textboxes the user has already completed in the form to retain their value once the javascript kicks in as the completed form will submit to a database.This piece of code is working well . . . .

<?php

$link = mysql_connect('myhost', 'myusername', 'mypassword') or die('Could not connect: ' . mysql_error());
mysql_select_db('mydatabase') or die('Could not select database');[code]......

View 2 Replies View Related

Populate Text Field With Radio Button Value

Jan 3, 2010

If the user selects the early bird special for member (at 100.00) it populates the text field with the value for that row. Or, if the user selects regular registration for non-member it sets the early bird text field back to 0.00 and populates the text field with he value for the regular expression code. At the same time it populates the total field with the total price. I hope this makes sense. How can I accomplish this using JavaScript or jQuery? The text fields are read only. The table is listed below.

Table code:
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "[URL]">
<html xmlns="[URL]">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Untitled Document</title>
</head> .....

View 4 Replies View Related

JQuery :: Populate A Dynamic Dropdown List Based On Another Dynamic Drop Down Selection?

Jun 29, 2010

how to populate a dropdown based on Another dropdown selection. This all should be a dynamic. Eg: I have two text boxes one is TechID and other is JOB ID. When I start typing Tech ID it suggests me the list of IDs which start with the input string i have put in Tech textbox. When i select the Tech ID the jobs associated to that Tech ID should be displayed in JOB ID text box as a dropdown list.

View 1 Replies View Related

Auto Text Field Populate Based On Dropdown

Feb 22, 2011

I've looked around and from what I can tell, the code seems right. Basically crating a JS array and passing PHP values to it to use in an onChange to fill a text field. The dropdown gets populated fine but the text field does not autopopulate onChange. I'm not too fluent with JS but have a good analytical mind and from what I can see, the logic seems right.

<?php
include('connectdb.php');
$CENTRE = $_SESSION['centreAFB'];
$qryFormList = mysql_query("SELECT * FROM tblLogin WHERE ACCT_TYPE = '2' AND loginCENTRE = '$CENTRE' ORDER BY loginNOM");
echo "<script type='text/javascript'> var formCourriel = new Array()";
while($resFormList = mysql_fetch_assoc($qryFormList))
[Code]....

View 7 Replies View Related

Drop-down List Validation Of Blank Field

Apr 23, 2011

I want to carry out form validation for drop down lists. My website has 10 drop down lists. I want an alert message to be displayed whenever the user selects a blank field from a drop down list. One of the sample drop down list runs as follows:

[Code]...

How can I include a function that displays an alert message whenever a user selects a blank option from the drop down list?

View 11 Replies View Related

JQuery :: Use Tagify Plug-in To Populate Text Field With Dynamic Labels?

Sep 7, 2011

Have the following code which (resides in a dialog box) and serves as an event listener for check boxes. Am able to populate / de-populate text field with values from check boxby checking or unchecking the individual check boxes:

// Event listener which picks individual contacts// and populates input field.
$('#emailCheckListId_ul input:checkbox').change(function() {
// Declare array
var emails = [];

[Code].....

However, when I use try to use theJQuery Tagifyplug-in it only creates one "tagified dynamic label" inside the text field but doesn't create another label when I click on an additional check box. Also, when I uncheck the original checkbox, itdoesn't remove the original label.

Here's my code using the JQuery tagify plug-in (all I did was keep everything the same as above but called the tagify functionon the text field):

// Add / Remove array from text fieldtextField.value = emails;
// Decorate with dynamic label
$(textField).tagify(emails);

I get this JavaScript error in the browser:

jquery.tagify.js: 'options' is undefined, line 71

In the source code this line reads:

_setOption: function( key, value ) { options.key = value;
},

Its stating that options.key is undefined...

To view the jquery.tagify.js complete source, clickhere.

Is there a way I can create an "else" for example:

// Iterate through each array and put email addresses into array$('#emailCheckListId_ul input:checkbox:checked').each(function(){
// do something
});

[Code]....

View 1 Replies View Related

Removechild - Create A Drop Down List Which Depend To The Value Selected From The Previous Drop Down List

Jul 28, 2010

I am trying to create a drop down list which depend to the value selected from the previous drop down list. I can add it without problem, but If I change again the value of the first drop down list I would like to remove the previous drop down list generated from the first value. If I try to remove it when I create the element, it even does not create the element, the remove element function seems to work because when you click on the remove link it works.

[Code]...

View 4 Replies View Related

Populate Multiple Text Boxes From A Dropdown (can Populate 1 Text Box)?

Mar 19, 2010

Below is the code I use to populate a textboxes (compaddress) when I select the compname from the dropdown. I would like to be able to populate other textboxes such as the compdescription, compmaincontact and others when I select the compname from the dropdown. I think that I need an array but I really would like some advice on how to do it as all of my attempts have failed so far

Code:
<script type="text/javascript">
function showname(what)
{
what.form.textfield.value=what.options[what.selectedIndex].title
}
window.onload=function() {
showname(document.form1.number)
}
[Code]...

View 3 Replies View Related

Change Occurance Of Text In A Drop Down List

Apr 6, 2011

I have the following html:[code]I would like to know if there was a solution in JS which would change the occurance of the 'and' in the last option to '&'.Therefore after the JS has kicked in, the html will read:[code]

View 3 Replies View Related

Drop Down & Text Input For The Same Field

Oct 3, 2005

My database saves the cars make and model to the row in the database. On the "Add a Job" page, you have to enter the make and model of the car in by hand. I'm looking for a way to have these in a dropdown list, but if the make/model isn't in the list to be able to add it manually.

I can get the makes and models form the database and get them to fill a dropdown list, but then there isn't any provision for entering a make/model manually without going into PHPMyAdmin.

i figured this would probably be best done in JavaScript, but can't find any info on scriptsearch, hotscripts, etc

View 2 Replies View Related

AJAX :: Populate An ASP List Box Based On Selection Of A Previous List Box?

Mar 7, 2011

I have 3 ASP list boxes. I would like to populate the second list box based on the selection in the first list box and based on the selection in the second list box, populate the third. I would like to do this using AJAX. How can I do it? Can someone please give me the code snippet as I am a complete noob when it comes to AJAX and I kinda am running outta time to finish implementing it. Additionally, should I use ASP boxes or HTML <select> tag?

View 4 Replies View Related

Updating A Text Field And Drop Down At Same Time?

Jul 17, 2009

I have a DB query that returns CustomerID, CustomerName, CustomerContact, CustomerSalesID. This Query populates a dropdown.

I need to have the Customer Contact applied to a text field and the customer Sales ID used to select the SalesRep from a different drop down when you select a customer.

Not too hard I'd think. I don't think I need to go as fancy as AJAX since I've already called the query when the page loads, that data is already there.

View 9 Replies View Related

Drop Down Menu Selection Writes To Text Field

May 13, 2003

I was wondering if anyone can point me to an example where:

You select an option from a drop down list Based on what you select, if writes information to 1 or more text fields.

View 3 Replies View Related

Select List Populating Text Field

Feb 27, 2009

I just know basic HTML & CSS. However, was working on a project that would require a little javascript. It's for a travel agency and the idea behind it is there is a "booking page" that is basically an html form with a bunch of hidden values (like the destination airport code, the origin airport code, etc). The only thing a potential customer has to do is use a selection list and pick the dates available for that travel sale and hti submit. However, there's a new promotion coming out next week where if you book to travel for certain dates, you can use a promo code to save $100 on your vacation. What I would like to know is if there is anyway I can use javascript so that if a person selects the promotional dates, it auto-populates the promotional code text field.

[Code]...

View 6 Replies View Related

Disable Suggest List Under Text Field?

May 7, 2010

Is there any way in Javascript or Jquery to disable the suggest list of previously inputed values in a textfield under it when you start input anything in it??

View 4 Replies View Related

Text Field Value Updates Select List

Jan 9, 2011

I've been tasked to create a form where the user types a numeric item id into a text field. Typing this numeric item id into the field will update a select list when the item id matches a select list value.

View 3 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved