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...
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...
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, ... 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 ...
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. ...
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...
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...
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...
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...
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...
Based on the documentation (http://www.pengoworks.com/qforms/docs/extension_fields.htm#createDependencyTo) I'd have to disagree with Dean. The JavaScript...
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...
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"...
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...
Use the validate() method. -Dan _____ From: qformsapi@yahoogroups.com [mailto:qformsapi@yahoogroups.com] On Behalf Of Aaron Rouse Sent: Wednesday, January 16,...
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() ...
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:...
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...
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...
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. ...
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...