I have my qform all set up...but when I run it I get two error messages on the page. The error messages I get are: Line: 2079 Char: 1 Error: Object doesn't...
Cameron, I think your problem is that you have a field named "Window" and I do believe that this is a reserved word (since it is part of the DOM). Dean ... -- ...
No this code I used a while back and it worked just fine. the "Window" name has never been changed, there is something else in the rest of the code I am ...
Yes, but did it work within the qforms framework? You are passing these field names into the library and they are handled differently than the native form...
I do not remember how I had it before.I am trying to re-create what I had before..how do I put it back into the qform framework? Cameron Marie mimiresworld.com...
Cameron, I tested your code and found that your path to the qforms files are probably wrong. You have this <SCRIPT src="QFORM/lib/qforms.js"></SCRIPT> <SCRIPT...
Hello Currently I this submit button for my form that then runs qforms. <input type="submit" name="s" value="Register and Submit Payment" /> The problem I have...
OK I got it to work with your suggestion. Thank you! My next question is how do I get it to work for 20 line items, all on the same page, and the related...
Hi all, I was reading the other posts about validating with xhtml and the need to use id instead of name. The solution is to download version two which allows...
Hi Trevor, You won't find it on the pengo website. You will find it posted at qforms.tigris.org. You need to use a subversion client to check-out a copy from...
... Thanks for the reply Dean I don`t have a subversion client I am just using js files: a folder in my webroot called lib, inside that folder a qforms.js file...
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...