Guys, a while ago we've been talking about getting some $$ together to help Dan finish qforms version 2. Check the list down below. Now I ask you: how much...
Hi Dan, I'm a long time admirer (and donator.. twice so far I believe) to qforms api... I like the new changes that are happening, especially the updated ...
Hello, The qform validation functions provide an easy way to specify custom error messages by simply passing the error message string as the final argument in...
I'm trying to compare two IDs and get an JS alert if the same IDs are selected. The validateDifferent method seems to be intended for such as case, ...
Cameron and Dan, I am having the same issue with build 139 validating Phone #'s. I've tried the fixes listed in the thread with no luck in IE6. I'm thinking...
I thought I would report an odd behaviour. Validating a number meant to be a dollar value input works okay unless I end it in ".00" . So, "1.25" validates okay...
Al Hudson
mauvian@...
Aug 19, 2004 8:13 pm
2926
Hello, I installed qForm in a lib directory, and I write that, but it doesn't work! Could you help ? For information, my folder are : toto ... (and my html...
Hello, I have downloaded and installed the qform files as directed and tried the email validation routine. I copied and pasted the code from the docs right ...
Make sure that you have <SCRIPT SRC="lib/qforms.js"></SCRIPT> <SCRIPT LANGUAGE="JavaScript"> qFormAPI.setLibraryPath("lib/"); qFormAPI.include("*"); </SCRIPT> ...
Thanks Jason, I tried what you said and I still get the same error. Here is the full code. Maybe there is something else I did to cause this. ===============[...
Same error. :-( again, Could there be something in my setup? I have not only extracted the archive into my site root, but also my web root. (Just in case. :-)...
Hi again, OK, I have tried the archive that Jason sent me as well as the exact code and I STILL get that same error. I then created a new directory and ...
Thank you! I made two errors : - I wrote "setlibrarypath" instead of "setLibraryPath" - I thought the library path was the path of lib/lib (and that it was...
Quoting the qForms documentation: "The isPhoneNumber method will check to make sure the selected form element's length is equal to its length argument value....
I changed that particular line to the regex "\\D+", meaning 1 or more, "\\D*" means 0 or more. if( t == "numeric" ) r = new RegExp("\\D+", qFormAPI.reAttribs);...
I have been using qForms for along time, I just updated my site to the latest build (139) and was looking at trying some new features. I tried changing a form...
Hi Group, I've just come up with a situation that I currently couldn't easily solve with qForms, but I have a good solution which makes sense to me. The...
Hello all, I am successfully using the multi-select function to populate four levels of select boxes. My only problem is that I want each box to have a small...
Ben, From reading previous threads, the problem lies in the _stripInvalidChars() function that is called when you invoke validateFormat(). If you search the ...
Jeff Page
jeffrey_page@...
Aug 26, 2004 5:42 pm
2946
Hi, I have 2 fields on my form that allow a user to change and confirm their changed password. What is the correct syntax to use the qForms validatePassword...
Daniela Milton
daniela@...
Aug 27, 2004 2:00 pm
2947
I have a form with radio buttons that are required. However, when the user forgets to select one and submits the form, the message box pops up that tells them...
Robert, this should work for you: stcSelect = new Object(); stcSelect[""] = "Please Select..."; when you call the populate() mehtod add the stcSelect as the...