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...
Want to share photos of your group with the world? Add a group photo to Flickr.

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 1781 - 1811 of 3977   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1781
Here is a suggestion. Can you include the navigation bar in the documentation at the top of the page also, instead of just at the bottom? OR Could you take and...
dsladdict <maloyk@...>
dsladdict
Offline Send Email
Mar 1, 2003
3:25 pm
1782
I'm currently looking in to a software packages to help make maintaining/writing the help documentation better. I'm aware the documentation could be much, much...
Dan G. Switzer, II
dswitzer2
Online Now Send Email
Mar 1, 2003
5:22 pm
1783
I am working on something for you now. As soon as I get it done. In about an hour, I will post it here. That is if you don't object. ... top of ... page ... ...
dsladdict <maloyk@...>
dsladdict
Offline Send Email
Mar 1, 2003
5:54 pm
1784
Why not use the upload file at groups.yahoo.com. That way users who don't have need for the download won't have to receive it. Either that or send it directly...
Dan G. Switzer, II
dswitzer2
Online Now Send Email
Mar 1, 2003
6:39 pm
1786
For some reason this code works: f2.value = f1.value; But this code does not: f2.setValue(f1.value); Aren't they both doing the same thing? -t...
Troy Murray
troymurray
Offline Send Email
Mar 4, 2003
3:40 pm
1787
you need to get the value first... f2.setValue(getValue(f1)) maybe?? ... From: Troy Murray [mailto:troymurray@...] Sent: Tuesday, March 04, 2003 10:40 AM...
Tangorre, Michael
tangormt
Offline Send Email
Mar 4, 2003
3:41 pm
1788
As per always, send complete code to the list. with that said f2.setValue(f1.getValue()); ============================================================ From:...
m.lesko@...
orangepips
Offline Send Email
Mar 4, 2003
3:43 pm
1789
Nope, that didn't seem to do it either. What I need to do is this, if the user selects a value from the drop-down box, and another field is blank then the...
Troy Murray
troymurray
Offline Send Email
Mar 4, 2003
4:27 pm
1790
Troy, First, I'm assuming that "f2" and "f1" are qForm "Field" objects. In which case, the correct syntax would be: f2.setValue(f1.getValue()); When creating...
Dan G. Switzer, II
dswitzer2
Online Now Send Email
Mar 4, 2003
4:31 pm
1791
Troy, This should work: function setSameIfBlank(f1, f2) { alert(f1.lastValue); if (f1.lastValue == f2.getValue()) { f2.setValue(f1.getValue()); } if...
Dan G. Switzer, II
dswitzer2
Online Now Send Email
Mar 4, 2003
4:36 pm
1792
Dan, Thanks for both responses. That first response was over my head, but I'm trying to read it and understand it. The second response, with the code, works...
Troy Murray
troymurray
Offline Send Email
Mar 4, 2003
4:51 pm
1793
... Try this doing this instead, change the select tag to: <select name="DistrictSuperintendentID" id="DistrictSuperintendentID" size="1" ...
Dan G. Switzer, II
dswitzer2
Online Now Send Email
Mar 4, 2003
5:06 pm
1794
Dan, Nope, that didn't do it either, calling the function twice. It's very strange because it works the first time but not after that. If I setup three alert...
Troy Murray
troymurray
Offline Send Email
Mar 4, 2003
5:16 pm
1795
What's your "DistrictAttentionToId" element look like (i.e. the HTML code?) -Dan...
Dan G. Switzer, II
dswitzer2
Online Now Send Email
Mar 4, 2003
5:19 pm
1796
Dan, Both are select lists. Here is the page, minus the JavaScript includes and css. -t ... From: Dan G. Switzer, II [mailto:dswitzer@...] Sent:...
Troy Murray
troymurray
Offline Send Email
Mar 4, 2003
5:23 pm
1797
example.html (attached) will work. Won't get into the gory details. ============================================================ From: "Troy Murray"...
m.lesko@...
orangepips
Offline Send Email
Mar 4, 2003
7:27 pm
1798
Perfect, that works just the way I need it, thanks m! -t ... From: m.lesko@... [mailto:m.lesko@...] Sent: Tuesday, March 04, 2003 2:27 PM To:...
Troy Murray
troymurray
Offline Send Email
Mar 4, 2003
7:36 pm
1799
Hi, I'm having loads of problems doing what should be a really straightforward validation check: making sure a checkbox is checked (this is a form where people...
Gyrus
gyrusto
Offline Send Email
Mar 4, 2003
8:30 pm
1800
Gyrus, You're actually making it more difficult then it is. When thinking about validation w/qForms, don't think so much about the way JS handles the DOM ...
Dan G. Switzer, II
dswitzer2
Online Now Send Email
Mar 4, 2003
8:45 pm
1801
Thanks, I never knew that qForms operated from the POV of the server, not the client. Very confusing! But all working now... Gyrus gyrus@... ...
Gyrus
gyrusto
Offline Send Email
Mar 4, 2003
10:52 pm
1802
I took that approach to try to simplify things for people w/no JS background. I wanted to try to have the API function the way you might expect to see the...
Dan G. Switzer, II
dswitzer2
Online Now Send Email
Mar 5, 2003
12:07 am
1803
Hello, This strange problem occurs for all fields when I try to make the field required. The problem is this : If you enter a string which consists only of the...
rajnish1180
Offline Send Email
Mar 5, 2003
9:32 am
1804
forget it the latest build fixes the bug (RegExp("^\\s+", qFormAPI.reAttribs) there was only one backslash!!) ... the ... you...
rajnish1180
Offline Send Email
Mar 5, 2003
9:52 am
1805
Yeah, sorry about the original bug. I was going back and forth between a number of different syntaxes trying to fix some Mac RegEx problems, and when I...
Dan G. Switzer, II
dswitzer2
Online Now Send Email
Mar 5, 2003
2:28 pm
1806
I have a form where fields A and B are required if field C is not equal to a particular value, and they are ignored (the server discards any value in those...
Lari Kirby
laripk
Online Now Send Email
Mar 5, 2003
3:50 pm
1807
Lari, The validation methods should only run if A & B are required and contain a value. The dependency rule should be declaring the fields as optional when the...
Dan G. Switzer, II
dswitzer2
Online Now Send Email
Mar 5, 2003
5:16 pm
1808
I'm not sure I understand how to use the onSetValue() method properly. The qForms documentation states, "Use this function to define a custom function to run...
Eric A. Laney
elaney
Offline Send Email
Mar 6, 2003
3:15 pm
1809
Eric, ... What? Are you saying that's not superbly written documentation? It is a bit vague, isn't it. ;) ... You can't do that, but you could do: ...
Dan G. Switzer, II
dswitzer2
Online Now Send Email
Mar 6, 2003
5:09 pm
1810
I am trying to use the qForm WDDX javascript functionality to 'export' my multi-layer form variables to php via a hidden variable. The hidden variabele is...
Rene Nederhand
nederhrj
Offline Send Email
Mar 13, 2003
1:48 am
1811
Rene, Unfortunately I've had no experience w/the PHP WDDX implementation. It's possible that it is my JS-to-WDDX conversion. The wddx.js file that's included...
Dan G. Switzer, II
dswitzer2
Online Now Send Email
Mar 13, 2003
3:15 am
Messages 1781 - 1811 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