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 3924 - 3954 of 3977   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
3924
Right now what I'm trying to accomplish is to only validate a certain field - let's call it emailAddress - if a certain radio button is selected. Let's call...
less_than_kind
Offline Send Email
Jan 2, 2008
5:26 pm
3925
According to what I've experienced the validateEmail() should only throw an error if there was a value entered and it is not a valid email address. Making it...
Craig Arnett
craigarnett
Offline Send Email
Jan 2, 2008
6:05 pm
3926
The createDependencyTo would not work in this situation since selecting either of the Yes/No needEmail radio buttons would cause the emailAddress field to be...
Dean Lawrence
deanmlaw
Offline Send Email
Jan 2, 2008
7:43 pm
3927
hey dan was curious if you could use the calculation.plugin to do a sum of the results of a table colum? ...
Paul Ihrig
paul_ihrig
Offline Send Email
Jan 3, 2008
12:45 am
3928
Based on the documentation (http://www.pengoworks.com/qforms/docs/extension_fields.htm#createDependencyTo) I'd have to disagree with Dean. The JavaScript...
Edward A Savage Jr
sonnysavage
Online Now Send Email
Jan 3, 2008
1:04 am
3929
Edward, You are indeed correct. That's what I get for trying to go off memory. Thanks for setting it straight. 8-) Dean ... -- ...
Dean Lawrence
deanmlaw
Offline Send Email
Jan 3, 2008
3:48 am
3930
It seems to be creating the dependency regardless of the value of needEmail - I can check the value using getValue() and it says the value is 1, but it is...
less_than_kind
Offline Send Email
Jan 3, 2008
7:45 pm
3931
1 is the same as "True" in javascript. So it sounds like its working as it should if not as you expected. Fred T. Sanders ... From: "less_than_kind"...
Fred T. Sanders
sandersfred
Offline Send Email
Jan 6, 2008
4:03 pm
3932
Is there a way to trigger the validation on a form without submitting it? I want to validate information before inserting it into a hidden table for later...
Aaron Rouse
aaron_rouse
Offline Send Email
Jan 16, 2008
7:59 pm
3933
Use the validate() method. -Dan _____ From: qformsapi@yahoogroups.com [mailto:qformsapi@yahoogroups.com] On Behalf Of Aaron Rouse Sent: Wednesday, January 16,...
Dan G. Switzer, II
dswitzer2
Offline Send Email
Jan 16, 2008
8:09 pm
3934
Dan, Thanks, I just read it now in the docs and was about to reply to here with a "nevermind" Aaron ... -- Aaron Rouse http://www.happyhacker.com/...
Aaron Rouse
aaron_rouse
Offline Send Email
Jan 16, 2008
8:10 pm
3935
Dan, Guess one thing I should have asked before I go digging too far, after I run the validate() is there something I can check to see that the validate() ...
Aaron Rouse
aaron_rouse
Offline Send Email
Jan 16, 2008
8:15 pm
3936
Nevermind :) I see now I can check _queue.errors.length to see if it is greater than 0. ... -- Aaron Rouse http://www.happyhacker.com/...
Aaron Rouse
aaron_rouse
Offline Send Email
Jan 16, 2008
8:26 pm
3937
I recently required the use of a removeValidation() on the fly function and was unable to find something that would work - so I came up with something. file:...
adam.euans
Offline Send Email
Jan 23, 2008
4:39 pm
3938
Wouldn't this work? myForm.myField.setValue(''); myForm.myField.required = false; ... From: adam.euans <adam.euans@...> To: qformsapi@yahoogroups.com ...
Matt Williams
summitsites
Offline Send Email
Jan 23, 2008
4:57 pm
3939
No, that wouldn't work for my purpose. I needed to change the validation to a different type (US zip code to Canadian zip code) - the field was still...
adam.euans
Offline Send Email
Jan 24, 2008
12:55 pm
3940
This may sound a little odd, since forced validation should be just that. However, the behavior of qForms, when 'validate=true' is set for a field, is to run...
Tom McNeer
tmcneer
Offline Send Email
Feb 22, 2008
10:17 pm
3941
Tom, There isn't a good way to alter this behavior--other than modifying the code. In the core.validation.js there a method called: ...
Dan G. Switzer, II
dswitzer2
Offline Send Email
Feb 25, 2008
9:40 pm
3942
Hi Dan, Thanks very much for your reply., I assumed that I'd have to modify the framework files; I just couldn't find exactly where the focus() code was. ...
Tom McNeer
tmcneer
Offline Send Email
Feb 26, 2008
12:27 pm
3943
I have a rather complex form that dynamically creates a variable number of text fields. Applying a qForm object, setting description and required values for...
emadsenus
Offline Send Email
Feb 28, 2008
11:50 pm
3944
... What's your generated code look like (the code the browser sees?) -Dan...
Dan G. Switzer, II
dswitzer2
Offline Send Email
Feb 29, 2008
11:58 am
3945
The fields are actually retrieved via Ajax, rather than being created via DOM. I track the fields in a Javascript Array and then loop over this array of...
emadsenus
Offline Send Email
Feb 29, 2008
5:51 pm
3946
Did you ever find an answer to your question? I'm interested in the same thing....
Troy D. Murray
troymurray
Offline Send Email
Mar 21, 2008
3:25 pm
3947
hi guys, i have simple form containing 2 x multiple selects - products_available and products_selected. products_selected is populated from a query. problem:...
d3z1gnr
Offline Send Email
Apr 3, 2008
11:57 am
3948
Hi, my problem is when submitting one form i want to show custom error message like "xyz" instead of default error message "The following error(s) occurred:"...
tejau_ur
Offline Send Email
Jun 11, 2008
11:58 am
3949
I have 2 fields and I need to make the second field (text input box) required only if the first field (checkbox) is checked off. Please advise. Thanks!!...
elenaqc2002
Offline Send Email
Jul 30, 2008
4:18 pm
3950
There is a field method call createDependencyTo that allows you to bind one field to another. You can find a description of this in the documentation. ...
Dean Lawrence
deanmlaw
Offline Send Email
Jul 30, 2008
8:17 pm
3952
I have 2 questions: 1) I am using ValidateFormat to allow 4 digit year into a year field, on the error message "I get This field requires at least 4 valid ...
elenaqc2002
Offline Send Email
Sep 15, 2008
3:43 pm
3953
How can I add a validation function that is not specific to one field to run when I submit the form? I know I could do something like: function frmSubmit {...
Aaron Rouse
aaron_rouse
Offline Send Email
Oct 9, 2008
8:41 pm
3954
Ok, I should just type out my emails and not send them because it tends to make me find the answer. I just realized I could use validateAtLeastOne() ... -- ...
Aaron Rouse
aaron_rouse
Offline Send Email
Oct 9, 2008
8:49 pm
Messages 3924 - 3954 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