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...
Want to share photos of your group with the world? Add a group photo to Flickr.

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 364 - 393 of 427   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
364
Enter your vote today! A new poll has been created for the validation group: What do you use for Web server processing? o .NET o JSP (anything Java) o Cold...
validation@yahoogroup...
Send Email
Nov 16, 2004
3:10 am
365
The following validation poll is now closed. Here are the final results: POLL QUESTION: What do you use for Web server processing? CHOICES AND RESULTS - .NET,...
validation@yahoogroup...
Send Email
Nov 30, 2004
9:00 am
366
Hi, I have a form with several fields on it which are being validated using the script, works fine. However, I also have a file input field on the form for...
s_chadaway
Offline Send Email
Jan 20, 2005
5:19 pm
367
what version are you using? i'll check what's on line 453....
somematt
Offline Send Email
Jan 20, 2005
5:36 pm
368
Version 3.1.3 is the latest entry in the readme file ... what version are you using? i'll check what's on line 453. ... being validated ... a file input field...
Chadaway Steve
s_chadaway
Offline Send Email
Jan 20, 2005
5:46 pm
369
... if(element.value && element.type != "file") element.value = trim(element.value); <<< i haven't done much testing on the script with this change, so i don't...
somematt
Offline Send Email
Jan 20, 2005
11:39 pm
370
I've put that line in and the problem seems to have cleared up fine. Thanks for your help. ... if(element.value && element.type != "file") element.value = ...
Chadaway Steve
s_chadaway
Offline Send Email
Jan 21, 2005
4:03 pm
371
I have an input field in a form that is <SELECT MULTIPLE NAME="mslist" REQUIRED="on">. If I fill in the form and Submit it I don't get any validation error...
rschaeferiii
Offline Send Email
Feb 10, 2005
3:27 am
372
the code for determining the value of a select-multiple: ************************************** case "select-multiple" : for(var...
somematt
Offline Send Email
Feb 10, 2005
2:17 pm
373
I was afraid that custom validation was going to be the answer... This page has about 300 lines of Javascript field validation code. I was hoping to use ...
Schaefer, Richard W (...
rschaeferiii
Offline Send Email
Feb 10, 2005
2:29 pm
374
at that point, i'd just update the script. i think that's the path of least resistance. ... This page ... hoping to use ... value then ... ...
somematt
Offline Send Email
Feb 10, 2005
2:46 pm
375
Something like? case "select-multiple" : for(var i=0,iOptions=element.options.length; i<iOptions; i++) if(element.options[i].selected && ...
Schaefer, Richard W (...
rschaeferiii
Offline Send Email
Feb 10, 2005
2:52 pm
376
I've just inherited this project from a person who is no longer here. The desired result of this validation is to throw a message if (! rdoCat[0].checked) or...
William
williamdunn95
Offline Send Email
Feb 17, 2005
10:01 pm
377
i've used something like this before: ***************** with (document.forms[0]) { radioButtonGroup[0].OR= [radioButtonGroup[1]]; dropdown.AND =...
somematt
Offline Send Email
Feb 27, 2005
2:37 am
378
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
Aug 4, 2005
6:01 pm
379
so i've already found an issue in this beta with IE. seems IE's javascript implementation doesn't support 'delete'. or at least my use of it. has anyone...
somematt
Offline Send Email
Aug 5, 2005
1:08 pm
380
I unpacked the Zip file into a directory on my IIS web server and tried to open validation.htm. I received a general script error on "line 99". Since there's...
rschaeferiii
Offline Send Email
Aug 15, 2005
10:28 pm
381
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
Sep 2, 2005
1:41 pm
382
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
Sep 10, 2005
4:37 am
383
i still can't re-create the defect below. can anyone else confirm the bahvior? anyone have any ideas on what's up? i'm running jetty for development, so that...
somematt
Offline Send Email
Sep 15, 2005
8:41 pm
384
I've been working lately on updating the validation script to handle more XXX and yield more opportunities for customizing behavior and whatnot. As I...
somematt
Offline Send Email
Sep 15, 2005
8:48 pm
385
I found this utility that looks promising. Has anyone used it that can offer some feedback? http://dean.edwards.name/my/cssQuery/...
somematt
Offline Send Email
Sep 23, 2005
5:37 pm
386
On Thu, 15 Sep 2005 22:47:00 +0200, somematt <matthew.a.frank@...> ... I'm not a neutral user of your script :-) but something I would like to see is...
Hallvord R. M. Steen
hallvors
Offline Send Email
Oct 4, 2005
11:35 pm
387
I don't intend to go so far as to create some kind of custom API project. I was intending more to separate the noise from the actual implementation of the...
somematt
Offline Send Email
Oct 5, 2005
4:55 pm
388
Can anyone help me in providing the Date-Time validation function in Javascript? The required format is MM/DD/YYYY hh:mm:ss Thanks Raj...
Shree
yanamala1
Offline Send Email
Jan 5, 2006
10:25 pm
389
are you using the validation script from the Files section? if you are, you only need to set the datetime attribute of the field you want to validate: <input...
somematt
Offline Send Email
Jan 7, 2006
12:52 am
390
Is it possible to validate read only fields? I am using a pop-up window to change the contents of a text field, and wish to validate it as "required". When I...
itnetx_chris
Offline Send Email
Jan 17, 2006
2:55 am
391
Using version 3.2.0 (beta) My code: <html> <head> <link href="../style.css" rel="stylesheet" type="text/css"> </head> <body> <form name="form1" method="POST"> ...
itnetx_chris
Offline Send Email
Jan 17, 2006
11:46 am
392
unfortunately, that behavior is by design. the "isValidElement" private method specifically prevents validation on disabled and readonly elements. you have a...
somematt
Offline Send Email
Jan 17, 2006
1:19 pm
393
looks like a bug alright. i must have changed the name of the variable in only part of the function. i'll be sure to add a test case for it to my JsUnit test...
somematt
Offline Send Email
Jan 17, 2006
1:21 pm
Messages 364 - 393 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