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...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

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 3700 - 3781 of 3977   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
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
3720
Jeff, ... If you're looking to do something in addition to validation during the validation routine, look into using the onValidate() event (in the ...
Dan G. Switzer, II
dswitzer2
Online Now Send Email
Jan 19, 2007
1:15 pm
3721
Moving var objForm = new qForm('#This.formName#'); to its own line outside of the click functions and converted them all into one function and adding...
Dave Babbitt
dbabbitt_2000
Offline Send Email
Jan 19, 2007
7:54 pm
3726
Dan, In digging through this some more, it looks like the built in DHTML error message block is almost what I am looking for. How much work would it be or...
Jeff Chastain
fbxsolutions
Offline Send Email
Jan 31, 2007
2:33 pm
3730
Hello! Have try to made a own validateExp to validate a international phone number. The code I have try is based on a suggestion in this forum ===== function...
tew_sw
Offline Send Email
Feb 4, 2007
7:05 pm
3736
Hi, How can I return false after validation runs? I have the following code after my form. After the qforms validation kicks in, my page still submits, but I...
malik_robinson
Offline Send Email
Feb 13, 2007
7:02 pm
3737
Hi, I take that back.. my validation is not running at all when I use an <input type="button"> I need that to call the qforms validation routines using an...
malik_robinson
Offline Send Email
Feb 13, 2007
7:20 pm
3738
Malik, Use: <input type="button" value="Submit" onclick="objForm.submit();" /> If there are errors, the form won't be submitted. -Dan...
Dan G. Switzer, II
dswitzer2
Online Now Send Email
Feb 13, 2007
8:44 pm
3742
Is there any way I can set a function to be run *if* validation errors occur? I have a function that's used for disabling certain fields and I find the fields...
Toby Tremayne
toby@...
Send Email
Feb 19, 2007
12:51 am
3769
I am looking at the blog posting a while back about using qForms with an AJAX call to do server-side validation. ...
Jeff Chastain
fbxsolutions
Offline Send Email
Mar 14, 2007
5:49 pm
3776
Hi folks, New to this API, but stuck on my first use (besides, it's Monday!). On a ColdFusion page, a query pulls in various info, including 'Equip' and...
jgillett
Offline Send Email
Mar 19, 2007
6:44 pm
3777
Ok... You're hard-coding the value here: "objForm. EquipValue. setValue( #qryEquip. Cost#);". It's always going to pass the first value from your query. You...
Edward A Savage Jr
sonnysavage
Offline Send Email
Mar 20, 2007
9:57 am
3778
Hi, Realize the query would just pull the first item, but didn't know how to get around it (JS is not my thing). Unfortunately, what you posted does not work....
jgillett
Offline Send Email
Mar 20, 2007
2:50 pm
3781
Hi John, Your problem has to do with your ColdFusion code, not with QForms. Don't use the <cfselect> tag to create your list, since it only allows you to pass...
Dean Lawrence
deanmlaw
Offline Send Email
Mar 22, 2007
1:41 am
Messages 3700 - 3781 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