Search the web
Sign In
New User? Sign Up
qformsapi · qForms API: qForums
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

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 3527 - 3560 of 3977   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
3527
I have been having horrible issues with getting a lot of the validators to work in safari so I decided to see what I could do about fixing the problem. After a...
Jesse McPherson
jesse_mcpherson
Offline Send Email
May 4, 2006
12:03 am
3528
found some problems in IE with the function: after the line: var strFN = fn.toString(); you need the following: strFN = strFN.replace(/(\/\/)+.*/g,""); strFN =...
jemweblinc
Offline Send Email
May 4, 2006
2:41 am
3529
Sorry 1 more change just to make sure I only strip comments and not some other possible string containing "//". strFN = strFN.replace(/(\/\/)+.*/g,""); to ...
jemweblinc
Offline Send Email
May 4, 2006
3:00 am
3531
I went to your online examples and get the same error when I try to leave the email field with bad data. Thanks, Nathan...
Nathan Stanford
brostanford
Offline Send Email
May 8, 2006
5:32 pm
3532
IE Version 6.0.2900.2180.xpsp_sp2_gdr.050301-1519 I am not sure if this has been addressed but when I use example simple 1 and change the code at the bottom to...
Nathan Stanford
brostanford
Offline Send Email
May 8, 2006
5:32 pm
3533
Hi all, I am trying to use a hidden form field called EditType to do a little custom validation when my form is submitted. I am adding the following code to...
reggie_macca
Offline Send Email
May 10, 2006
5:07 pm
3534
Reggie, Are you explicitely including the validation_addon.js file at the top of the page? If you use the qFormAPI.include("*"); designation, only the field,...
Dean Lawrence
deanmlaw
Offline Send Email
May 10, 2006
6:02 pm
3535
Yes, I should have said that I am including the page with the following syntax, qFormAPI.include("validation_addon"); still no joy. ... top ... do ... the ... ...
reggie_macca
Offline Send Email
May 11, 2006
9:14 am
3536
I am trying to use a simple snippet of cutom validation but I am not getting my expected results. I am using ASP.NET. I have a hidden from field on my page...
reggie_macca
Offline Send Email
May 11, 2006
1:46 pm
3537
Never mind, I have figured it out, thanks anyway. ... only ... to ... adding...
reggie_macca
Offline Send Email
May 11, 2006
1:59 pm
3538
Figured it out, need to use 'this.setvalue', sorted. ... not ... 0 ... can...
reggie_macca
Offline Send Email
May 11, 2006
2:01 pm
3539
Reggie, Do you want to share what you did to solve the issue in case someone else has a similar problem? Thanks, Dean ... -- ...
Dean Lawrence
deanmlaw
Offline Send Email
May 11, 2006
4:48 pm
3540
I have multiple radio groups that are generated dynamically with CF. For instance, I have the following. <input type="radio" name="matchup_1" value="m1_1"> ...
Nunya
grice02
Offline Send Email
May 12, 2006
4:34 pm
3541
Hi Nunya, You would simply build your validation list dynamically as well. So at the bottom of your form where you define all of your validation, you could...
Dean Lawrence
deanmlaw
Offline Send Email
May 12, 2006
5:27 pm
3544
I can't believe I can't figure this out. I have a form using qForms to validate simple rules. I want to make sure that the customer enters at least 6 chars in...
cf_greg
Offline Send Email
May 16, 2006
4:20 pm
3545
Greg, You can just use objForm.accountNumber.validateLengthGT(5). This will validate that the field is longer than 5 characters (6 or more). Dean ... -- ...
Dean Lawrence
deanmlaw
Offline Send Email
May 16, 2006
4:39 pm
3546
Thanks alot Dean. What am I doing wrong searching the documentation? I googled and read through as much of the field validation documentation. Greg ... will ...
cf_greg
Offline Send Email
May 16, 2006
5:36 pm
3547
Greg, Look at the Validation Methods Library under Core Extention Libraries at http://www.pengoworks.com/qforms/docs/. This will give you all the main...
Dean Lawrence
deanmlaw
Offline Send Email
May 16, 2006
5:58 pm
3548
All, My team has just started implementing a Plumtree portal and, of course, I want to be able to use qForms throughout. If you have access to a Plumtree...
Michael Conger
congmicj
Offline Send Email
May 18, 2006
11:55 pm
3550
How do you distinguish between two submit buttons (that each have different steps that need to be taken when validating) which reside within the same form? for...
stricklandd5
Offline Send Email
May 31, 2006
2:33 pm
3551
What you'll need to do is use a button element instead of submit buttons. Each button should then call a function which invokes the necessary logic (i.e. the...
Dan G. Switzer, II
dswitzer2
Offline Send Email
May 31, 2006
4:10 pm
3552
Dan, thanks for the response. I tried out what you said, but didn't have too much success, although I'm sure I'm missing something small on my end. When I used...
stricklandd5
Offline Send Email
May 31, 2006
6:20 pm
3553
Doug, Make sure you don't have form element named "submit"--your old buttons used to be named that. As for TinyMCE, I've never used it. You'll need to figure...
Dan G. Switzer, II
dswitzer2
Offline Send Email
May 31, 2006
9:20 pm
3554
I wish this form validation were easier to understand! I have a simple text field in which I want to validate that there are only 7 alphanumeric characters...
Greg Luce
cf_greg
Offline Send Email
Jun 1, 2006
2:59 pm
3555
Dan, There are no form elements named "submit"...I double checked to make sure. I'm still having the same problems. Thanks for the tips on the tinyMCE, I'll be...
stricklandd5
Offline Send Email
Jun 1, 2006
3:56 pm
3556
When reviewing my code I saw where I had an onSubmit() call (within my form tag), which was calling a script/function that no longer existed on that page......
stricklandd5
Offline Send Email
Jun 1, 2006
4:22 pm
3557
Ok, very strange...I now have everything working great...even with the wysiwyg editor tinyMCE. I found that the problem was one of my text areas which was...
stricklandd5
Offline Send Email
Jun 1, 2006
5:23 pm
3558
Greg, You should be using "validateLength()" instead of "isLength()". The "is" methods return a Boolean result. The "validate" methods actually attach a ...
Dan G. Switzer, II
dswitzer2
Offline Send Email
Jun 1, 2006
6:08 pm
3559
Doug, ... That's not a qForms problem--it's a server problem. Are you using CF? If so, do you have a field called "experience_required"--if so, CF...
Dan G. Switzer, II
dswitzer2
Offline Send Email
Jun 1, 2006
6:45 pm
3560
Doug, ... As my last note indicated, ColdFusion does some special parsing to the form scope, looking for form fields that contain an underscore followed by a ...
Dan G. Switzer, II
dswitzer2
Offline Send Email
Jun 1, 2006
6:47 pm
Messages 3527 - 3560 of 3977   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