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...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

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 3554 - 3584 of 3977   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
3554
I wish this form validation were easier to understand! I have a simple text field in which I want to validate that there are only 7 alphanumeric characters...
Greg Luce
cf_greg
Online Now Send Email
Jun 1, 2006
2:59 pm
3555
Dan, There are no form elements named "submit"...I double checked to make sure. I'm still having the same problems. Thanks for the tips on the tinyMCE, I'll be...
stricklandd5
Offline Send Email
Jun 1, 2006
3:56 pm
3556
When reviewing my code I saw where I had an onSubmit() call (within my form tag), which was calling a script/function that no longer existed on that page......
stricklandd5
Offline Send Email
Jun 1, 2006
4:22 pm
3557
Ok, very strange...I now have everything working great...even with the wysiwyg editor tinyMCE. I found that the problem was one of my text areas which was...
stricklandd5
Offline Send Email
Jun 1, 2006
5:23 pm
3558
Greg, You should be using "validateLength()" instead of "isLength()". The "is" methods return a Boolean result. The "validate" methods actually attach a ...
Dan G. Switzer, II
dswitzer2
Offline Send Email
Jun 1, 2006
6:08 pm
3559
Doug, ... That's not a qForms problem--it's a server problem. Are you using CF? If so, do you have a field called "experience_required"--if so, CF...
Dan G. Switzer, II
dswitzer2
Offline Send Email
Jun 1, 2006
6:45 pm
3560
Doug, ... As my last note indicated, ColdFusion does some special parsing to the form scope, looking for form fields that contain an underscore followed by a ...
Dan G. Switzer, II
dswitzer2
Offline Send Email
Jun 1, 2006
6:47 pm
3561
Dan, Guess that explains that...thanks for the information. When I first received that error message I didn't recognize it as a CF error b/c I just recently...
stricklandd5
Offline Send Email
Jun 1, 2006
8:55 pm
3562
Is there a way, using qforms, to pop an alert box when the user clicks on a "Delete" button that notifies them that they are about to delete the record, and...
stricklandd5
Offline Send Email
Jun 7, 2006
3:57 pm
3563
What about this? <p> <script language="JavaScript"> <!-- function confirmDelete() { return confirm("Delete Record?") } //--> </SCRIPT> <form action="XXX.cfm"...
frazier345
Offline Send Email
Jun 7, 2006
6:21 pm
3564
What about this? <p> <script language="JavaScript"> <!-- function confirmDelete() { return confirm("Delete Record?") } //--> </SCRIPT> <form action="XXX.cfm"...
frazier345
Offline Send Email
Jun 7, 2006
6:35 pm
3565
Yes, that's exactly what I was looking for, thanks! Here's how I used it: if (oButtonName == 'Delete'){ if(confirm("Delete Record?")){objForm.submit();} } ...
stricklandd5
Offline Send Email
Jun 7, 2006
8:49 pm
3566
Doug, ... If you use the line: qFormAPI.allowSubmitOnError = true; Then instead of an alert() box, you'll be prompted with a confirm() prompt. It will then...
Dan G. Switzer, II
dswitzer2
Offline Send Email
Jun 8, 2006
12:35 pm
3567
Dan, Great, thanks for the post; I'll add that to my code now. -Doug ... () prompt. ... message "Are...
stricklandd5
Offline Send Email
Jun 8, 2006
8:37 pm
3568
I'm looking through the documentation now, but was wondering if anyone knew if qForms had any built in functionality to produce a pop-up Printer-Friendly...
stricklandd5
Offline Send Email
Jun 17, 2006
9:57 pm
3569
How do you create a custom message for createDependencyTo()? I have tried the following, but it does not work: ...
Stan Winchester
winchester_stan
Offline Send Email
Jun 21, 2006
9:31 pm
3570
Hi Stan, That will not work. As stated in the manual: *"Note:* It's important to remember that providing a custom validation error message to a field will not...
Dean Lawrence
deanmlaw
Offline Send Email
Jun 22, 2006
12:55 am
3571
Hi Stan how about giving it a discription. objForm.DomainRegistrarUserName.description = "Please enter your Domain Registrar User Name"; Jim Louis Dean...
Jim Louis
frazier345
Offline Send Email
Jun 22, 2006
1:05 am
3572
I have a form that has multiple input types to include radio buttons. When the page, which contains the form, is loaded, the "values" for the form fields are...
stricklandd5
Offline Send Email
Jun 30, 2006
5:26 pm
3573
It almost seems as though the values from the stored procedure have not yet been assigned to the form fields when the script is first run on the page. Is this...
stricklandd5
Offline Send Email
Jun 30, 2006
6:00 pm
3574
Doug, From the docs: http://www.pengoworks.com/qforms/docs/extension_fields.htm#createDependencyT o NOTE: If you want to enforce dependencies on the default...
Dan G. Switzer, II
dswitzer2
Offline Send Email
Jun 30, 2006
6:15 pm
3575
Doug, The reason that this does not work is that qForms is reacting to actions that take place on the page (i.e. onClick, onSubmit). When you load a page, no...
Dean Lawrence
deanmlaw
Offline Send Email
Jun 30, 2006
6:27 pm
3576
Dan, Thanks...That did the trick for the qforms dependancy fields. I always try to look through the docs, but I sometimes get tunel vision when under the...
stricklandd5
Offline Send Email
Jun 30, 2006
6:38 pm
3577
Doug, This is invalid code: if(objForm.A.value==1) It should be: if(objForm.A.getValue()==1) The value property is only current/up-to-date in a validation...
Dan G. Switzer, II
dswitzer2
Offline Send Email
Jun 30, 2006
7:26 pm
3578
Thanks Dan. V/R, Doug ... function....
stricklandd5
Offline Send Email
Jul 3, 2006
1:58 pm
3579
I know, I know... It's been a while. Where's v2 at? Good question. In the meantime, here's build 140. Basically bug fixes and a new property (that's been asked...
Dan G. Switzer, II
dswitzer2
Offline Send Email
Jul 13, 2006
7:47 pm
3580
I am having difficulty getting qForms to work with my use of the Rico/Prototype engine. I have a div that gets dynamically populated with content returned via...
emadsenus
Online Now Send Email
Jul 17, 2006
6:00 am
3581
... What's your code look like?...
Dan G. Switzer, II
dswitzer2
Offline Send Email
Jul 17, 2006
8:07 pm
3582
sorry I dodn't have time to clean this up more... <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">...
emadsenus
Online Now Send Email
Jul 18, 2006
3:42 am
3584
I thought this message had originally been posted on the message board, but when I searched I couldn't find it. I was pretty sure I had already answered this...
Dan G. Switzer, II
dswitzer2
Offline Send Email
Jul 18, 2006
3:51 pm
Messages 3554 - 3584 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