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...
That worked fine. Thanks. I was trying to make it too complicated. Regarding my NS_ERROR_XPC_JS_THREW_STRING post: when I added the new fields using...
Just an FYI for anyone interested in this thread: I'm using javascript to create a new row in a table, create new cells for that row and then INPUT elements...
This is probably not qForms related, but haven't received any replies from JS-Jive nor found any clues elsewhere yet. I have some code that adds a new row of...
Hi Don, I would do it this way: 1) I would change the call like this: element.onchange = function() { updateItemCost(); }; 2) Inside the 'updateItemCost()'...
Is there a way to check for the existence of a single field object in qForms, other than using getFields() and looping through the results? Right now I am just...
I don't see a way to do that with qForm native functions. I do wonder however, if there isn't a better way to do it altogether. Why would you not know if a...
I inherited a very complex 12 page user registration form, which essentially posts to itself each step of the way, thus accumulating fields as it goes. Some...
Ouch... good luck with that... I normally would normally have that logic in my server-side code. Edward "Sonny" Savage http://savagefamily.pbwiki.com/ ... ...
Jeff, ... You should be able to do: oForm = new qForm("frmExample"); bExists = (!!oForm.fieldName); (the double bang just makes sure you've got a Boolean) ...
Well, most of it is in server side code (CF), but I am using button handlers to submit the form. The way it works out, I have to set reset some hidden fields...
Thanks. Didn't get around to trying this until today. When I tried: element.onchange = function() { updateItemCost(); }; this.name, nor this.id, nor this.xx...