Seperate Concatenated Form Values - Interface_cropsettings
Jan 27, 2010
I have 4 text boxes that are supposed to load 4 seperate values of data from one field in one table from a database. The field is called interface_cropsettings (from the interface table) and these values have been concatenated and comma seperated in this field.
Code:
Once the form is filled out and saved, the data is inserted into the database and the values from these 4 text boxes are concatenated, comma seperated and inserted into that one field correctly.
(Example)
If the 4 text boxes have the following values:
In the database field they become:
12.34,56.78,250,500
However, if the form is closed and then re-opened, each text box displays the entire database field rather then each value seperated in the corresponding text box.
(Example)
All 4 text boxes display this:
I already know why the data appears like this in the form, my problem is that I'm not sure how to write the javascript to seperate the values into the correct corresponding fields, assuming javascript is what I should be using!
Also, this is kind of irrelevant but just in case you're wondering, this form is part of a cold fusion application!
View 3 Replies
ADVERTISEMENT
Jan 27, 2010
I have 4 text boxes that are supposed to load 4 seperate values of data from one field in one table from a database. The field is called interface_cropsettings (from the interface table) and these values have been concatenated and comma seperated in this field.
Code:
Once the form is filled out and saved, the data is inserted into the database and the values from these 4 text boxes are concatenated, comma seperated and inserted into that one field correctly.
(Example)
If the 4 text boxes have the following values:
In the database field they become:
However, if the form is closed and then re-opened, each text box displays the entire database field rather then each value seperated in the corresponding text box.
(Example)
All 4 text boxes display this:
I already know why the data appears like this in the form, my problem is that I'm not sure how to write the javascript to seperate the values into the correct corresponding fields, assuming javascript is what I should be using!
Also, this is kind of irrelevant but just in case you're wondering, this form is part of a cold fusion application!
View 3 Replies
View Related
Jan 27, 2010
I have 4 text boxes that are supposed to load 4 seperate values of data from one field in one table from a database. The field is called interface_cropsettings (from the interface table) and these values have been concatenated and comma seperated in this field.
Code:
Once the form is filled out and saved, the data is inserted into the database and the values from these 4 text boxes are concatenated, comma seperated and inserted into that one field correctly.
(Example)
If the 4 text boxes have the following values:
In the database field they become:
However, if the form is closed and then re-opened, each text box displays the entire database field rather then each value seperated in the corresponding text box.
(Example)
All 4 text boxes display this:
I already know why the data appears like this in the form, my problem is that I'm not sure how to write the javascript to seperate the values into the correct corresponding fields, assuming javascript is what I should be using!
Also, this is kind of irrelevant but just in case you're wondering, this form is part of a cold fusion application!
View 2 Replies
View Related
Jan 27, 2010
I have 4 text boxes that are supposed to load 4 seperate values of data from one field in one table from a database. The field is called interface_cropsettings (from the interface table) and these values have been concatenated and comma seperated in this field.
Code:
(Example)
If the 4 text boxes have the following values:
In the database field they become:
However, if the form is closed and then re-opened, each text box displays the entire database field rather then each value seperated in the corresponding text box.
(Example)
All 4 text boxes display this:
I already know why the data appears like this in the form, my problem is that I'm not sure how to write the javascript to seperate the values into the correct corresponding fields, assuming javascript is what I should be using!
Also, this is kind of irrelevant but just in case you're wondering, this form is part of a cold fusion application!
View 3 Replies
View Related
Jul 27, 2011
I have just found this wonderful forum through Dr Google whilst looking for an answer to my incredibly frustrating question! I am an OU student it is for an assignment I just cannot find the answer in any of the books and searching the net has got me nothing but so far wasted 3 hours :(
Here is the code snippet:
First I had to add a new array called totalVotes and assign a length to it the same as candidateArray, I have done this in the last 2 lines I think this is correct, the question did stipulate that if the candidate array was changed then so would the total votes array hence linking it via length.
Now here is where I am at a complete loss :( The exact wording is as follows:
Use a for loop to calculate the total votes for each candidate according to the following structured english:
For each array position add the element at that position in the online vote array to the element at the position in the paper vote array. store the result at the corresponding position in the total votes array end for.
View 8 Replies
View Related
Jul 6, 2009
I have a form that gets values that a user has selected from a list menu field, that end up like this added to the URL:[url]
Instead of the Field being mentioned more than once, how can I have it where it could mention the field once with the values coma separated eg:[url]
Would I use JS to change the URL? or VBscript?
View 30 Replies
View Related
Apr 21, 2009
How to seperate the result of a direcory read.
Example, I know the files will be images.
How can I show the portrait first and then landscape second ?
Here is my code :
PHP Code:
View 2 Replies
View Related
Feb 12, 2009
Is there any kind of JavaScript include function that I could use to load the contents of a DIV when the user clicks on different links?
My problem is outlined here:- [url]
View 1 Replies
View Related
Mar 3, 2001
I would like to put my javascript programs into a seperate file. How do I do that?
View 1 Replies
View Related
Sep 19, 2004
Date format:
2003/03/15 04:00
2003/12/13 12:00
2004/02/12 13:12
2001/04/22 21:24
How can I sort all this date by the latest using JavaScript?
View 1 Replies
View Related
Jul 23, 2005
I have a main page ('index.php') with an iframe ('mainframe') on the
left hand side. All the links on the index page load a new page of
mainly text content into the iframe.
All pretty straightforward, but I am using some javascript to launch
and hide a floating div on the index page (if I launch it in the
iframe, it will be restricted to the height and width of that frame).
The code to show / hide the div is located on the page index.php - say
the function is called 'showMe()', I would call top.showMe() to launch
the div.
The Div works fine, but when I try and catch an event via:
event.srcelement
it returns the error message 'object required', because it is being
passed from a link on a totally seperate page (the iframe)...
Is there any method for the main page (index.php) to catch the event
on 'mainframe' that triggers the div ?
The div's do show up and hide, and I can load source content into them
- only error messages keep flashing up on IE (but not on Netscape /
Firefox, etc).
View 1 Replies
View Related
Feb 8, 2006
How can I use XMLHttpRequest communicate from webpage to another? Currently I have a left/right frames, when the submit button pressed (item is added to the database), the left frame should automatically retrieve this item and display it on the page.
I thought of using Ajax (XMLHttpRequest object), but not sure how to use XMLHttpRequest object in two different webpages.
View 1 Replies
View Related
Apr 1, 2006
In a web page I have a div tag that has a onlick event registered
through the event listener. However, that same div tag also has a
onmousedown - start a drag and drop script
The problem I am having is that once the drag and drop is complete, the
mouse button is released and the onclick event is firing. I've tried
returning false from the function dealing with the mouse up and
cancelling the event with if (e.stopPropagation) e.stopPropagation();
else e.cancelBubble = true;
but the onclick is still firing....
View 2 Replies
View Related
Jun 15, 2009
I'm rather new to this, but... I created a website where on the left side I have a div (let's say sidebar1) and on the right side i have a div (sidebar2). I also have a header. Everything else is left for a div named "content".I need a script that allows me to swap the content of div "content" with a content of exactly the same div, but from another subdomain.It's simple to load a content of the whole subdomain into a div by using 'iframe' or 'object', but I have no clue how I can load only a part of subdomain. Is there any way to do this?
View 1 Replies
View Related
Feb 2, 2009
I have 2 different dropdowns lists. One for the month and another for the days (shows the date)
by default when the page is loaded, I am showing January in the first dropdown and 1 in the second dropdown (date).
But if a user selects February from the month dropdown list, I just dont want to show 29th, 30th, 31st etc. Same applicable for say april, june, sept etc where I dont want to show 31st so the user will not be able to select wrong date for a month. How can I do this?
View 1 Replies
View Related
Apr 26, 2011
Basically i have two arrays one contains Services and the other contains prices
ie
Code:
At the moment there are 7 elements in this i have this printing to a dropdown with
Though i want to print the price to a textbox ie if element [0] in service is selected return price [0] though i want to iterate through the positions then display the value in a read only textbox.
View 1 Replies
View Related
Oct 4, 2011
I'm handling a form submission event. Is there a way to modifiy the value of a text input within the form before the form is finally submitted? I tried setting the value using, 'val()' - it updated the text field but the value sent with the POST was the original value
View 4 Replies
View Related
Jul 23, 2005
I have a form that has many text boxes that the user enters the
quantity of an item. Each item has a unit value.
How do I display on the page the total value of each item next to each
text box as the user enters the quantity in each text box in turn.
I feel the "onblur" event may be the event to use for each text box but
can't seem to get the calculated value displayed on the page.
View 4 Replies
View Related
Sep 7, 2005
Can someone help with some javascript for a form? here's what I need:
I have 10 option fields that allow the numbers 1 - 10. I need to use javascript to allow the total of all fields to equal 10, no more, no less.
What code should I use? I know barely any JS.
View 2 Replies
View Related
Nov 16, 2006
I need another set of eyes on this. I can't see what I'm doing wrong here:
Code:
<TR>
<TD width=100><P class = "query">First name:</P>
<TD width=75><INPUT size=20 name='FirstName' />
<TR>
<TD width=100><P class = "query">Address:</P>
<TD width=75 colspan="3"><INPUT size=40 name='AddLine1' />
<TR>
<TD width=100><P class = "query"></P>
<TD width=75><INPUT size=40 name='AddLine2' />
<TR>
<TD width=104><P class = "query">City, State, Zip</P>
<TD><INPUT size=30 name='City'>
When the code below gets hold of the form above it sees the AddLine1 and AddLine2 values and returns undefined for FirstName, LastName, and City.
Code:
var theForm = document.memPage;
var FirstName = theForm.FirstName.value;
var LastName = theForm.LastName.value;
var AddLine1 = theForm.AddLine1.value;
var AddLine2 = theForm.AddLine2.value;
var City = theForm.City.value;
Can anyone here tell me what I'm doing wrong?
View 2 Replies
View Related
Sep 23, 2010
i am having trouble with a program for class hoping someone can point me in the right direction i am supposed to use nested for loops to output 2 seperate webpages one with the first pattern below and then another with the second pattern.
[Code]...
View 17 Replies
View Related
Nov 16, 2010
I have a form where dob is generated using 3 select boxes, 1 for day, month and year. My output needs to be in the form dob=dd-mm-yyyy rather than day=dd, month=mm and year=yyyy.It has been suggested that i do the following:
"On submit button click, use JS to create a hidden input (Q5) in the form and assign its value, then disable the day, month, and year fields so they are not submitted."
View 1 Replies
View Related
Nov 29, 2010
I have a textarea on my page and I wonder if its possible for a visitor to type in something in the textarea and then it will store in XML is it possible?
View 3 Replies
View Related
Mar 27, 2011
I am undertaking an assignment where I have to create a webpage that reads values from a database, and generate the appropriate amount of sliders (scroll bars) according to the number of database entires. The webpage functions like this: On index.php load, it reads all the slider values from the database and automatically generates and sets each slider to that value On setting each individual slider to a new value by adjusting the slider, the code automatically updates the slider value in the database via AJAX.
So far I have gotten both functionalities to work successfully. There is just one problem with the 2nd functionality. I can only get one slider value to save to the database at a time. I know how to fix the problem, I just do not know to achieve it. I shall now illustrate via snippets of code:
[Code]...
View 5 Replies
View Related
Jun 9, 2009
I think this can be achieved through a form may be a text area, but not sure how to put those text area value into the array
can ne one help me on this
<SCRIPT language="JAVASCRIPT">
var Win;
var page_index=0;
var page = new Array();
[code]....
View 3 Replies
View Related
Aug 26, 2010
I've made a form with a few items. Each item has a value. Now my question is, how can I add the values from these items (when you check them) to the total value?
HTML Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>[code].....
View 2 Replies
View Related