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 3151 - 3181 of 3977   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
3151
Hey gang - I'm trying to use qforms to do a little weird email validation. The normal email validation works like a champ - but I also need to validate whether...
Scott
sweikert65
Offline Send Email
May 4, 2005
9:54 pm
3152
Not sure if this is what you did or if this will fix the issue but this is a method I use. objForm.email.validateExp("formname.emailfield.value.indexOf ...
ron_cochran
Offline Send Email
May 5, 2005
1:03 pm
3153
That's not quite working, at least not with the other code I've got, not in the way I want. I need it do BOTH checks - valid email or it starts with "NoEmail_"...
Scott
sweikert65
Offline Send Email
May 5, 2005
2:38 pm
3154
Scott, Could you not just create a custom validation (like you are doing) and then use the atLeastOne method ...
Dean Lawrence
deanmlaw
Offline Send Email
May 5, 2005
4:26 pm
3155
... and then ... verify that ... That page you linked to; one thing, the example given is with a set of checkboxes, not two different checks on the same field;...
Scott
sweikert65
Offline Send Email
May 5, 2005
6:22 pm
3156
Well I finally worked it out, in probably not the most elegant fashion, but it works :P I went down the obj.onValidate = _customValidation route, while in the ...
Scott
sweikert65
Offline Send Email
May 5, 2005
7:15 pm
3157
Hello, I hope this group message of mine finds the reader in good health and mood. I'm Anitha and this being my first post, I'll keep it short. You can find...
himani_post5
Offline Send Email
May 17, 2005
7:51 am
3158
I've tried to find something related to this in existing messages, but I'm not able to find it, so I'm hoping someone here can provide an answer. Here's the...
rorajoey
Offline Send Email
Jun 1, 2005
10:32 pm
3159
rorajoey, Here's the code I use to validate a to date is after the from date: function __isFutureDate(){ var d1 = new Date(objForm.fromDate.getValue()); var d2...
Ray Ragan
rragaamkor
Offline Send Email
Jun 2, 2005
4:14 pm
3160
Hi, I am currently using qforms to validate that parts of my form are filled out, awesome script. But I was curious can it be used to validate that something...
John Michael
jmichael0350
Offline Send Email
Jun 6, 2005
6:00 pm
3161
... Sure is. If you'd like the validation to occur in line with the other validation rules utilize the onValidte method. function _customValidation(){ var x =...
Michael T. Tangorre
crazyflash4
Offline Send Email
Jun 6, 2005
6:07 pm
3162
... Actually, I'd recommend reading this: http://www.pengoworks.com/qforms/docs/validation.htm#Creating You can just do: ...
Dan G. Switzer, II
dswitzer2
Online Now Send Email
Jun 6, 2005
7:39 pm
3163
... Dan Where ya been!!! Glad to see you around again. Mike...
Michael T. Tangorre
crazyflash4
Offline Send Email
Jun 6, 2005
7:41 pm
3164
Mike, ... Long involved story, but I'm back! Never fear, I've always been lurking.... ... Thanks!...
Dan G. Switzer, II
dswitzer2
Online Now Send Email
Jun 6, 2005
8:53 pm
3165
Dan, Glad to see that you are back!!!!! _____ Jason Radosevich Terminal Fusion <http://www.terminalfusion.com> http://www.terminalfusion.com Help stop credit...
Jason Radosevich
j_abell
Offline Send Email
Jun 6, 2005
8:55 pm
3166
Hi Dan, Thank you for your reply! I am not sure where I need to place this in the javscript. Here is what I currently have: </style> <SCRIPT...
John Michael
jmichael0350
Offline Send Email
Jun 6, 2005
9:00 pm
3167
John, ... function _isValueEqualTo(sValue){ if( sValue != this.value ){ this.error = "The supplied value to the "+this.description+" field is incorrect."; } } ...
Dan G. Switzer, II
dswitzer2
Online Now Send Email
Jun 7, 2005
1:38 am
3168
Hi Dan, Thank you for the reply, it seems that I am getting errors while trying to use this code: <SCRIPT SRC="https://www.domain.com/lib/qforms.js"></SCRIPT> ...
John Michael
jmichael0350
Offline Send Email
Jun 7, 2005
1:48 am
3169
John, ... That line should be: objForm.agreement.validateValueEqualTo("I Agree");> Also, make sure your init() function is properly closed (i.e. has the ending...
Dan G. Switzer, II
dswitzer2
Online Now Send Email
Jun 7, 2005
1:56 am
3170
Hi Dan, I am really sorry, but it just is not working. I made the changes as you suggested but I get a error in Internet Explorer (javascript) stating a...
John Michael
jmichael0350
Offline Send Email
Jun 7, 2005
2:12 am
3171
The ">" shouldn't be on the line. Not sure why it got inserted. -Dan _____ From: qformsapi@yahoogroups.com [mailto:qformsapi@yahoogroups.com] On Behalf Of John...
Dan G. Switzer, II
dswitzer2
Online Now Send Email
Jun 7, 2005
11:10 am
3172
This bug has also been a big problem for us. After looking through ... actually does serve a purpose, albeit not in a correct way. The result of parseFloat is...
ben_dolman
Offline Send Email
Jun 7, 2005
4:50 pm
3173
The > on which line? "Dan G. Switzer, II" <dswitzer@...> wrote:v\:* {behavior:url(#default#VML);}o\:* {behavior:url(#default#VML);}w\:*...
John Michael
jmichael0350
Offline Send Email
Jun 7, 2005
8:53 pm
3174
objForm.agreement.validateValueEqualTo("I Agree");> _____ From: qformsapi@yahoogroups.com [mailto:qformsapi@yahoogroups.com] On Behalf Of John Michael Sent:...
Dan G. Switzer, II
dswitzer2
Online Now Send Email
Jun 8, 2005
12:24 am
3175
Hi Dan, I took out that > at the end of that line as it was there in the code. But I am still getting the same error message, error on line 101 which is the...
John Michael
jmichael0350
Offline Send Email
Jun 8, 2005
12:56 am
3176
Well, just browsing your code you are missing a } At the end of your script objForm.agreement.validateValueEqualTo("I Agree"); } <-- Missing that.. //--> ...
Jason Radosevich
j_abell
Offline Send Email
Jun 8, 2005
1:05 am
3177
Jason, thank you!!! That was the problem, it is working great now. It was driving me nuts! Thanks, John Jason Radosevich <jason@...> wrote: v\:*...
John Michael
jmichael0350
Offline Send Email
Jun 8, 2005
1:37 am
3178
It happens to the best of us.. :-) _____ Jason Radosevich Terminal Fusion <http://www.terminalfusion.com> http://www.terminalfusion.com Help stop credit card...
Jason Radosevich
j_abell
Offline Send Email
Jun 8, 2005
2:45 am
3179
Hello, how can I use *obj.changedFields()* for obtain after submit only the fields have changed?Im using CFMX.* *I have only this description : The...
Xavi
xavi.xavi@...
Send Email
Jun 10, 2005
10:04 am
3181
Xavi, Here's a quick example w/source: http://www.pengoworks.com/qforms/test/wddx.htm Download the source: ...
Dan G. Switzer, II
dswitzer2
Online Now Send Email
Jun 10, 2005
8:56 pm
Messages 3151 - 3181 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