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 2239 - 2268 of 3977   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2239
... Sorry for the long delay, I've been focused on other projects. I tried your new build, but it doesn't seem to work any different than before. Opera is...
seth_petry_johnson
seth_petry_j...
Offline Send Email
Aug 1, 2003
3:11 pm
2240
I'm trying to figure out why the following doesn't produce the same result. For example this doesn't work: var x = "0,1,2,3,4,5,6"; alert(x); ...
mrwirri
Offline Send Email
Aug 4, 2003
2:25 am
2241
Can anyone eyeball what I am doing wrong on this page: http://www.heinzconnect.com/hzc.cfm I am attempting to do a four related select...with guidance from ...
Eric
ehoffman73
Offline Send Email
Aug 4, 2003
2:27 am
2242
Well, I think it's got to do with your variable type that you are passing in. Your first example is passing in a single string as one argument. The second...
James Eberhardt
james_eberhardt
Offline Send Email
Aug 4, 2003
2:33 am
2243
Hi James, thanks for your quick response. I figured it has to do with the variable type. I've tried the following: var x = new Array(0,1,2); ...
mrwirri
Offline Send Email
Aug 4, 2003
3:02 am
2244
From your latest example, it looks as though you want to use a series of integers separated by commas, but there is no fixed number of integers in the string....
David Smart
smartware_co...
Offline Send Email
Aug 4, 2003
4:38 am
2245
Eric, ... I noticed some erroneous carriage returns in your JS that will cause errors. There seem to be unwanted carriage returns between the "// create a ...
Dan G. Switzer, II
dswitzer2
Offline Send Email
Aug 4, 2003
1:45 pm
2246
I have killed all the carriage returns.....but still getting hosed up...I will cut down the amount of data being returned if you could take another ...
Eric Hoffman
ehoffman73
Offline Send Email
Aug 4, 2003
2:14 pm
2247
Doh. Had a ) in a line and not (). Talk about needle in a haystack. Thanks anyway; GREAT API!!!! Regards, Eric J. Hoffman Technology Tamer DataStream...
Eric Hoffman
ehoffman73
Offline Send Email
Aug 4, 2003
2:21 pm
2248
Seth, ... It works on my build here. Are you sure your version of the _f_setValue() function looks like this (or at least the checkbox check?): } else if(...
Dan G. Switzer, II
dswitzer2
Offline Send Email
Aug 4, 2003
4:32 pm
2249
anyone have any thoughts on this??? I still have not figured it out. :-( Mike ... From: Michael T. Tangorre To: qformsapi@yahoogroups.com Sent: Thursday, July...
Michael T. Tangorre
tangormt
Offline Send Email
Aug 6, 2003
1:22 pm
2250
I have a unique req. Here is the description: I have one source select box with 20 options to transfer selected ones to 2 target select boxes simultaneously....
praveenbok
Offline Send Email
Aug 8, 2003
9:03 pm
2251
I'm new to qForms and I can't get this radio button dependency to work. For a simple test I brought it down to this. I require name and e-mail (and validate...
Matt Olson
buffmeat
Offline Send Email
Aug 11, 2003
2:36 pm
2252
Mike, ... You're problem is that the getValue() method is going to return a string. To correct this, either do: if(objForm.isMerge.getValue() == "1"){ - or - ...
Dan G. Switzer, II
dswitzer2
Offline Send Email
Aug 11, 2003
3:07 pm
2253
Matt, ... Can you share the code you're working on? Either that, or provide more in-depth details on what you're doing and what you've tried. - Dan...
Dan G. Switzer, II
dswitzer2
Offline Send Email
Aug 11, 2003
3:11 pm
2254
Matt, ... I'm assuming this is happening when you don't change the default value. This is because in order to get dependencies to run on the default values,...
Dan G. Switzer, II
dswitzer2
Offline Send Email
Aug 11, 2003
3:16 pm
2255
Here is some code from a four selects related...what I need to do is determine if the prices struct is blank...how do I check for that in Qforms? What we are...
Eric Hoffman
ehoffman73
Offline Send Email
Aug 11, 2003
3:55 pm
2256
Eric, ... Eric, this really isn't a qForms related issue, it's pure JavaScript. The most efficient way I know to detect whether a structure is empty would be...
Dan G. Switzer, II
dswitzer2
Offline Send Email
Aug 11, 2003
4:29 pm
2257
how would i make any 3 fields required, not all? // make these fields required :: only need any 3 to be required //objForm.required("MFG, DEVICE_DES, TAG_NO,...
Paul Ihrig
paul_ihrig
Offline Send Email
Aug 11, 2003
5:49 pm
2258
I'm new to qforms and I have a question on creating fields required and dependencies. I have a form where the user MUST answer questions 1-3. If they answer ...
Matt Olson
buffmeat
Offline Send Email
Aug 11, 2003
6:04 pm
2259
objForm.optional("MFG, DEVICE_DES, TAG_NO, DEVICE_ID, LOCATION"); how an i make 3 field required, but could be any of the 5 fields? there are no real...
Paul Ihrig
paul_ihrig
Offline Send Email
Aug 11, 2003
6:41 pm
2260
Paul, ... You'll need to create a custom validation method for this, or run a custom function on the form's onsubmit event. I recently posted a validation...
Dan G. Switzer, II
dswitzer2
Offline Send Email
Aug 11, 2003
6:42 pm
2261
thanks Dan.. works well on requiring 1 field. but i messed with all the 0's & 1's in your example & coouldnt get it to work for 3... did get it to do some...
Paul Ihrig
paul_ihrig
Offline Send Email
Aug 12, 2003
11:54 am
2262
i have messed with every 0 & 1 and am still not able to get 3 to work // [start] validation routine function _f_isAtLeastOne(_f){ var sFields = this.name +...
Paul Ihrig
paul_ihrig
Offline Send Email
Aug 12, 2003
6:06 pm
2263
ok.. getting closer.. but am still confused oForm.apple.validateAtLeastOne ("apple,orange,grape,banana,watermelon");...
Paul Ihrig
paul_ihrig
Offline Send Email
Aug 12, 2003
7:57 pm
2264
ok.. getting closer.. but am still confused so if i want any 3 of the 5 fields.. some thing like this?? oForm.apple.validateAtLeastOne("banana,watermelon"); ...
Paul Ihrig
paul_ihrig
Offline Send Email
Aug 12, 2003
7:59 pm
2265
Hello everyone, I am trying to do thew following and woudl like some opinions on the best way to do it... I have two multi select boxes (containers) called:...
Michael T. Tangorre
tangormt
Offline Send Email
Aug 13, 2003
11:53 am
2266
I need some advise, I've got to solve the following scenario and I can't get my head around it. I guess one could call it 3 select related with a twist :-) and...
mrwirri
Offline Send Email
Aug 13, 2003
12:25 pm
2267
This is what I have so far... if anyone knows of a way to make this easier or more straight forward (if that is possible), I am open for improvements. function...
Michael T. Tangorre
tangormt
Offline Send Email
Aug 13, 2003
1:19 pm
2268
ok got it to work by adding a ton of fields. so now it throws an error if 3 out of 5 fieelds are not selected. would like to consolodate the error messes, so...
Paul Ihrig
paul_ihrig
Offline Send Email
Aug 13, 2003
3:15 pm
Messages 2239 - 2268 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