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...
Is there a trick to setting radio or checkboxes to 'locked'. I was able to set them to 'disabled', but would like to use 'locked' if possible so they aren't...
Don, ... Quite frankly, the "locked" method was only introduced because NS4 had no "disabled" feature. I really haven't even looked or tested that code in a ...
Thanks for clearing up that scope stuff Dan. I will eventually commit this stuff to memory. Edward "Sonny" Savage http://savagefamily.pbwiki.com/ ... From:...
I've used the form disable() method to display a readonly copy of a form after it was submitted (redisplaying with submitted data). I simply called: ...
Hello, I have unlimited dynamically-related selects and started using qForms to populate them. My problem is that the 3rd dropdown will not populate. I...
If someone has time, go here: http://208.106.220.252/soundings/T8Report.cfm Select an evaluation. Then select some filters. Click view report. I'm trying to...
I get a javascript error Line 745 Error: 'objForm.Tier4' is null or not an object when I use the test 1 eval then bussiness Technologies, then Entertainment...
Jim, Thanks for having a look. I can straighten out that problem with some if statements. But my main issue is the selects will not retain the values after the...
Ok I want to understand. You are saying after the form is summited. it does use the variables that are entered? or that it does not display them on the page?...
I think you're using a function that is no longer recommended to use, and hasn't been updated in a while. Modern browsers support the "disabled" attribute of...
Sonny Thanks. At first I figured that the second 'obj' in your example was a typo, but I figured out why it wasn't. My next problem was that my code wasn't...