Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

qformsapi · qForms API: qForums

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 324
  • Category: JavaScript
  • Founded: Feb 21, 2001
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Messages

Advanced
Messages Help
Messages 3805 - 3840 of 3992   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
3805 Fred T. Sanders
sandersfred Send Email
Apr 11, 2007
7:26 am
Looking at the dates I see what you mean, not sure why they all hit me yesterday....
3807 Edward A Savage Jr
sonnysavage Send Email
Apr 13, 2007
2:52 pm
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...
3811 Matt Williams
summitsites Send Email
Apr 16, 2007
4:28 pm
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. ...
3812 iamgimpin00 Send Email Apr 17, 2007
7:00 pm
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...
3815 screeny01 Send Email Apr 26, 2007
12:23 am
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...
3816 Dan G. Switzer, II
dswitzer2 Send Email
Apr 26, 2007
3:16 am
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...
3817 screeny01 Send Email Apr 26, 2007
11:40 am
... the manor ... really ... need to ... just ... fields based ... problem the ... format. ... Helps alot Dan, I assume you hide and show the fields with CSS?...
3818 screeny01 Send Email Apr 26, 2007
1:09 pm
I got it all figured out :) Thanks again for your time, Mike...
3819 Dan G. Switzer, II
dswitzer2 Send Email
Apr 26, 2007
2:08 pm
Mike, ... Glad to hear it! -Dan...
3820 Travis Walters
twalters84@... Send Email
Apr 27, 2007
5:53 pm
Greetings, My question is directly related to the following page: https://webdata.amkor.com/includes/qforms/docs/examples/containers.htm I have a similar...
3821 Dean Lawrence
deanmlaw Send Email
Apr 28, 2007
9:49 pm
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...
3822 Don Arnett
darnit78 Send Email
May 31, 2007
11:24 am
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...
3823 Don Arnett
darnit78 Send Email
May 31, 2007
11:24 am
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...
3824 Edward A Savage Jr
sonnysavage Send Email
May 31, 2007
1:42 pm
Have you tried referencing it like this? objForm.itemQuantity3.validateInteger() -or- objForm["itemQuantity3&quot;].validateInteger() Edward "Sonny" Savage ...
3825 Edward A Savage Jr
sonnysavage Send Email
May 31, 2007
1:44 pm
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...
3826 Don Arnett
darnit78 Send Email
May 31, 2007
2:30 pm
I doesn't happen on a specific field. After posting yesterday, I did a google on NS_ERROR_XPC_JS_THREW_ STRING and found the following page: ...
3827 Don Arnett
darnit78 Send Email
May 31, 2007
2:35 pm
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...
3828 Don Arnett
darnit78 Send Email
May 31, 2007
2:55 pm
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...
3829 Don Arnett
darnit78 Send Email
Jun 1, 2007
1:56 pm
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...
3830 Edward A Savage Jr
sonnysavage Send Email
Jun 1, 2007
2:56 pm
Hi Don, I would do it this way: 1) I would change the call like this: element.onchange = function() { updateItemCost(); }; 2) Inside the 'updateItemCost()'...
3831 Jeff Fleitz
jeff_fleitz Send Email
Jun 1, 2007
6:05 pm
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...
3832 Edward A Savage Jr
sonnysavage Send Email
Jun 1, 2007
8:20 pm
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...
3833 Jeff Fleitz
jeff_fleitz Send Email
Jun 1, 2007
8:38 pm
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...
3834 Edward A Savage Jr
sonnysavage Send Email
Jun 1, 2007
9:11 pm
Ouch... good luck with that... I normally would normally have that logic in my server-side code. Edward "Sonny" Savage http://savagefamily.pbwiki.com/ ... ...
3835 Dan G. Switzer, II
dswitzer2 Send Email
Jun 1, 2007
10:00 pm
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) ...
3836 Jeff Fleitz
jeff_fleitz Send Email
Jun 1, 2007
10:36 pm
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...
3837 Jeff Fleitz
jeff_fleitz Send Email
Jun 1, 2007
10:36 pm
That's what I was looking for. Thanks, Dan. ... -- v/r, Jeff Fleitz...
3838 Don Arnett
darnit78 Send Email
Jun 6, 2007
9:01 pm
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...
3839 Don Arnett
darnit78 Send Email
Jun 7, 2007
3:27 am
Is there a trick to setting radio or checkboxes to 'locked&#39;. I was able to set them to 'disabled&#39;, but would like to use 'locked&#39; if possible so they aren't...
3840 Dan G. Switzer, II
dswitzer2 Send Email
Jun 7, 2007
12:04 pm
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 ...
Messages 3805 - 3840 of 3992   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help