Search the web
Sign In
New User? Sign Up
qformsapi · qForms API: qForums
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 3680 - 3719 of 3977   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
3680
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...
waveworksdesign
Offline Send Email
Nov 2, 2006
2:24 pm
3681
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...
Frank Lee
francislee012
Offline Send Email
Nov 3, 2006
6:55 pm
3682
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...
Edward A Savage Jr
sonnysavage
Offline Send Email
Nov 8, 2006
9:30 pm
3684
Edward, ... Are you using the enforceDependency() method on the field where the dependencies are attached to? See the docs for an example: ...
Dan G. Switzer, II
dswitzer2
Online Now Send Email
Nov 9, 2006
1:39 pm
3685
... http://pengoworks.com/qforms/docs/extension_fields.htm#createDependencyT\ o ... will ... sure if ... page ... initialized ... the ... toolbar...
Edward A Savage Jr
sonnysavage
Offline Send Email
Nov 9, 2006
3:47 pm
3686
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...
Edward A Savage Jr
sonnysavage
Offline Send Email
Nov 9, 2006
4:02 pm
3687
Sonny, Yes, you could just add the enforceDependency() to onsubmit event handler or use a function to submit your form. -Dan...
Dan G. Switzer, II
dswitzer2
Online Now Send Email
Nov 9, 2006
8:23 pm
3688
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...
Edward A Savage Jr
sonnysavage
Offline Send Email
Nov 9, 2006
8:50 pm
3689
Sonny, Just do this: function saveForm(){ objForm.enforceDependency('yourField'); objForm.submit(); } Then, instead of using a regular submit button, use: ...
Dan G. Switzer, II
dswitzer2
Online Now Send Email
Nov 10, 2006
1:29 am
3694
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
sweikert65
Offline Send Email
Nov 21, 2006
5:33 pm
3695
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...
Dan G. Switzer, II
dswitzer2
Online Now Send Email
Nov 21, 2006
8:46 pm
3698
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...
cyprianpl
Offline Send Email
Nov 28, 2006
11:18 am
3699
hi, add one more line, uploadForm = new qForm("form_name"); uploadForm._showAlerts = false; uploadForm._allowSubmitOnError = true; I hope this should work. ...
Manaswinee
manaswineesurve@...
Send Email
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...
Aaron Rouse
aaron_rouse
Offline Send Email
Dec 5, 2006
9:41 pm
3701
Aaron, You will need to create a custom validation function for check the value of mytext and then fail if it equals foobar. ...
Dean Lawrence
deanmlaw
Offline Send Email
Dec 5, 2006
10:10 pm
3702
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...
Aaron Rouse
aaron_rouse
Offline Send Email
Dec 6, 2006
4:26 am
3703
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@...
Send Email
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...
Aaron Rouse
aaron_rouse
Offline Send Email
Dec 6, 2006
5:59 am
3705
This is what I had been trying, but was not getting any alerts/errors. <script language="JavaScript"> <!--// objForm = new qForm("Form"); function...
Aaron Rouse
aaron_rouse
Offline Send Email
Dec 6, 2006
9:58 pm
3706
Aaron, Try this. <script language="JavaScript"> <!--// objForm = new qForm("Form"); function frmSubmit(frmAction) { objForm.Submit.setValue(frmAction); ...
Dean Lawrence
deanmlaw
Offline Send Email
Dec 6, 2006
11:25 pm
3707
Is there an existing validation that will limit the number of checkboxes the user selects?...
klb5770
Offline Send Email
Dec 26, 2006
3:50 pm
3708
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...
Dean Lawrence
deanmlaw
Offline Send Email
Dec 27, 2006
3:38 pm
3709
Thanks, this is exactly what I needed. Kathleen ... From: qformsapi@yahoogroups.com [mailto:qformsapi@yahoogroups.com] On Behalf Of Dean Lawrence Sent:...
Kathleen Ballard
klb5770
Offline Send Email
Dec 27, 2006
6:18 pm
3711
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...
summitsites
Offline Send Email
Jan 3, 2007
3:00 pm
3712
Matt, qForms has a submit() method. Use that to submit your form: objForm.submit(); -Dan...
Dan G. Switzer, II
dswitzer2
Online Now Send Email
Jan 3, 2007
3:22 pm
3713
Thanks Dan, that's what I was looking for. Matt...
summitsites
Offline Send Email
Jan 3, 2007
4:28 pm
3714
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/...
Kathleen Ballard
klb5770
Offline Send Email
Jan 9, 2007
2:35 pm
3716
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....
Dave Babbitt
dbabbitt_2000
Offline Send Email
Jan 17, 2007
8:10 pm
3717
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...
Jeff Chastain
fbxsolutions
Offline Send Email
Jan 18, 2007
6:42 pm
3719
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 ...
Dan G. Switzer, II
dswitzer2
Online Now Send Email
Jan 19, 2007
1:14 pm
Messages 3680 - 3719 of 3977   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help