Changing Form Fields Dynamically?
Jul 27, 2010
Below is the html and js I have so far to dynamically place form fields on the form when a certain radio button is marked (Fixed hours). Problem is I can't get the fields to go away if the other radio button is marked (Variable hours). Solutions on what code my js needs to remove the fields when the opposite radio button is marked?
View 7 Replies
ADVERTISEMENT
Nov 2, 2011
I'm having trouble changing the font color of my labels ONLY when I stop the form from submitting due to blank fields. I'm not sure whether if just changing my CSS will achieve what I want, or am I going to have to add somethig to my if else statement, or both? I would think I would need to change CSS to :
label.onfocus {
color:red;
}
but a little confused on what else.
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
[Code]...
View 21 Replies
View Related
Jun 24, 2011
I created a form that contains about 10 form fields and would like to add the option to dynamically add more sets of those 10 fields if a user clicks a word or a button but I need help. I'm a beginner when it comes to JavaScript. This is what I need to generate dynamically.
<div id="dynamicInput">
<ul>
<li>1</li>
<li><input name='textfield1' type='text' size='10' /></li>
[Code]....
View 20 Replies
View Related
Jan 20, 2011
I need to make a form in which I have to enter upto 20 email addresses. But I want to show only 5 fields first and then an Add More button. Upon pressing the Add More button it should add another field into the form and displayed. I have seen this type of thing on several websites but don't know how to do it.
View 9 Replies
View Related
Jul 23, 2005
Why doesn't this work? :-
<BODY onkeydown="display(event)">
<input type="text" name="text1">
<script language="Javascript">
function display(event) {
document.text1.value = event.keyCode+' : '+String.fromCharCode(event.keyCode);
}
</script>
</BODY>
Error: document.text1 has no properties
I have to put it in a Form to get it to work :-
<BODY onkeydown="display(event)">
<form name="form1">
<input type="text" name="text1">
</form>
<script language="Javascript">
function display(event) {
document.form1.text1.value = event.keyCode+' : '+String.fromCharCode(event.keyCode);
}
</script>
</BODY>
View 1 Replies
View Related
Sep 6, 2010
One of the links adds a button to the form dynamically (and also removes it).I give the button an onclick event handler that also removes it from the page (basically just setting its parent.innerHTML='')A third link submits the form using a function (for validation perhaps).The third link submits the form successfully, EXCEPT when I have removed the newly created button by clicking on it. In this case the form.submit() is simply ignored although the function is still executed.This is essentially the problem I have: The link fails to submit after using the button to remove itself.If I hide the button using the first link and/or change the button's onclick to do nothing then I can still click it and the form submit succeeds.Here is the test code:
Code:
<html>
<head>
<script type="text/javascript">
[code]...
View 12 Replies
View Related
Jul 8, 2010
The site I am working on has a few forms that allow the user to add new form fields (textbox, textarea, etc.) dynamically. I am using a structure smiler to:
<form>
<label>Name : </label> <input type = "text" / >
<label>Age : </label> <input type = "text" />
<span id = "add_field"> Add Field </span>
</form>
<script type = "text/javascript">
$(function(){
//create a new field then append it before the add field button
$("#add_field").click(function(){
var new_field = " <label>Name : </label> <input type = "text" / >";
new_field+="<label>Age : </label> <input type = "text" />";
$(this).before(new_field);
});});
As you can see I create the field using javascript and just insert it before the add field button. However I have seen lots of other sites have a smiler sort of function but they seem to make an ajax call for the field as they use a loading-type animation during the few seconds it takes for the field to be added. My questions are : Which is a better way of doing this type of thing? And why is one better than the other? If it is better to create the field client-side should I change how I am doing it? Instead of creating a string representing html and appending it should I be doing it a different way?
View 6 Replies
View Related
Jun 6, 2009
I'm working on an ordering form which calculates the total order price using Javascript. I have a checkbox which I want to use to toggle the display of various items, and also reset the value of an item depending on whether or not it is checked.
Further details
I have a checkbox for the colour "Black" which, when checked, hides a SELECT, a bit of text, and "Quantity" field. It also resets the value of the "Quantity" field to zero.
When the "Black" checkbox is unchecked, the three items (SELECT, text and Quantity) are revealed again, and the Quantity field for "Black" is reset to zero and hidden.
The reason is that users can only either EITHER a black item or select from a list of colours. Black items are a different price to all others.
How the form works
When the user enters a quantity into a text field for each item, the price of that item is added to the total at the bottom of the form. When the form is submitted (with PHP validation), it emails the order to a salesperson. The price of each item (for emailing the order) is set using hidden form fields with defined values, while the order total is calculated using the id of each quantity field (e.g. "item_31_85.00").
What I need to know
I want to achieve the following when the "Black" checkbox is clicked:
Toggle the display of three items (SELECT field, text (in a DIV) and an INPUT)
Reset the value of the INPUT field (and reset a different INPUT when the checkbox is clicked again)
My current code
The code I'm currently using in the PHP form is below (truncated for readability):
Code:
<input type="checkbox" name="black" onclick="togglecontent('colour_box','colour_price','color_quantity','quantity_reset')" /> Black
[Code].....
Currently I can hide the SELECT and accompanying text when I check the "Black" checkbox, but it won't reset the INPUT value nor hide it. I've not yet attempted to do unhide and hide the Black text and input since I can't get this part working yet.
View 14 Replies
View Related
Jun 9, 2010
Instead of implenting a prefabricated calender on my site, I tried a different route. I built a simple form where the user picks time and date. Now, what I need to do is to secure a dynamic changing of the <select> tag carrying the values for days in the month, based on what information the user has put into the <select> tag carrying the values for the month. This should be logical, as it should not be possible to choose ie. the 31st of June, as there's no such date. I hope you understand what I need.
[Code]...
View 14 Replies
View Related
Mar 10, 2010
I have a form with 3 fields that will allow a user to search a database of clients by either name, email, or client id number. However, I would like the user to only be able to put information in one field. It can be done be either deleting the other two fields when the user inputs information into a different field, or by disabling the other two fields when the user enters information in one (and also frees up all fields if the user ends up deleting what they entered).
Below is a start of what I had. Basically, it will disable the fields when I mouse out of them but won't re-enable them when I mouse back in. As you can see, I tried various combinations of events. (My code below also doesnt null out the other fields when the user opts to use a different field than the one they first began to enter info in).
<html>
<head>
<script type="text/javascript">
function makeDisable($ID){
var x=document.getElementById($ID)
[Code].....
View 2 Replies
View Related
Nov 2, 2004
My client wants to upload multiple files to the server using the FILE type input of the form. Their requirement says that once they click the browse button of the FILE INPUT type , besides file browsing window another FILE FIELD is added at the bottom of this one. and when the user clicks the browse button of second, it adds another until the user clicks the UPLOAD button to submit the form.
I dont know it is possible or not ???? if yes then please tell me how.
The alternate way is to give drop down menu with number and when the USER chooses certain number then ..that amount of FILE FORM FIELDS will be added. i.e if user chooses 3 then three file fields are there to upload 3 files at a time.
I have written a script that i am pasting here, but when i choose the drop down menu and select value the FILE FIELDS are shown but the original drop down menu vanishes..
Please review my code and modify it or refer some script to me.
IF The first choice is possible, i mean adding each FILED by browse button click , then tell me its code, other wise modify this code that i am pasting or give me some link to download a premade script. Code:
View 6 Replies
View Related
Jul 8, 2009
I am trying to assign values to a bunch of form fields. However, I don't want to loop through EVERY field in the form, just a specific subset of fields. The fields I am trying to change are all named similarly myField1, myField2, myField3.So, my thought is that I would like to use a for loop and loop through the appropriate fields by simply incrementing a variable and appending it to the end of the string "myField" in order to change the appropriate field.How can I evaluate "myField + iterator" into a useable reference to change the value of said field?
View 6 Replies
View Related
Mar 1, 2009
So, I have a form that, when the user clicks on a link, uses J/S to generate extra form fields for extra information. I can retrieve the value of the dynamically generated fields using $_POST in I.E., but it doesn't work in Firefox (no value is returned). Retrieving values for the static fields is fine in both I.E. and Firefox.
Here's the code - is there a function I'm using that could be replaced with something more friendly to Firefox?:
<script type='text/javascript'>
var i = 1;
function addArea() {
var newArea = addElement();
[Code].....
View 3 Replies
View Related
Mar 3, 2011
The link below is a stripped down section of a form.
[url]
The problem I'm having is with altering the names of the fields. I'm trying to add an identifier on the end. "_X_1", "_X_2" after the new sections are added.
NOTES:
Incidentally, "_X_" is a delimiter so the key can be converted into an array on the back end to extract data from it.
I can't alter the "repeater" variable because it would be extremely complicated on the back end.
View 1 Replies
View Related
Jun 5, 2009
Currently, I have a php form with various inputs, and a div where I am embedding an (initially) empty open flash chart object.Right now, I am calling a php file on the submit of the form, which takes the form data, calls a python script to process the form data, and then creates an open flash chart object using the data the python script returns.There are a few problems with this:
1. When the submit on the form is called, it goes to a different page where the chart is displayed, when I would really just like to update the contents of the chart div where I initially embedded the empty chart.
2. The processing of the form in the python code can take some time, so what I would really like is to have the chart "check" the output of the python script periodically and update the chart each time, adding the new data points to the old ones.
I know I can do all of these things with javascript and Ajax, I just can't seem to find any tutorials or examples that are exactly what I am looking for.
View 3 Replies
View Related
Nov 21, 2010
I'm having some trouble with my dynamically generated form fields.
As you can see I'm generating new form fields, but the problem lies within the grade field. I have it set up now so that when you change the grade the color of the <select> box changes relative to the grade. A-D are green, F is black with white text, Not Taken is just regular white with black text and In Progress is lightly shaded grey.
I want it so that each one can be changed individually, but I can't seem to be able to figure out how to do that. Heck if you change the first one's grade field, that colour follows the rest of the clones.
This is the jQuery I'm using to change the color of the thing.
$("select").change(function()
{
$(this).each(function () {
[Code]....
View 3 Replies
View Related
Sep 22, 2010
I am not new to jQuery but I just want to ask the best way to approach this. Basically I have a textfield in which the user is going to type in a number (for example 20) and after this textfield lose focus jQuery will be triggered to create whatever number of textfields the user put before (in this case 20).
So, to illustrate: How many users do you have: [ 2 ](and after the field above lose focus, the below will be generated)
Fullname: [ ]
Fullname: [ ]
View 2 Replies
View Related
Oct 10, 2009
There are two input fields in a form, but only one of them is required, they are not required at the same time. Either A or B is required. ( A is required OR B is required). In other words, a user can input data to field A, or he can input data to filed B, but he can not input data to Both A and B at the same time. How to implement this constraint in Jquery form validation?
View 17 Replies
View Related
Oct 11, 2006
I have been looking for the past 2 days for a script that I can add and delete table rows.
I have found a lot but so far all of them add an input field but I desperatly need a textarea or ideally a section of input fields.
I have tried to change the code from input to text area but none of them worked.
Have you come across to a similar script.
I would appreciate any contributions.
What I am trying to do is a page where the user will add their employees details so we can order business cards for them. So I have fileds such as, Name, Tel Num, Email, Cell etc.
View 4 Replies
View Related
Jan 24, 2011
I have this order form where the customers can change the quantity by intput in a text field.I would like to have the text field changed with select fields, but doing so in the form, the script is not doing anymore.Can anyone have a look and tell me what to change in the scritp to accept select fields in place of the text fields.
View 5 Replies
View Related
Feb 13, 2007
I've created the code below which automatically adds two fields together (drop-down boxes),without the need for a submit or input button.Now,I am trying to do the same again, but this time instead of having drop-down boxes,i need to have text input boxes.(eventually i will be adding monetary values together).
-----------
<script type="text/javascript"><!--
function updatesum() {
document.form.sum.value =[code]......
View 7 Replies
View Related
Feb 27, 2007
I have a few radio boxes where a user can choose different options and
I want to show an explanation of each option after it's clicked.
Here's what I have:
<script type="text/JavaScript">
function toggle(o){
o.className = ( o.className == "show" ) ? "hide" : "show";
}
'function describetype(){
' if (window.event.srcElement.value == "starter")
typedesc.innerHTML="A Starter request is for a new employee who's
never worked for cadbury or the Bottling Group before.";
' if (window.event.srcElement.value == "leaver")
typedesc.innerHTML="A Leaver request is for an existing employee who's
permanently leaving the company.";
'}
'function starter(){
'typedesc.innerHTML="A Starter request is for a new employee who's
never worked for cadbury or the Bottling Group before.";
'}
'function leaver(){
'typedesc.innerHTML="A Leaver request is for an existing employee
who's permanently leaving the company.";
'}
function describetype(o){
if (o == "starter"){
typedesc.innerHTML="Starters are...etc.";
}
if (o == "leaver"){
typedesc.innerHTML="Leavers are...etc.";
}
}
</script>
The first "toggle" function works fine but the "describetype" won't
work. Here's the HTML:
....
<td class="layout bold">
<input type="radio" name="reqtype" value="starter"
checked="checked" onclick="describetype(starter)"Starter<br>
<input type="radio" name="reqtype" value="leaver"
onclick="describetype(leaver)"Leaver<br />
</td>
<td class="layout bold">
<input type="radio" name="reqtype" value="mover"Mover<br />
<input type="radio" name="reqtype" value="adhoc"Ad Hoc
</td>
....
The error keeps saying that "starter" or "leaver" is undefined. I'm
not much of a javascript guy (mostly the cut and paste variety myself)
but everything I've seen says this should work. No?
View 7 Replies
View Related
Apr 4, 2006
I want to give the user the abillity to add extra fields as needed.
I've got it working in IE (surprsingly this works in IE but not in
Firefox), however, basically I have an input field for a paragraph. If
the user decides they want two paragraps then they can click an image
and a new textarea field is show that allows them to add another
paragraph. The fields are named as an array for example name="para[0]"
the next one would then be name="para[1]". Firefox creates the field
and shows it to the user however when you submit the form the new field
does not come through. My array of paragraphs consists only of the
original number I started with. Any added by the javascript are lost.
Again IE this works fine, Firefox it works till you submit the form.
Any ideas?
View 5 Replies
View Related
Jul 13, 2011
I want to add rows and columns on click. So, i have a table with columns and rows and I had a add and remove button. So I want the user to be able to add/remove more rows if they have multiple inputs/outputs.So what I want is when the user clicks on add.png, I want another row of Input and Description to appear underneath the current oneHere is my code..
<img src="images/add.png" width="15" height="15" align="right" >
<div class="open">
<table width="200" border="0">
[code]....
View 2 Replies
View Related
Jan 6, 2011
I have a form where the users can add "name" and "id" fields by clicking on the "Add" button.
The input fields look like this (each pair is a row):
The 'name' and 'id' attributes are dynamically named with the integer increasing in value, by 1, for every new field.
As this is client controlled, I do not know how many rows there will be...
View 2 Replies
View Related
Feb 17, 2011
I am trying to calculate text fields from results of php query. My fields come from the query as amount1, amount2.... What I need is for JS to Sum those fields dynamically, I already did code for when i have all the values and for when the text field name is the same, but never for query results where the names are different. This is what I have so far but its not working
function calculatesumexcon() {
var a, total = 0;
var countJS = "<?=$count?>"; <-- variable of php that gives me the number of rows I am getting on the query
var i ;
for ($i=0;$i<countJS;$i++){
var elements = document.getElementsById('amount' + i);
for(a=0; a<elements.length; a++){
total += (parseFloat(elements[a].value));
}}
document.getElementById("totalextracon").value = total ;
}
View 9 Replies
View Related