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...
I didn't see this question being asked previously. I am using validateAtLeastOne in a conditional situation. I am able to add the requirement through a...
Looking for a little help on an error thrown only by IE. The form is part of a YUI tab screen, so the complication is deep. However, it all works in Firefox. ...
I'm trying to create a depedency on a state drop-down list. If the user selects "Other" then the "Other State" text field is enabled and required as well as...
Ok... yes, I am a newb to this, I just discovered layering and Qform. I have been mulling through Dan's pages and examples trying to figure this on my own...
Mike, ... Quite frankly those examples are pretty outdated. They written in the manor they are to show how you can merge separate form on a page. This was...
... the manor ... really ... need to ... just ... fields based ... problem the ... format. ... Helps alot Dan, I assume you hide and show the fields with CSS?...
Greetings, My question is directly related to the following page: https://webdata.amkor.com/includes/qforms/docs/examples/containers.htm I have a similar...
Travis Walters
twalters84@...
Apr 27, 2007 5:53 pm
3821
Travis, If I remember correctly, the second parameter tells the function to try and sort the values as they are transfered to the target field. So if you had...
I post this just in case it's something obvious that someone knows immediately how to correct. I'm new to qforms but have it set up to do validation on some...
First, so far I like qforms very much. Once I get it figured out, it'll save a lot of time writing javascript routines. So, my first question: I have a form...
Have you tried referencing it like this? objForm.itemQuantity3.validateInteger() -or- objForm["itemQuantity3"].validateInteger() Edward "Sonny" Savage ...
I've never seen this error, but I haven't been using FF 1.5 in quite some time either. Is there a specific field that always generates this error? Getting a...