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...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

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 3117 - 3151 of 3977   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
3117
I'm passing a value into a qForm field (County) which I want the user to see as a filled in text field, but not be able to edit. The following construction...
Bill Cody
wjcody@...
Send Email
Apr 7, 2005
2:13 am
3118
Store the value in a hidden field, either populate the disabled field with the value of the hidden field or just populate both with the same data. Fred T....
Fred T. Sanders
sandersfred
Offline Send Email
Apr 7, 2005
5:30 am
3119
... field with the ... Thanks much, Fred, although I'm a little disappointed. Was hoping not to have to create yet more variables to track. The form is ...
bcody7
Offline Send Email
Apr 7, 2005
11:35 am
3120
have you tried making the field readonly ? On Wed, 06 Apr 2005 22:16:34 -0400, Bill Cody wrote ... (ColdFusion) ... does ... Yahoo! Groups Links ... * Your use...
Jason Radosevich
j_abell
Offline Send Email
Apr 7, 2005
11:44 am
3121
Why not actually create a function to enable everything again when user click submit? It doesn't work? ... From: Bill Cody [mailto:wjcody@...] Sent:...
Wai Hing
ingeniur_77
Offline Send Email
Apr 7, 2005
11:48 am
3122
Why not try setting the field to readonly http://www.goask.net/faqs/html/how-do-i-make-a-form-field-read-only/ Javascript (qforms) should be able to write into...
Andy Brookfield
andy_brookfield
Online Now Send Email
Apr 7, 2005
11:51 am
3123
Jason, Wai Hing & Andy-- Doh! Setting the fields to readonly and removing all qForm related rules from these fields does exactly what I want the form to do. ...
bcody7
Offline Send Email
Apr 7, 2005
1:15 pm
3124
LOL, No prob.. I do the same thing sometimes.. :-D On Thu, 07 Apr 2005 13:15:19 -0000, bcody7 wrote ... Yahoo! Groups Links ... * Your use of Yahoo! Groups...
Jason Radosevich
j_abell
Offline Send Email
Apr 7, 2005
1:46 pm
3125
The problem occurs when checking a field with '59.0' in (without the quotes). parseFloat turns this into 59, and then the String() of that doesn't match the ...
Thomas Chiverton
tom.chiverton@...
Send Email
Apr 9, 2005
10:37 am
3126
The isNumeric() validation rejects "1.000" Here are the relevant lines: var i = parseFloat(this.value, 10); if( isNaN(i) || (String(i) != this.value) ) ...
Matthew Walker
matthew@...
Send Email
Apr 14, 2005
10:31 pm
3127
you need to think significant digits... in 1.000 the only thing significant is the 1 and nothing else. The functions should take this into consideration. ...
Michael T. Tangorre
crazyflash4
Offline Send Email
Apr 14, 2005
10:37 pm
3128
... I'm not sure what you mean about significant digits, and I've posted about this bug before. The validation is letting through 1.00001 and 1.10000 but not...
Thomas Chiverton
tom.chiverton@...
Send Email
Apr 15, 2005
8:49 am
3129
I've got a form that can be reused serveral times in one page. If the user fills it in and has an error, the background will change to red. At this point, if...
Marlon Moyer
marlonmoyer
Offline Send Email
Apr 15, 2005
6:50 pm
3130
The behavior of it not sending is the expected behavior. Disabled fields will not post. What you might want to try is to set up an onSubmit function and use...
Marlon Moyer
marlonmoyer
Offline Send Email
Apr 15, 2005
6:51 pm
3131
I've got a form that can be reused serveral times in one page. If the user fills it in and has an error, the background will change to red. At this point, if...
Marlon Moyer
marlonmoyer
Offline Send Email
Apr 15, 2005
6:52 pm
3132
I have a set of 10 checkboxes, all with the same name but different values, and want the user to check at least one but no more than five. I thought the...
bcody7
Offline Send Email
Apr 15, 2005
8:34 pm
3133
Thanks, Marlon. The solution turned out to be even simpler....I just needed to remove validation and set the fields I wanted not to be editable to "readonly."...
bcody7
Offline Send Email
Apr 15, 2005
8:38 pm
3134
I used this at one point in time for this, not sure if I wrote it or snagged it from somewhere. It has nothing really to do with qForms though, could be called...
Aaron Rouse
aaron_rouse
Offline Send Email
Apr 15, 2005
8:48 pm
3135
Hi Aaron-- Thanks for the routine. The one I'm using is listed below, which actually has min and max argumnets. What I want to do is write a general...
bcody7
Offline Send Email
Apr 16, 2005
1:26 pm
3136
I have tried a hundred different ways to get a custom validation function to work with no luck. The function definitely runs and if I insert code inside to...
fmahannah
Offline Send Email
Apr 16, 2005
8:16 pm
3137
I have just discovered the problem is if my function gets any arguments passed to it the function always passes validation. If I do not pass any arguments it...
fmahannah
Offline Send Email
Apr 16, 2005
8:29 pm
3138
Try adding a third argument, "true", to the _addValidator, like so: _addValidator("isMaxCheckBox", _f_isMaxCheckBox, true); Bill ... do ... the ... this.error ...
bcody7
Offline Send Email
Apr 17, 2005
12:39 am
3139
What I ended up doing was using throwerror in my function to get the error message to stay on the queue, no matter what I did with this.error it would not...
fmahannah
Offline Send Email
Apr 17, 2005
12:53 pm
3140
One other prospect. I was having the same problem getting this.error to work when passing parameters. Problem went away when I did two things: a) added true...
bcody7
Offline Send Email
Apr 17, 2005
1:13 pm
3141
Could you not use the validateAtLeastOne() method demonstrated at http://www.pengoworks.com/qforms/docs/examples/atLeastOne.htm? Dean ...
Dean Lawrence
deanmlaw
Offline Send Email
Apr 17, 2005
8:19 pm
3142
I ended up writing another function modeled on validateAtLeastOne(). Here's the function (remove line breaks): function _f_isMinMaxCheckBoxes(mm,nn){ var...
bcody7
Offline Send Email
Apr 18, 2005
11:36 am
3143
How is checkIfLocked(false); suppose to work?!! I am trying to suppress the message a user sees when they attempt to bring focus to a locked form element. ...
Michael T. Tangorre
crazyflash4
Offline Send Email
Apr 18, 2005
5:37 pm
3144
I am in need of the german translation file! I have translated, and have created a swedish translation file, which I have put in the files section. (since I...
Jonah
jonahstenlund
Offline Send Email
Apr 21, 2005
7:41 am
3145
Hello there, Try visiting this well listed Directory on Computers and Internet! ... Here is the link http://hi-fiweb.com/comp Hoping to learn a lot from other...
Anusha
anusha2505
Offline Send Email
Apr 23, 2005
1:19 pm
3151
Hey gang - I'm trying to use qforms to do a little weird email validation. The normal email validation works like a champ - but I also need to validate whether...
Scott
sweikert65
Offline Send Email
May 4, 2005
9:54 pm
Messages 3117 - 3151 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