I have a dropdown on a form with an OnChange event to kick off the function below. When the one certain value is selected, I make some additional questions...
Is it possible with qForms to validate the file type of a file before it is uploaded in a form. I realize that I can use an external funtion to do this, but I...
Hi Does anyone know if qforms works on Unix. I am having to move all Coldfusion apps over from NT to Unix and none of the qform validation stuff is working....
Gary, qForms is all client-side--which means the server platform makes no difference. The one thing to watch out for any time your moving files between Windows...
Thanks Dan, that is very helpful. I will have to verify that everything is set up ok for this. Thanks again Gary ... files ... file. The ... on ... validation...
Dan, do you know if there could be issues within any of the .js files in referencing each other that could cause a problem with case sesitivity because all...
Gary, FYI – I have Q-Forms running on several *nix servers without any apparent issues. I would be almost positive that your developer has written his...
... Only if the file names have been renamed, thus changing the case. There have been many installs of qForms on *nix servers. Also, you might want to check ...
Ok, I got it working. It was a simple matter of putting the ../ in the following: qFormAPI.setLibraryPath("../lib/") I hate when things like that happen!!! ...
Hi, I've got a form where the user could see up to 10 file upload elements. How can I check to see that the user has selected at least one file to upload. I...
... Thanks. There's one odd wrinkle however. For some unfathomable reason your validation script doesn't work in the Safari browser (on OS X). However, it...
I'm using the following field method: o.zip_1.validateZipCode(); which insists that the user enter 10 digits when I only require 5. Am I missing something? ...
Hey Jason The validateZipCode() should require either 5 or 9 digits. Is it possible that your form field has an extra space at either the beginning or end of...
Perry Woodin
perry@...
Mar 3, 2004 5:51 pm
2622
... beginning ... Nope. To test, I even cut down the maxlength to 5 (although it should be 7, to allow Canadian postal codes). Same error. Jason...
How would I validate that the date someone is returning is greater than the date they left? I tried objForm.departuredate.validateExp("parseDate(this.value) <...
I just ran into a problem with having fields named length, width & height cuasing IE to error when setting the descriptions and validating the fields. The...
Everyone, We have a "wizard" type of form that has back button on it. The back button still needs to perform a "submit" of the entire form, but we don't want...
Hi all, I am setting up a new application useing fusebox4 , when testing the required field alert, it works fine in firefox BUT in ie6 I am getting the...
When you have the webpage open in IE6, view the source, paste it into your editor, go to the line throwing the error and paste the code on that line and 10...
Trent, ... Apparently IE is throwing an error when try to set background color style ... It works fine. It's also important to state that escaping the pound...
Jeremy, You don't have to declare your validation rules when the page loads--that's just typically the best time to do it. In this case, you just wait to ...