Validating Array Depending On Values
Aug 11, 2009
I have two arrays that are tied together Ink1Data[][InkID] and Ink1Data[][Ink1Desc]. I also have this Javascript code to validate it:
var chksink1 = document.getElementsByName("Ink1Data[][InkID]");
for (var i = 0; i < chksink1.length; i++) {
switch (chksink1[i]) {
case (chksink1.value=1);
var i1Desc = "Ink1Data["+i+"][Ink1Desc]";
if (validate_required(i1Desc,"Please fill in a trim size.")==false)
{i1Desc.focus();return false;}
break;
case (chksink1.value=2);
var i1Desc = "Ink1Data["+i+"][Ink1Desc]";
if (validate_required(i1Desc,"Please fill in folding instructions.")==false)
{i1Desc.focus();return false;}
break;
case (chksink1.value=3);
var i1Desc = "Ink1Data["+i+"][Ink1Desc]";
if (validate_required(i1Desc,"Please fill in scoring instructions.")==false)
{i1Desc.focus();return false;}
break;
}}
Basically, I want to count how many are in the array (will be the same number for both) and then depending on the value of the first array, validate the second and kick an appropriate error if necessary. It should be pretty easy, but I can't seem to get the code to work.
View 13 Replies
ADVERTISEMENT
Aug 15, 2011
In our ordering system, we have to type in various values for several items at a time. This means in one single form, for one order, we could be typing in a batch number 4 or 5 times. I can valiadate this easy enough with Javascript when there is only 1 line. But what if there is more than 1?
With PHP you add [] to the end of the form element's name. But how do I get javascript to work with this?
Code:
Basically, the batch number, expiry date and pallet/box number is mandetory. If they arn't entered, it needs to fail (return false). It doesn't seem to be doing anything, just moving on to the next part which is checking other parts of the form which isn't repeated.
View 2 Replies
View Related
Mar 14, 2006
What am I doing wrong here? Forgive me if it's blindingly obvious, but I can't get this to work:
HTML Code:
<html>
<head>
<title>test</title>
<script type='text/javascript'>
function editPhotos(numPhotos) {
for(var i = 0; i < numPhotos; i++) {
if(document.forms.boxOrder.photos[i].checked == true) {
alert('yes');
} else {
alert('no');
}
}
}
</script>
</head>
<body>
<form name='boxOrder'>
<input type='checkbox' name='photos[0]' /><br />
<input type='checkbox' name='photos[1]' /><br />
<input type='checkbox' name='photos[2]' /><br />
<input type='checkbox' name='photos[3]' /><br />
<input type='checkbox' name='photos[4]' /><br />
<input type='button' name='edit' value='Edit Selected'
onClick='javascript:editPhotos(5);' />
</form>
</body>
</html>
View 2 Replies
View Related
Nov 24, 2011
[code]I have created an array of cars so if personA has more cars, they can click add and select another one. If they have 1 car and just enter name and 1 car, the form works but when I click Add row and select another car, it doesnt work?
View 3 Replies
View Related
Nov 8, 2011
I am having 2 input fields. Both will have only the integer values. Its a minimum and maximum values. The condition is The minimum value of the 2nd input field should be greater than 1st input field. and 1st input field value should be minimum than 2nd input field. For that I tried with
Jquery Script
$('document').ready(function(){
$('#project_form1').validate({
rules: {
minfield: {
[Code].....
View 1 Replies
View Related
May 20, 2009
(validating fields) with reg expression for these currency/price values:
1. 100,000 ,0, 1,000 , 1,000,000 (should only have commas , no decimals) imean for all number formats
2. 1,000,000+ , 100,000+ , 0+ but not '100+00,' (for all number formats with + sign after that)
View 1 Replies
View Related
Dec 7, 2009
I have a form that works out some basic math questions e.g. area etc. I run a function when a form field is updated to do the calculations, however I'd like to run a different calculation depending on which form element was updated. Is there a way to say something like:
if (area1 was updated) {
work out this calculation
}
if(area2 was updated) {
work out this calculation
}
and so on?
View 6 Replies
View Related
Dec 3, 2005
I want to validate an HTML form, that have array filed names. For example
<INPUT TYPE="TEXT" NAME="contact[name]">
<INPUT TYPE="TEXT" NAME="contact[email]">
I need this as a program require contact us form in this format (sunshop).
if(document.formname.contact[name].value.length==0) { alert('You must enter name'); return false; } But not working. Code:
View 1 Replies
View Related
Jun 27, 2011
Nice module, but I can't get it too work.
Code:
/**
* validate.js: unobtrusive HTML form validation.
*
[code]....
but the script alerts me nothing?
View 6 Replies
View Related
Mar 2, 2009
I want to create an associative array dynamically pulling the index values from an array (propertyArray); Associative array is created inside create function and then returned. But after it is returned, I cant use index names to retrieve values. It returns undefined as below code shows.
Code JavaScript:
var propertyArray=["a","b","c"];
function create(){
var array=[];
[code]....
View 2 Replies
View Related
May 10, 2009
function read()
{
var numbers = new Array();
for (i = 0; i < field.length; i++)
numbers[i] = document.test.checkboxName.value;
var counter=0;
[Code]...
I want to read the values of the checkboxs and store the vlaues into an array (there are more than 1 checkboxs) the form name is text and the names of the check box = checkboxname
View 3 Replies
View Related
Apr 10, 2010
This one is throwing me off! Either I am making a stupid mistake or I'm doing it totally wrong I have an array, and I am trying to select unique values from it and assign it to another array. Here is the code:
Code:
var flag;
for (i=0;i<=pdfs.length-1;i++)
{
flag = 1;
for (j=0;j<=pdfs2.length-1;j++)
[Code]...
The problem is that the if (pdfs2[j] == pdfs[i]) statement ends up never being true. There are URL's to pdf files in the array. On the other side, if there is a much easier way to select unique values from an array, please feel free to point it out.
View 2 Replies
View Related
Nov 9, 2011
I have the following array:
I would like to add up the common values so add all values of Android into one array so it becomes something like this: [["Android", 92]....]
View 5 Replies
View Related
Aug 31, 2010
Why my email field is validating, but mycode for validating empty fields is not?
View 1 Replies
View Related
Mar 21, 2010
I am using a validating form plug in for jquery and I have a question about it. Let this function will be an ex.:
[Code]....
'e' is the name attribute of one form element, but can I choose more elements using jquery (CSS) rules like this: input[name*=e] or how can I do something similar?
View 5 Replies
View Related
Jul 23, 2005
How do you add up all the values in an array? The length of the array is variable. Is there a built in function?
View 7 Replies
View Related
Jun 18, 2011
I have this jquery code.
Code JavaScript:
$("#myselect select ").each(function () {
var ids = $(this).attr("id");
//alert (ids);
});
I want to put all the values of var id in my loop inside an array. How do I do that?
View 3 Replies
View Related
Jan 11, 2006
i have an array and i don't know the content of it, but i want only unique
values. in php there is a function to do this, but how must i do this in javascript?
View 8 Replies
View Related
May 6, 2009
Let's say I want an array of all the values for checked checkboxes onmy page. How do I do this?This:$('input:checkbox:checked').val()..only returns the first value. Is there a function that will return ajavascript array of values?
View 3 Replies
View Related
Oct 19, 2009
I have a select array like this ..
Code:
<SELECT NAME="state[]" MULTIPLE size="10" onchange="content();">
<OPTION VALUE="abc">abc</OPTION>
<OPTION VALUE="zyxc">zyxc</OPTION>
[code]....
So I created a javascript to get all the selected values in one variable ... But whtever I try the values don't come .. I tried alerting at different places and wht I see is tht it don't even go into the for loop ...
Code:
<SCRIPT>
function content() {
var retval = new Array();
for(i = 0; i < document.form100.state.length; i++)
[Code]...
View 4 Replies
View Related
Apr 20, 2010
i created multiple checkboxes with similar name. and i want to retrieve each single value and do some calculation according to each value. i've tried count, split but still cannot find the solution.
Code:
var total_price = 0;
var brg = new Array(Request.Form("brg"));
var qty = new Array(Request.Form("qty"));
[code]....
View 3 Replies
View Related
Dec 17, 2010
I'm having problems with selecting values from array.I have a dropdown box where you choose what fruit you want to buy.When selected the array should assign 2 values to that fruit.Here's what I have.. I added comments.
Javascript part:
<script type="text/javascript">
function Fruits() {
var selectfruit = newArray( //assigning values to fruit selected from dropdown box
newArray("Banana", 1, 1),
[code]....
View 1 Replies
View Related
Feb 20, 2011
I am having a problem to add numbers store in an array.
arrayValues[0][0] = 1;
arrayValues[0][1] = 2;
var col = 0;
var sum;
for ( var row = 0; row < index; i++ )
sum += arrayValues[col][row];
My result is ==> 12 it is defining my sum variable as string. Even I try do do this var sum = 0; to define sum as numeric variable. my result was ==>012.
View 3 Replies
View Related
Feb 19, 2010
I need to pass an array of client side events to the next page. Here my user would perform a few events which would be stored in a javascript array, upon completion a submit button would be used to post all that data to the next page.
An example of such a process is listed below, returning that array back to php so that I can post it to the next page. I am trying to populate different entries made into textbox into the array arr. And when I would click the submit button, I want to post that array.
<html>
<head>
<script type='text/javascript'>
function retText(form)
[Code]....
I want to return that arr back and on post I want to send that array to the next page.
View 2 Replies
View Related
Apr 4, 2009
I have an array similar to this:
Code:
0 -> 0
1 -> 5
2 -> 9
3 -> 2
[Code].....
There is no clear logic and that does not matter. I need to decrease the values of those by one where the value is higher than x. How would I do this?
For instance, if x = 5, then that array becomes
Code:
0 -> 0
1 -> 5
2 -> 8
[Code]....
All values higher than 5 were decreased by one.
View 3 Replies
View Related
Jul 1, 2007
var IdContainer = new Array(); for(i=0; i < SEARCHNO; ++i) { var search_ID = xmlDoc.getElementsByTagName("searchID")[i]; var SEARCHID = search_ID.firstChild.nodeValue; if(SEARCHID !== IDCONTAINER) { code to add the SEARCHID to the IDCONTAINER array here
Now what i want it to do is every time the for loop runs the if statement checks whether the SEARCHID variable is not equal to the values in the IDCONTAINER array....if this is the case then the code after the if is run and the value in the SEARCHID variable is added to the IDCONTAINER array.
Problem is i dont know how to structure the if statement to check all the values in the array against the SEARCHID and then i dont know how to update the array afetr the if with the new SEARCHID.
View 5 Replies
View Related