Hi all, Aim: To get version 2 to be able to validate xhtml Thanks to Dean and Aaron I have downloaded Tortoise. I don`t know if I need it though as I think I...
Hi Trevor, I would suggest still using Tortoise to export a copy of the files so that you know that you have gotten everything. However, whichever way you...
Hi all, Thanks Dean 1. I got the v2 files downloaded via tortoise and installed them. I get an error, however, "error code 150 core validation". Why do I get...
UPDATE: 1. I got the v2 files downloaded via tortoise and installed them. I get an error, however, "error code 150 core validation". Why do I get that? ERROR...
... I would grab everything. Even if you are not using them in your script. They don't take up that much room on your site and they are not downloaded by the...
Hi Dean, 1.It seems to me that the whole lib is being loaded with the js? I am sure v2 is slower-maybe due to the size increase in folder lib? // set the path...
... This is not actually loading all the libraries, only the field, function and validation libraries. You manually have to load the additional libraries. ... ...
Hello there, I'm taking a shot at setting up a custom validator for a site I'm working on, and it feels like I'm 99% there. Essentially, I've got a dynamically...
Matthew Dunphy
leviathant@...
Oct 30, 2007 10:39 pm
3914
1) Should have used validateWhatever instead of isWhatever 2) Shouldn't have attached it to an item whose name gets used twice. Thanks for the great API :) -- ...
Matthew Dunphy
leviathant@...
Oct 30, 2007 10:39 pm
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...
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,...