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...
Dan Ive put snippets of the page below function sendForm() { //Validate form and if an error is returned, stop processing if( !qFormAPI.validate()) return...
I have recently started using ajax as part of my works website. The ajax that I have used is to load content from external files into a div tag. Therefore I...
Damian, ... You'll need to re-initialize the qForms object when you pull in the content via AJAX. When you invoke a new qForm object, it reads in all the ...
Thanks, but were would I place this re-initialization of qforms because at the moment all the qforms code and references are on the same page as the form which...
Roy, The form version of the serialize() method is working fine (objWDDX.wddxpacket.serialize("wddxpacket").) However, there is a bug in the qFormAPI version...
Damian, Are you saying the document fragment you're loading via AJAX includes the JS code to initialize the JS? If so, you'll need to apply a workaround for...
I was thinking his question was more to do with is there something like a qForms.ReInit(). What I am wondering is if you have something like this from the...
Right, Ive got the form to validate now, what I've done is intialise the qform object when the submit button is click. Ive made an image submit button so when...
... This is so frustrating, Ive almost got it to work however when the form trys go to redirect or refresh the page IE comes up with an 'Object Expected' error...
Hello. I checked out the previous post regarding ajax and qforms, but it didn't answer my question, therefore I'm posting a new topic. I'll try to keep this...
I have a problem with in multiple select box on my FAQs site using qForm. There are there selected boxs and one depended on the one before it. First one is...
We have a form that uses the createDependencyTo() method for one of the fields. When the form is filled in using the Google tool bar autofill, the dependency...