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...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

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 3110 - 3139 of 3977   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
3110
I would like to validate the size of an image to a particular size before submitting a form. I already have javascript code that will do this, however I am...
feedmesoup
Online Now Send Email
Mar 2, 2005
6:38 pm
3111
... What you need to do is create function that you attach to the qforms onValidate method. Check the docs if you need more info but the basic implementation...
Michael T. Tangorre
crazyflash4
Offline Send Email
Mar 2, 2005
10:49 pm
3112
Any other gmailers here, like the abilty to select a range of checkboxes by holding down the shift key. Any one know how to do that with javascript? ... Dan...
Dan O'Keefe
djokeefe_2001
Offline Send Email
Mar 8, 2005
4:23 pm
3113
I found this url surfing, http://blogs.ardice.com But can someone explain to me what a blog is? - Barb464n...
barb464n
Offline Send Email
Mar 21, 2005
3:18 pm
3114
This was also posted in the WDF-DOM group, same exact posting, They answered your question there, even though it is extremely off topic, so why post it here? ...
Jesse McPherson
jesse_mcpherson
Offline Send Email
Mar 21, 2005
7:29 pm
3115
This message is spam.. Have the same message, but all different usernames.. _____ Jason Radosevich Terminal Fusion <http://www.terminalfusion.com> ...
Jason Radosevich
j_abell
Offline Send Email
Mar 21, 2005
11:02 pm
3116
My Form has of course a phone number text field. Then if I read your docs correct I am using the following script to check if they are correct. ...
damn_yankee_4
Offline Send Email
Mar 31, 2005
2:02 am
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
Messages 3110 - 3139 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