Search the web
Sign In
New User? Sign Up
qformsapi · qForms API: qForums
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 3803 - 3838 of 3977   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
3803
Subject says it all. :) Dan SAVE US!!...
Fred T. Sanders
sandersfred
Offline Send Email
Apr 11, 2007
2:07 am
3804
Fred, ... I don't see anything that I haven't already cleared up....
Dan G. Switzer, II
dswitzer2
Online Now Send Email
Apr 11, 2007
2:14 am
3805
Looking at the dates I see what you mean, not sure why they all hit me yesterday....
Fred T. Sanders
sandersfred
Offline Send Email
Apr 11, 2007
7:26 am
3807
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...
Edward A Savage Jr
sonnysavage
Offline Send Email
Apr 13, 2007
2:52 pm
3811
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. ...
Matt Williams
summitsites
Offline Send Email
Apr 16, 2007
4:28 pm
3812
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...
iamgimpin00
Offline Send Email
Apr 17, 2007
7:00 pm
3815
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...
screeny01
Offline Send Email
Apr 26, 2007
12:23 am
3816
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...
Dan G. Switzer, II
dswitzer2
Online Now Send Email
Apr 26, 2007
3:16 am
3817
... the manor ... really ... need to ... just ... fields based ... problem the ... format. ... Helps alot Dan, I assume you hide and show the fields with CSS?...
screeny01
Offline Send Email
Apr 26, 2007
11:40 am
3818
I got it all figured out :) Thanks again for your time, Mike...
screeny01
Offline Send Email
Apr 26, 2007
1:09 pm
3819
Mike, ... Glad to hear it! -Dan...
Dan G. Switzer, II
dswitzer2
Online Now Send Email
Apr 26, 2007
2:08 pm
3820
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@...
Send Email
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...
Dean Lawrence
deanmlaw
Offline Send Email
Apr 28, 2007
9:49 pm
3822
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...
Don Arnett
darnit78
Offline Send Email
May 31, 2007
11:24 am
3823
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...
Don Arnett
darnit78
Offline Send Email
May 31, 2007
11:24 am
3824
Have you tried referencing it like this? objForm.itemQuantity3.validateInteger() -or- objForm["itemQuantity3"].validateInteger() Edward "Sonny" Savage ...
Edward A Savage Jr
sonnysavage
Offline Send Email
May 31, 2007
1:42 pm
3825
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...
Edward A Savage Jr
sonnysavage
Offline Send Email
May 31, 2007
1:44 pm
3826
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: ...
Don Arnett
darnit78
Offline Send Email
May 31, 2007
2:30 pm
3827
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...
Don Arnett
darnit78
Offline Send Email
May 31, 2007
2:35 pm
3828
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...
Don Arnett
darnit78
Offline Send Email
May 31, 2007
2:55 pm
3829
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...
Don Arnett
darnit78
Offline Send Email
Jun 1, 2007
1:56 pm
3830
Hi Don, I would do it this way: 1) I would change the call like this: element.onchange = function() { updateItemCost(); }; 2) Inside the 'updateItemCost()'...
Edward A Savage Jr
sonnysavage
Offline Send Email
Jun 1, 2007
2:56 pm
3831
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...
Jeff Fleitz
jeff_fleitz
Offline Send Email
Jun 1, 2007
6:05 pm
3832
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...
Edward A Savage Jr
sonnysavage
Offline Send Email
Jun 1, 2007
8:20 pm
3833
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...
Jeff Fleitz
jeff_fleitz
Offline Send Email
Jun 1, 2007
8:38 pm
3834
Ouch... good luck with that... I normally would normally have that logic in my server-side code. Edward "Sonny" Savage http://savagefamily.pbwiki.com/ ... ...
Edward A Savage Jr
sonnysavage
Offline Send Email
Jun 1, 2007
9:11 pm
3835
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) ...
Dan G. Switzer, II
dswitzer2
Online Now Send Email
Jun 1, 2007
10:00 pm
3836
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...
Jeff Fleitz
jeff_fleitz
Offline Send Email
Jun 1, 2007
10:36 pm
3837
That's what I was looking for. Thanks, Dan. ... -- v/r, Jeff Fleitz...
Jeff Fleitz
jeff_fleitz
Offline Send Email
Jun 1, 2007
10:36 pm
3838
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...
Don Arnett
darnit78
Offline Send Email
Jun 6, 2007
9:01 pm
Messages 3803 - 3838 of 3977   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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