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 3915 - 3944 of 3977   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
3915
I know this is a simple question, but -- how do you actually send the combined values from multiple forms? I've looked at the example, but it simply dumps or...
Tom McNeer
tmcneer
Offline Send Email
Nov 10, 2007
12:16 am
3916
Hi Tom, You can't physically submit multiple forms, so what you could do is to take the wddx values and populate a single hidden field, submit it with your...
Dean Lawrence
deanmlaw
Offline Send Email
Nov 10, 2007
3:00 am
3917
Hi Dean, I had a feeling that's what I was going to hear. I know you can't submit both forms. Basically, I was hoping that since the qFormsAPI object already...
Tom McNeer
tmcneer
Offline Send Email
Nov 10, 2007
2:17 pm
3918
Tom, ... In the qforms folder, there's a wddx.js library file. Just include this in your qFormsAPI.include() calls. You can then do qFormsAPI.serialize() to ...
Dan G. Switzer, II
dswitzer2
Offline Send Email
Nov 11, 2007
11:01 pm
3919
Hi Dan, Thanks for stepping in. Yes, I'm aware of the serialize method, and since I'm using CF on the back end, reading the WDDX string is simple enough. ...
Tom McNeer
tmcneer
Offline Send Email
Nov 12, 2007
2:06 pm
3920
The _sic() function of the Function library has a bug in the "numeric" case. I believe the RegExp("\\d+", "gi") should be RegExp("[^0-9]+", "gi") because it...
adam.euans
Offline Send Email
Nov 19, 2007
3:08 am
3921
I am going to need to have a page that will allow the user to add rows for input. Each row will have the same form fields but their names will increment by...
Aaron Rouse
aaron_rouse
Offline Send Email
Dec 5, 2007
9:31 pm
3922
Use addField() oForm.addField('newFieldName'); oForm.newFieldName.required = true; ... From: Aaron Rouse <aaron.rouse@...> To: qformsapi@yahoogroups.com ...
Matt Williams
summitsites
Offline Send Email
Dec 5, 2007
9:35 pm
3923
doh! ... thanks, will give it a try once I get to creating the page ... -- Aaron Rouse http://www.happyhacker.com/...
Aaron Rouse
aaron_rouse
Offline Send Email
Dec 5, 2007
11:11 pm
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
Offline 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
Messages 3915 - 3944 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