I have three check boxes on a page. If a user clicks on a checkbox I would like to display a comment box in the row below it. I got the checkboxes and comment...
Any suggestions would be appreaciated I have a function: to check if start date is greater than 'Today' //thus: Start Date must be less than or equal to...
Elena, The error message in the __isDateGTToday function should be: this.error = "The " + this.description + " must not be less than"; this.error += " today's...
Todd, One you add a validation routine to the queue, there are no built in methods for deleting it. You could write a method that would find the validation ...
Micheal, If you're field names all follow a nomenclature where the only difference between the 1st argument and the 2nd argument is a prefix or suffix, then ...
I can't figure out what I'm doing wrong with a basic form. When the page with my form first loads, I get a JS error "'this.obj.elements.length' is null or not...
Hi Guys! Is there a simpler way to do this? I only want to validate if the field has something in it: objForm.Date_Of_Birth.description = "Date of Birth"; ...
Dave Babbitt
dbabbitt@...
Apr 5, 2004 3:24 pm
2678
Hey guys, i am getting this error, and I am not sure what it means, It seems like I am doing everything correctly, but guess not. This is an error pop up as...
Dave, All you need is: objForm.Date_Of_Birth.description = "Date of Birth"; objForm.Date_Of_Birth.validateDate("mm/dd/yyyy"); Validation methods are only run...
Jim, ... There's something about your form that the browser isn't like when trying to parse the form using JavaScript. Can you post a link to the page, or...
Hi Dan! When I use this code: objForm.Date_Of_Birth.description = "Date of Birth"; objForm.Date_Of_Birth.validateDate('mm/dd/yyyy', 'The valid format for your...
Dave Babbitt
dbabbitt@...
Apr 6, 2004 1:49 am
2683
Dave, ... Try using: objForm.Date_Of_Birth.validateDate( "mm/dd/yyyy", "The valid format for your date of birth is \"mm/dd/yyyy\"." ); If that doesn't work,...
Hi, I'm using the most recent version of qforms and trying to validate that the user has selected a file in a Input element, type "file". I'm getting some...
Howard, I don't have Safari to test, so you may have to do some playing around. If I had to guess, I'd suspect that Safari is treating the "file" input as ...
I think the root is something in the qforms libraries that the Safari javascript engine doesn't like. The most persistent error occurs on any page that loads...
I would like to know if anyone has come across any qforms tutorial sites that give good step by step examples? the Pengoworks.com site have a few examples but...
... When the first line is used and the form is submitted, I get the expected "uploadFile is required" error. When the second line is used, I get no alert...
Howard, ... The validatNotEmpty() method was designed to use to prevent people from just putting whitespace in the form field for an answer. It's really only ...
Hmm. Maybe I'm not doing it right. When I use "required" in conjunction with validateNotEmpty as shown below, all I get is a "uploadFile is required" alert,...
Howard, ... You'll only get the default error message, unless you place some whitespace in the form field. Maybe what you're wanting to do is to use the ...
Hows it going Howard? ... I don't know if this is a typo or if it's your problem, but it looks like you have one and a half sets of double quotes in your code....
Could someone please give me a good step by step example of two related selects using qforms? Let me explain in more detail. This is what I am trying to do. I...
... Hey Cameron. Things are much better now that my project (phase 1 at least) is about to go live today, albeit 4 months late. ... I think I meant ...
Hi-- I have got a form where I want the user to select one of three check boxes. If none are checked, I want to display an error message saying something like...