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 ...
Thanks, Fred! You've given me a couple of ideas to test. On reflection, I think that this might also be what Dan was suggesting -- I just didn't "see" how...
Dear All Hopefully I have checked the archives hence the request for help I have adapted the multi layer form example and followed the advice mention in 2001...
I want to say that this is what I was looking for. I couldn't find it in the documentation. Thanks Dean! --- In qformsapi@yahoogroups.com, "Dean Lawrence"...
Dear All Solved most of my problems mainly due to perhaps a PHP issue, who knows. However I now only call the serialize function once and PHP deserializes it...
Roy, ... The code should look like this: //Validate form and if an error is returned, stop processing if( !qFormAPI.validate()) return false; // Save the...
Dan Thanks I guess I dont understand. Here is my understanding by listing wddxPacket in the Serialize() method i assumed that the wddxPacket would not appear...