I am new to qforms but I really like it and I am enjoying using it. I tried to understand the FAQs about error messages. I want to change the default message....
John, ... The only way to currently change the "The following error(s) occurred" message is to open up the qforms.js file and manually change the text in the ...
Hello, I'm using qForms 139 and having a strange issue with one of my forms. The form has several fields that are disabled by default, then get enabled when a...
IE will not send fields that are disabled via the POST operation (which it sounds like you probably know.) Are you positive that the users aren't filling the...
Dan, Thanks for getting back to me. Yes, I know that disabled fields do not get submitted. I believe that the fields are enabled when the user is on the form...
Brad, I'd just double check your JS code to ensure that in no situation the fields could become disabled during the onsubmit event. Nothing in native in qForms...
Dan, Sorry I didn't get back to you, I've been on the road and just now catching up on things. Thanks for getting back to me. As far as I can tell, there is...
How do I customise qForms so that when I submit a form it doesn't change the borders of the fields. OR How do I customise the stylesheet so that when it...
I'm having trouble getting the validateDifferent() method to fire, it seems to ignored by the script. Other validation is working correctly Any ideas? -- in...
I'm not sure if this will correct the problem or not (since I didn't get a chance to try it), but try removing the email2 from your required list. The required...
Chris, ... In v1, the only way to modify this is to change the code. In the v2 code I have written (and that is on tigris.org,) the style's can be altered by ...
The validateDifferent() method would only throw an error if the matches are the same. If you're testing the values w/different values, then an error would not...
Sorry if this shows up twice, I accidentally posted before I was done. This may end up being as much a question about JavaScript as QForms so here it goes. I...
I have two fields, first and last name. The rule is if one has data in it than both have to have data in it. Otherwise they are ok. No, neither is required so...
Joel, The this.error is just a string. If it's not blank, then qForms will report whatever value is stored in this variable. So, if you're overwriting the ...
Dan, That seems reasonable and I could/should have employed that method. I was in a time crunch (which probably backs what you were saying even more) so what I...
... No, I'd just write one validation method. However, I wouldn't worry about returning every single issue you've found. Details are great, but it's too easy...
Joel, ... This is a circular logic problem. The default rules for the createDependencyTo() says basically this: If the value of the first field is blank or...
Dan Thank you very very much for your help. ... To some extent I agree but on the other hand, if the formatting is off or certain illegal charaters are in the...
Dan, Again, thank you very much. I feel like a complete idiot. Well not completely because this is not in the documentation on your site. :) But I hate to say...
... Re-reading my post, the point I was trying to make isn't exactly clear. What I'm specifically talking about is there are times when missing one aspect of a...
Dan, Ahh so true. To much specific not always good. Being losser with input is better. Server validation before entering is necessary. Thanks again for all...
I have a problem that I've been trying to resolve for the past few days. I have shopping cart application where it would be desirable for the user to complete...
Okay, so what are you running on the backend of all of this? Since that will be doing the final processing, it would help to know if we are going to suggest a...
Running on the backend? The application is .asp and we are using SQL Server as the database. I use a rather straight-forward query to populate the form on...
Hello all, I am currently writing an application in ColdFusion using Fusebox and QForms API for client side validation. I have been able to create events and...
Why use multiple forms? Dan, The application calls for creating an order "form" that the customer uses to order products. Visualize this "form" as being...
dynamically name the form fields as quantity_1,prodnum_1, quantity_2, prodnum_2, etc, then loop through received formfields, and parse accordingling, in a...
Why not use a dummy hidden field within the form and when you parse the form when this field is hit you create a new record? Just thinking outloud? Chas ...