I wish this form validation were easier to understand! I have a simple text field in which I want to validate that there are only 7 alphanumeric characters...
Dan, There are no form elements named "submit"...I double checked to make sure. I'm still having the same problems. Thanks for the tips on the tinyMCE, I'll be...
When reviewing my code I saw where I had an onSubmit() call (within my form tag), which was calling a script/function that no longer existed on that page......
Ok, very strange...I now have everything working great...even with the wysiwyg editor tinyMCE. I found that the problem was one of my text areas which was...
Greg, You should be using "validateLength()" instead of "isLength()". The "is" methods return a Boolean result. The "validate" methods actually attach a ...
Doug, ... As my last note indicated, ColdFusion does some special parsing to the form scope, looking for form fields that contain an underscore followed by a ...
Dan, Guess that explains that...thanks for the information. When I first received that error message I didn't recognize it as a CF error b/c I just recently...
Is there a way, using qforms, to pop an alert box when the user clicks on a "Delete" button that notifies them that they are about to delete the record, and...
Yes, that's exactly what I was looking for, thanks! Here's how I used it: if (oButtonName == 'Delete'){ if(confirm("Delete Record?")){objForm.submit();} } ...
Doug, ... If you use the line: qFormAPI.allowSubmitOnError = true; Then instead of an alert() box, you'll be prompted with a confirm() prompt. It will then...
I'm looking through the documentation now, but was wondering if anyone knew if qForms had any built in functionality to produce a pop-up Printer-Friendly...
Hi Stan, That will not work. As stated in the manual: *"Note:* It's important to remember that providing a custom validation error message to a field will not...
Hi Stan how about giving it a discription. objForm.DomainRegistrarUserName.description = "Please enter your Domain Registrar User Name"; Jim Louis Dean...
I have a form that has multiple input types to include radio buttons. When the page, which contains the form, is loaded, the "values" for the form fields are...
It almost seems as though the values from the stored procedure have not yet been assigned to the form fields when the script is first run on the page. Is this...
Doug, From the docs: http://www.pengoworks.com/qforms/docs/extension_fields.htm#createDependencyT o NOTE: If you want to enforce dependencies on the default...
Doug, The reason that this does not work is that qForms is reacting to actions that take place on the page (i.e. onClick, onSubmit). When you load a page, no...
Dan, Thanks...That did the trick for the qforms dependancy fields. I always try to look through the docs, but I sometimes get tunel vision when under the...
Doug, This is invalid code: if(objForm.A.value==1) It should be: if(objForm.A.getValue()==1) The value property is only current/up-to-date in a validation...
I know, I know... It's been a while. Where's v2 at? Good question. In the meantime, here's build 140. Basically bug fixes and a new property (that's been asked...
I am having difficulty getting qForms to work with my use of the Rico/Prototype engine. I have a div that gets dynamically populated with content returned via...
sorry I dodn't have time to clean this up more... <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">...
I thought this message had originally been posted on the message board, but when I searched I couldn't find it. I was pretty sure I had already answered this...