I have my code here below... can you tell me what are the things i need to revise with this so that i can use your "validation.js" to check first the data...
ariel@...
Dec 11, 2000 5:32 am
51
Hey... guys thank... i've already found a solution... on my function i remove "objform.submit();" and on my button... instead of the code below: <IMG...
Ariel Martinez
ariel@...
Dec 11, 2000 8:37 am
52
I need to change the action of the form before I submit it. I would usually accomplish it like this.... function SaveNext_onclick() { ...
peter freeborn
peter_freeborn@...
Dec 12, 2000 12:01 am
53
I need to change the action of the form before I submit it. I would usually accomplish it like this.... function SaveNext_onclick() { ...
peter freeborn
peter_freeborn@...
Dec 12, 2000 12:03 am
54
How to do the validation for drop down list?...
htseng@...
Dec 12, 2000 1:11 am
55
Matt, How do we create regexp for the time.... im still confuse with it. thank ATM...
Ariel Martinez
ariel@...
Dec 12, 2000 2:12 am
56
i did a little experiment on my own and i've found that i don't care for type=image form controls. they don't pass name/value pairs and they don't cause the...
Matthew Frank
bigjuju@...
Dec 12, 2000 3:03 am
57
document.frmEq.onsubmit=function(){ this.action = "EquipmentSched.asp?action=Y"; } your situation is very similar to ariel's. you just want to make a change...
Matthew Frank
bigjuju@...
Dec 12, 2000 3:12 am
58
Sir, I dont know if this can help... this was taken from MSDN 2000 October release. INPUT Element | INPUT type=image object Description: Creates an image...
12 hour clock has hours between 01 and 12, minutes between 00 and 59: /^(0?[1-9]|1[0-2]):?[0-5][0-9]$/ 24 hour clock has hours between 00 and 23: ...
Matthew Frank
bigjuju@...
Dec 12, 2000 3:24 am
61
Thanks sir, i've tried adding some AM | PM on my code... don't know if this is correct. /^(0[1-9]|1[0-2]):([0-5][0-9])\s([AP]M)$/ ... From: Matthew Frank...
Ariel Martinez
ariel@...
Dec 12, 2000 3:33 am
62
I am running out of ideas on how to prevent this error in IE4 SP2. My validation.js is the last thing called on my pages and I'm including the defer parameter...
tad.osborn@...
Dec 18, 2000 3:42 pm
63
... prevent ... Here's the fix that I found to work: 1) In the validation.js file, remove the last two lines: _validation=new Validation; _err=new Err; 2) Add...
tad.osborn@...
Dec 18, 2000 6:29 pm
64
... SP2. ... This is not an issue in IE5 because the method is available at runtime....
tad.osborn@...
Dec 18, 2000 6:43 pm
65
Just wanted to pop in and say that this issue is on my fix list. In the meantime, I would suggest using a try..catch construct. Unfortunately, I am sans IE4...
Matthew Frank
bigjuju@...
Dec 19, 2000 1:00 am
66
Hi, I am using nn-validation.js to do my form validation. I would like to create an OR relationship between two fields without writing any JavaScript code. I...
aaron@...
Dec 20, 2000 2:19 pm
67
i think it should work if you use all caps to name your expando properties. since the script was designed for netscape, there is no case-insensitive code. ...
Matthew Frank
bigjuju@...
Dec 20, 2000 10:05 pm
68
For the life of me I can't make sense of this... I have a form that I want to be able to submit it two ways: 1) via script 2) via button I'm using Matthew's...
tad.osborn@...
Dec 26, 2000 9:39 pm
69
Did you find a solution to this issue? I'm trying to do something very similar with Radio buttons. If you have come up with an answer, would you mind posting...
tad.osborn@...
Dec 29, 2000 9:02 pm
70
I am working on a beta update to the cross-browser script at this time. I have made some changes which *could* break compatibility with some of your existing...
Matthew Frank
bigjuju@...
Jan 5, 2001 9:14 pm
71
How are you trying to submit the form if not via a submit button? From what you've written, it looks like you are using an INPUT_submit AND an INPUT_button....
Matthew Frank
bigjuju@...
Jan 5, 2001 9:42 pm
72
I think this must have slipped under my radar. I went to find the original message and discovered it to be the very first message! Sorry about that. Depending...
Matthew Frank
bigjuju@...
Jan 5, 2001 9:52 pm
73
I can not figure out how to use the validation.setup() method I am dynamically changing some html and belive I must run the setup to reprocess the page but I...
peter freeborn
peter_freeborn@...
Jan 9, 2001 2:38 pm
74
It's really easy. Just add to the end of your function: _validation.setup(); You need to run that line everytime you change your page via DHTML. ... From:...
Tad.Osborn (Exchange)
tad.osborn@...
Jan 9, 2001 2:47 pm
75
How can I check to see if a validation error occurred so that I can script against it?...
tad.osborn@...
Jan 24, 2001 9:02 pm
76
Why is my form being submitted, despite the fact that the validation script finds a validation problem? Here is the code that I'm using to submit the form: if...
Tad Osborn
tad.osborn@...
Jan 24, 2001 10:43 pm
77
the onvalidatefail psuedo-event handler is not yet implemented. it should make its way into the next major release. i may even throw in an onvalidatepass if...
Matthew Frank
bigjuju@...
Jan 25, 2001 3:45 pm
78
I'm using Mathew Frank's validation.js file and it works great when I use an INPUT TYPE=SUBMIT to submit the form. I can't get it to work correctly though if...
john_tarr@...
Feb 9, 2001 9:00 pm
79
More info... I want to have three BUTTONs (Add, Update and Delete). When each of these are clicked I need to set the value of the hidden field, with the...