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 ...
Jeff, ... If you're looking to do something in addition to validation during the validation routine, look into using the onValidate() event (in the ...
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...
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...
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...
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...
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...
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@...
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. ...
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...
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...
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....
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...
Hi Dean, Thanks for your time. Regardless of what is selected from the list, the output displayed in the EquipValue field is always [object HTMLSelectElement]....
If you combine what he said with what I said, you'll get working code: <form name="EquipmentForm"> <select name="SelEquip"> <cfoutput query="qryEquip"><option...
Unfortunately it still does not work. I stripped _everything_ out except what you folks gave me (and the API calls, of course), and still get either nothing or...
I almost wonder if you still have the form as a cfform, even though you've probably now done away with the cfselect and your using pure html from <selects>...
John, I just looked at the source of page. You need to remove this - onchange="objForm.EquipValue.setValue(this);" - from your <select> element. The code I...
Hi, I did remove that snip when I tried your solution. It was replaced when I was trying some other options. Thanks anyway. John John Gillett Technology...