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...
Ok, I'm going to try again. That "Rich-Text Editor (Beta)" is truly a BETA. The Google toolbar fills the values only when the button is clicked. Because of...
I was reading the documentation here: http://www.pengoworks.com/qforms/docs/objects_qform.htm#Methods It sounds like obj.onSubmit() fires functions AFTER the...
Sonny, Just do this: function saveForm(){ objForm.enforceDependency('yourField'); objForm.submit(); } Then, instead of using a regular submit button, use: ...
Hey gang - I'm having issues getting qForms to display my error messages properly when using validateExp(). I've got a select form element set up - the code is...
Scott, In the validateExp() method, the "this" object refers to the qForms object--not the actual form field. To access the actual form field, you'd use...
Hello, I've just startec with qForm API and I've already got a problem: I can't disable those annoying alert boxes :/ It's really not the best way of informing...
hi, add one more line, uploadForm = new qForm("form_name"); uploadForm._showAlerts = false; uploadForm._allowSubmitOnError = true; I hope this should work. ...
Manaswinee
manaswineesurve@...
Nov 29, 2006 8:19 am
3700
It is getting to be the end of the day so my brain is not functioning on what I know should be simple. How can I enforce that the value of a text input field...
I actually had tried _addValidator the shortly after sending my first email and it never seemed like it was running. I do not have access to the code from...
hi Aaron, You can use the "validateDifferent()" function to solve your problem. Use the hidden field to store the value as foobar. <input type="hidden" name...
Manaswinee
manaswineesurve@...
Dec 6, 2006 5:43 am
3704
Thanks, planning to give that a try tomorrow but still need to figure out what I was doing wrong with the addValidator but can not even look into it until...
There is no built in functionality to do this, but this is what I use. objForm = new qForm("buyersGuideForm"); function _f_isMinMaxCheckBoxes(mm,nn){ var...
Thanks, this is exactly what I needed. Kathleen ... From: qformsapi@yahoogroups.com [mailto:qformsapi@yahoogroups.com] On Behalf Of Dean Lawrence Sent:...
Forgive me if this is a double-post. I seemed to have problems joining. On a qForm enabled form, if I use and <img> tag with the onClick set to submit the...
Does qForms have a way to display error messages that does not use alert()? Kathleen Ballard, CFMX Please visit our website: http://www.cascadestech.com/...
Hi Dan! Your faithfulness is admirable. :-) Hi Everybody Else, When my client-side validation fails, it pops up an error message just like you would expect....
I have a situation where I need to add a custom action to happen during the qForms validation process. Currently, I am using qForms 2 with the dhtml effects...
Dave, A qForm object is really designed to be only initialized once--just after the DOM is ready (or after the form object is finalized and ready for DOM ...