Hi, When the nn-validation.js script v1.2 is executed in Netscape Navigator 4.73-FR (FR for French), the following error is reported and the script is skip...
lambert.fs@...
Aug 2, 2000 2:57 pm
12
yes, you're right - it IS too much for this newbie, anyway :-) Can you give a hint of where to start, in a nutshell? Thanks! ... Q....
John Lynn
johnlynn@...
Aug 2, 2000 7:35 pm
13
I believe the quick fix for this problem is to remove the check for null on vAnd: // AND var vAnd=this.AND; if(vAnd && sValue) I got that answer from an alert...
Matthew Frank
matthew.frank@...
Aug 3, 2000 10:43 pm
14
until there is an official fix to the script, you can try a simple workaround. try removing the "mark" attribute from the form tag and add a line of code to...
Matthew Frank
matthew.frank@...
Aug 7, 2000 7:43 pm
16
Enter your vote today! Check out the new poll for the validation group: Since I don't know what most of you are working on, I'd like to find out. What would...
validation@egroups.com
Aug 11, 2000 5:42 pm
17
I really think a cross-browser validation that's working on a lot of differents versions of the browsers would really be better. The script is not really...
Francois Lambert
lambert.fs@...
Aug 14, 2000 4:19 am
18
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the validation group. File :...
validation@egroups.com
Aug 14, 2000 7:01 pm
19
When I dynamically add fields to a form, the validation does not function correctly. I add the fields within a DIV tag using the innerHTML property. When the...
carudy@...
Aug 16, 2000 8:40 pm
20
There is an issue with the fields you are attempting to hide/show since they are included with the page when it is initially loaded. I think this is why they...
Matthew Frank
matthew.frank@...
Aug 16, 2000 10:23 pm
21
I would tend to agree with you about being as inclusive as possible. Partly through laziness I had decided to skip support of any non- JavaScript1.2 browsers....
Matthew Frank
matthew.frank@...
Aug 16, 2000 10:43 pm
22
MS will be giving us somewhat of a break in our development--at least considering what's written in this article: ...
Matthew Frank
matthew.frank@...
Aug 17, 2000 3:30 pm
23
Does anyone know how to add additional validation checks before the page is submitted. I have placed logic in the onSubmit event for the form. This seems to...
carudy@...
Aug 22, 2000 12:57 am
24
you can make use of the onvalidate psuedo-event by assigning a function pointer to it as a property or by using an anonymous function: oElement.onvalidate =...
Matthew Frank
bigjuju@...
Aug 22, 2000 9:22 pm
25
I recently saw a message stating that a new version of the validation module was available but it did not state where to get it. Can someone tell me where to...
Matthew D. Frame
mdframe@...
Aug 24, 2000 12:43 pm
26
the "Files" section on the egroups site contains the latest versions of all scripts. http://www.egroups.com/files/validation/ ... validation module was...
Matthew Frank
bigjuju@...
Aug 24, 2000 1:31 pm
27
the isDate function in the nn-validation.js and validation.js scripts both have a date parsing error. I will post the fixed versions when I get a chance. the...
Matthew Frank
bigjuju@...
Aug 30, 2000 8:45 pm
28
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the validation group. File :...
validation@egroups.com
Aug 31, 2000 6:17 pm
29
Matthew, thank you for the links required. Your work is just brilliant - thank you so much for making it available. My client is using IE4, therefore I needed...
Trace C Wilson
trace_wilson@...
Sep 6, 2000 5:04 am
30
Trace, please post your modified script to the Files section. the forum is designed to strip attachments automatically (as a safety net). i'm sure others...
Matthew Frank
bigjuju@...
Sep 6, 2000 6:35 pm
31
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the validation group. File :...
validation@egroups.com
Sep 11, 2000 8:10 pm
32
I decided only to make minor changes to the IE4+ script. I will work on merging the two different versions such that the same code will work on both browsers....
Matthew Frank
bigjuju@...
Sep 11, 2000 8:14 pm
33
Hey, first of all, kudos for the great script. One problem though: it's kinda huge. So I thought that it would be way more effecient to run the script in a...
eeeldert@...
Oct 5, 2000 2:44 pm
34
I agree that the file is large for a script. Thought did go into the design of it as a single file. I created the script in a manner that it could be...
Matthew Frank
bigjuju@...
Oct 5, 2000 9:28 pm
35
I'm trying to submit a form using javascript. Example: function SubmitForm() { document.myform.submit(); } What code do I need to add to trigger form...
tad.osborn@...
Oct 6, 2000 8:20 pm
36
I'm a little new to the java validation thing. I was hoping someone could help me with conditional validation. I have a form which allows a user to enter an...
dirk@...
Oct 10, 2000 9:05 pm
37
... I'm new to this script as well, so apologies if I am wrong :-) Have you tried the 'and' validation check on the mail_address, i.e. <input...
Robert Leftwich
digital@...
Oct 11, 2000 10:25 pm
38
you can call the onsubmit handler in this case: function SubmitForm() { if(document.myform.onsubmit()) document.myform.submit(); }...
Matthew Frank
bigjuju@...
Oct 16, 2000 9:26 pm
39
Thanks for the reply. That helps, but I want to send the user to a different page only if the page is validated. With the following code, an error is raised,...
Tad.Osborn (Exchange)
tad.osborn@...
Oct 17, 2000 2:02 pm
40
Hi everyone! I am new to this list. I spend my life validating software. I wanted to take a minute to introduce myself and share some information with you....
Elizabeth Fretz
efretz@...
Oct 17, 2000 3:57 pm
41
your form isn't actually being submitted as you think. your last line of code is sending you to another page any time the function is called. that line does...