Thanks Dean, I am not using any cfforms. I think the libraries are loading properly  at least enough to do the form validation  it turns the empty fields...
3964
Dean Lawrence
deanmlaw
Dec 2, 2008 9:18 pm
Hi Mary, Since all the javascript files get loaded on the client side of things, ColdFusion is already done processing, so there would not be a conflict there....
3965
cameronmcox
Dec 4, 2008 3:13 pm
testing please ignore post...
3966
jackson0810
Jan 8, 2009 4:17 pm
Hi all, I am new to qForms and I'm having what I would consider a tiny issue. I am using the <cfwindow> tag withing a Coldfusion. When the link to this page...
3967
Edward A Savage Jr
sonnysavage
Jan 8, 2009 4:39 pm
It's my impression that <cfwindow> is for ajax... you probably need to include your qForms initialization JavaScript inside the <cfwindow> tags after the...
3968
Derrick Jackson
jackson0810
Jan 8, 2009 5:26 pm
I'll try that now... Thanks for the quick tip Edward. On Thu, Jan 8, 2009 at 11:39 AM, Edward A Savage Jr...
3969
mattmanremote
Jul 27, 2009 7:43 pm
Good afternoon, Thank you so much for creating this library, it will be very useful! I wondered if anyone could help me with a problem I've been having. I've...
3970
ashishnashikkar
Jul 28, 2009 3:01 am
... A Simpla search on google might help u out!!!...
3971
mattmanremote
Jul 28, 2009 5:50 pm
... Yes, that was the first thing I tried before posting here. I've also looked over the scriptaculous and prototype documentations to try and replicate the...
3972
Dean Lawrence
deanmlaw
Jul 28, 2009 5:56 pm
Matt, can you post your code? It is possible that you are using a reserved word for your field name. Also, have you checked to make sure that you have spelled...
3973
mattmanremote
Jul 28, 2009 8:35 pm
Hi Dean, Thanks for the offer to check it out! I've managed to verify that both modalbox (okonet.ru/projects/modalbox/ btw) and qForms work properly when...
3974
Dean Lawrence
deanmlaw
Jul 29, 2009 8:39 pm
Matt, Sorry I wasn't able to get to this yesterday. Just change the field name to something different than "key". It is apparently conflicting with one of the...
3975
mattmanremote
Jul 30, 2009 2:50 pm
Dean, Thanks for your help and time in looking at the problem. Unfortunately, I can't change the name of the object because of other reasons relating to the...
3976
maryjos313
Sep 3, 2009 3:18 pm
Hi all, hope the list is still being used, although it's been awfully quiet! Been wondering if further development on qForms has been abandoned, but I still...
3977
Dan G. Switzer, II
dswitzer2
Sep 3, 2009 6:22 pm
Mary Jo, Why not just change the expressions to a custom validation method since they're all doing the same thing. -Dan...
3978
Clive Dawson
dawson@...
Jan 5, 2010 7:25 pm
hi i have put a combo box in the middle of a multi page form... the qforms dump shows that all the variables are being picked up ... eg 1,2,3,4,5 but when i...
3979
Dean Lawrence
deanmlaw
Jan 5, 2010 7:41 pm
Clive, It's been a little while since I worked with qForm, but the select box values are not sent as array, but as a simple string. However, it only sends the...
3980
Connie
cdecinko
Jan 8, 2010 6:11 pm
Is there a way to compare one field (a signature) against two combined fields (first and last name) to be sure they are equal? I need to make sure that the...
3981
Dean Lawrence
deanmlaw
Jan 9, 2010 1:04 am
Hi Connie, You would have to create a custom validation. Check out http://www.pengoworks.com/qforms/docs/validation.htm#Creating for information on how to...
3982
Clive Dawson
dawson@...
Jan 10, 2010 11:07 pm
Thanks for response... have changed the script at the bottom of the page to the following: <!--// // initialize the qForm object objForm = new qForm("test2"); ...
3983
Aaron Rouse
aaron_rouse
Jan 12, 2010 2:09 am
I have an application at work that uses the containers and it sounds to me that you are not selecting all of the items in the container when going to the next...
3984
meisaputra
Mar 4, 2010 11:10 am
dear masters, i have a list of items. i can select some of them with checkbox. i need a validation which can check the content of nature[] or kind[] array has...
3985
vterpe
Mar 18, 2010 2:40 pm
I have a few questions; I have created a custom function and I tried adding it to qForms_init.js The first way I tried was to place my functions in a new file...
3986
Connie
cdecinko
May 11, 2010 11:32 pm
I've tried the various examples but have not been successful in coming up with a way to validateZipCode for US addresses and don't validate for non-US. The...
3987
meisaputra
Jul 19, 2011 6:03 am
thank to this post. i use this sample to replace validateSame which doesn't work. I don't know why. this is my previous script: function save_function() { ...
3988
meisaputra
Jul 19, 2011 10:02 am
thank you Dan. I'm sure it's because submit button is missing. -ms-...
3989
meisaputra
Jul 20, 2011 4:53 am
same problem. this is my testing page: http://demo.tadzkia.web.id/tester/jegal.php my problem is, after once error validation occure, the form cannot be submit...
3990
Dan G. Switzer, II
dswitzer2
Jul 20, 2011 1:16 pm
You're going to have issue any time you try to declare multiple qForm objects on the same form. The reason is because there are events attached to your <form...
3991
meisaputra
Jul 26, 2011 6:50 am
could you give me more specific sample code, Dan? Because, I'm beginner in javascript. I've debug using firebug and the trace process is fine. No error found....
3992
Connie
cdecinko
Nov 14, 2011 12:19 pm
I need to ensure a text field is filled in, but only if a checkbox is checked. Problem: When you first load the page, all works ok, check the box, again,...