Search the web
Sign In
New User? Sign Up
validation · Techniques for HTML form validation
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 94 - 123 of 427   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
94
I am trying to use this for a project at work that I thought would be a good fit. I want to validate various fields on a two page form and then simply write...
maxons@...
Send Email
Mar 1, 2001
2:37 pm
95
That is what the purpose of the validation script is...except for writing out to a text file. Do you need help with the implementation of the script, help...
Tad.Osborn (Exchange)
tad.osborn@...
Send Email
Mar 1, 2001
9:24 pm
96
I guess I am having problems in how to implement the script. Can I fairly easily add my own edits to this to check for various things in text fields? Can I...
maxons@...
Send Email
Mar 2, 2001
5:52 pm
97
Looking for web resources for web form validation and other web form enhancements that take advantage of Internet Explorer 5 and later....
sachavieuxroy_2000@...
Send Email
Mar 4, 2001
2:55 pm
98
Could someone please post an example of using this script to check a text box named FirstName for a value or Mr.; Mrs.; Ms;, Miss? Thank you....
maxons@...
Send Email
Mar 5, 2001
6:29 pm
99
Is anyone here?...
maxons@...
Send Email
Mar 7, 2001
5:15 pm
100
Yes! I'm here. What would you like to talk about? Liz Fretz QualityWare, Inc. Software Validation and FDA GMP Compliance Consultants Liz's Direct Line:...
Elizabeth Fretz
efretz@...
Send Email
Mar 8, 2001
7:09 pm
101
IE version: <input type="text" name="FirstName" regexp="^Mr\.|Mrs\.|Ms|Miss$"> cross-browser: field.REGEXP = /^Mr\.|Mrs\.|Ms|Miss$/i; ... From:...
Matthew Frank
bigjuju@...
Send Email
Mar 11, 2001
6:23 pm
102
I have a pre-alpha validation system implemented in behaviors. It's barely begun, but I can post it for others to monkey with. ... From:...
Matthew Frank
bigjuju@...
Send Email
Mar 11, 2001
6:24 pm
103
you will need to modify the "raise" function. instead of using alert, you can try using an IE5 modal dialog, etc. the behavior system (which i will post when...
Matthew Frank
bigjuju@...
Send Email
Mar 11, 2001
6:28 pm
104
to prevent an error from firing, don't tell it to validate the field--or turn off validation. the script requires you to turn it on for it to work. it's...
Matthew Frank
bigjuju@...
Send Email
Mar 11, 2001
6:30 pm
105
i guess i messed that up a tiny bit. the expression should wrap the contents in paratheses: ^(Mr\.|Mrs\.|Ms|Miss)$ otherwise, the beginning and end anchors...
Matthew Frank
bigjuju@...
Send Email
Mar 11, 2001
9:20 pm
106
Hello All, I am a developer and have found your work to be exactly what I am looking for for a project I am currently working on. I just wanted to introduce...
Padgett Rowell
padgett@...
Send Email
Mar 12, 2001
2:03 am
107
Padgett, You can make any modifications you want, but the initial header must remain--anything else is up to you. I added comments for others to understand...
Matthew Frank
bigjuju@...
Send Email
Mar 12, 2001
4:39 pm
108
Please take a minute to check out our new and improved web site -- www.qualitywareinc.com We've added lots of great features including: Message Boards, a...
Elizabeth Fretz
efretz@...
Send Email
Mar 12, 2001
7:15 pm
109
Is there a way to disallow certain radio buttons to be selected in a group if a particular radio button is selected in a different group? Can this be...
maxons@...
Send Email
Mar 15, 2001
10:58 am
110
there is no facility built in to the script to handle this case. you can write an onvalidate event handler to check for you. radioYouCareAbout.onvalidate =...
Matthew Frank
bigjuju@...
Send Email
Mar 15, 2001
8:08 pm
111
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@yahoogroup...
Send Email
Mar 18, 2001
5:56 pm
112
I am evaluating this validation script for use in an upcoming project however on testing I cannot see that the floating point validation actually works. Has...
Ashton, David
David.Ashton@...
Send Email
Mar 23, 2001
4:50 pm
113
I am currently working on an online new account application form that runs over five or six pages. I found the demo for this program at ...
darvill@...
Send Email
Mar 23, 2001
9:43 pm
114
Dave, If you want to match strict standards, you will need to write that bit yourself. The script is designed around a more mundane interpretation of ...
Matthew Frank
bigjuju@...
Send Email
Mar 24, 2001
3:20 am
115
You will need to modify the add method of the Error object to store up all errors at once rather than spit one at a time. I have found that throwing up too...
Matthew Frank
bigjuju@...
Send Email
Mar 24, 2001
3:24 am
116
I find that highly amuusing, standards that you need to pay to access. What will we have next, only millionaires can run for President? yuck yuck yuck padgett...
Padgett Rowell
padgett@...
Send Email
Mar 24, 2001
4:51 am
117
I'm having a similar problem and am wondering if there is a way to prevent validation on hidden element. I'm hiding mutually exclusive elements with...
tad.osborn@...
Send Email
Mar 26, 2001
2:22 am
118
if you don't want to modify the validation script yourself (many people don't), you can try adding more code to your own script which performs the hide/show....
Matthew Frank
bigjuju@...
Send Email
Mar 26, 2001
2:43 am
119
I found it for free on a Microsoft research site of all places! ... From: Padgett Rowell [mailto:padgett@...] Sent: 24 March 2001 04:46 To:...
Ashton, David
David.Ashton@...
Send Email
Mar 26, 2001
8:16 am
120
Could you provide specifics as to how and where to check to see if a form element is visible before the validation code runs? What is a XOR boolean check? I...
Tad.Osborn (Exchange)
tad.osborn@...
Send Email
Mar 28, 2001
2:43 pm
121
at the very beginning of the "valid" method (might be named "validate"--can't remember off-hand), you will want to write a check for element.style.display: if...
Matthew Frank
bigjuju@...
Send Email
Mar 28, 2001
3:20 pm
122
can you provide a URL? ... From: "Ashton, David" <David.Ashton@...> Reply-To: validation@yahoogroups.com To: "'validation@yahoogroups.com'"...
Matthew Frank
bigjuju@...
Send Email
Mar 28, 2001
4:20 pm
123
http://www.research.microsoft.com/~hollasch/cgindex/coding/ieeefloat.html ... From: Matthew Frank [mailto:bigjuju@...] Sent: 28 March 2001 17:20 To:...
Ashton, David
David.Ashton@...
Send Email
Mar 28, 2001
4:39 pm
Messages 94 - 123 of 427   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help