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 your group to be featured on the Yahoo! Groups website? 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 339 - 369 of 427   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
339
Hi I want to validate the text in field against maxlenth of the feild which is decided at runtime. I think follwoing bit from validation.js needs some changes....
divakar33
Offline Send Email
Apr 29, 2004
10:57 pm
340
Dear Validation-group members, I work for Opera Software with customer support and testing. I was contacted by someone trying to register at http://www. ...
Hallvord Reiar Michae...
hallvors
Offline Send Email
Apr 29, 2004
10:57 pm
341
My apologies to the last two posters. I had not realized there were no notifications for administrative functions in Yahoo!Groups. I will add the parentheses...
somematt
Offline Send Email
Apr 29, 2004
11:50 pm
342
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
Apr 30, 2004
12:03 am
343
I've been thinking about this one for a bit. I don't think you want or need better client validation. Your issue, in my mind, is with Oracle, which is simply...
somematt
Offline Send Email
Apr 30, 2004
12:39 am
344
I have a situation with an issue management application I've developed. It already uses the excellent validation script to control which fields are mandatory...
Graham Howe
graham_howe
Online Now Send Email
Jun 18, 2004
11:46 am
345
it should be as simple as the following, provided i understand your situation correctly. you'll obviously need to switch the simple names i've used with...
somematt
Offline Send Email
Jun 18, 2004
12:16 pm
346
... Well I think I have ended up with something similar. I now have the following in my html: <SELECT name="onwer" required="on" ...
Graham Howe
graham_howe
Online Now Send Email
Jun 18, 2004
1:03 pm
347
"True" is not a valid boolean value in javascript. all keywords are lowercase. if you put the value in quotes, it should work. another approach is to script...
somematt
Offline Send Email
Jun 18, 2004
2:24 pm
348
... Ah thanks for that, that explains the problem ... I did think about this, but the advantage of changing the textarea to be required when the other field...
Graham Howe
graham_howe
Online Now Send Email
Jun 18, 2004
3:02 pm
349
Hi First if all I want to say thanks for this incredible useful script. I was playing with the idea of writing one by myself, however this validation script...
timeu_s
Offline Send Email
Aug 10, 2004
12:49 am
350
i really recommend that people use the cross-browser script since it's the one i'm supporting (for what that's worth). i'm fairly sure that the empty string...
somematt
Offline Send Email
Aug 10, 2004
1:00 am
351
Hi You are right. After posting this message I did check the Cross-browser script and it seems that the cross-browser is more recent (last update on the...
timeu_s
Offline Send Email
Aug 10, 2004
10:52 am
353
Hello, my apologies if this mail is considered off-topic for this group. Are you aware of the work going on at the Web Hypertext Application Technology WG? I...
Hallvord R. M. Steen
hallvors
Offline Send Email
Aug 26, 2004
1:06 pm
354
the easiest fix i know of is to make the other submit button a non-submit button and give it an onclick handler which calls form.submit(). you might be able...
Matthew Frank
somematt
Offline Send Email
Aug 26, 2004
2:15 pm
355
Hi, I've got a simple validation that I need this script to perform: If document.oForm.PrimaryAgentUserID has a value then I want document.oForm.ProjectID to...
btado
Offline Send Email
Sep 1, 2004
4:20 pm
356
I figured out the problem.... The .AND requirement needed to be on the other element. Seems counter intuitive but it works....
btado
Offline Send Email
Sep 1, 2004
5:00 pm
357
it may seem counterintuitive [which is why it was originally designed as you expected], but there's a reason behind it, albeit only for my convenience. by...
Matthew Frank
somematt
Offline Send Email
Sep 1, 2004
6:05 pm
358
Hi, Try to rename form object named "AND" Because and is keyword ... From: btado To: validation@yahoogroups.com Sent: Wednesday, September 01, 2004 7:18 PM ...
Nuri AKMAN
akmannuri
Offline Send Email
Sep 2, 2004
12:02 pm
359
Hi, I've just started using the validation script, which is excellent by the way. However, I am having a problem, for the design which I have been supplied,...
s_chadaway
Offline Send Email
Oct 3, 2004
3:19 pm
360
calling submit() directly bypasses the onsubmit handler. if you simply add something like the following, it should work the way you want. <a href="#"...
somematt
Offline Send Email
Oct 3, 2004
7:49 pm
361
Thats excellent, worked a treat, thanks very much! ... want. ... by ... have ... submit ... not ... find...
s_chadaway
Offline Send Email
Oct 4, 2004
12:55 pm
362
I have a form with a static section and then two sections that are displayed or hidden based on a radio button. Is there a way to make the fields required only...
rschaeferiii
Offline Send Email
Oct 7, 2004
6:37 pm
363
there should be an example in the validation.htm file in the ZIP download. i believe it requires javascript since the validation logic doesn't support IDs...
somematt
Offline Send Email
Oct 8, 2004
1:52 pm
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
Messages 339 - 369 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