Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

qformsapi · qForms API: qForums

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 324
  • Category: JavaScript
  • Founded: Feb 21, 2001
  • Language: English
? 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.

Messages

Advanced
Messages Help
Messages 3111 - 3140 of 3992   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
3111 Michael T. Tangorre
crazyflash4 Send Email
Mar 2, 2005
10:49 pm
... 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...
3112 Dan O'Keefe
djokeefe_2001 Send Email
Mar 8, 2005
4:23 pm
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...
3113 barb464n Send Email Mar 21, 2005
3:18 pm
I found this url surfing, http://blogs.ardice.com But can someone explain to me what a blog is? - Barb464n...
3114 Jesse McPherson
jesse_mcpherson Send Email
Mar 21, 2005
7:29 pm
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? ...
3115 Jason Radosevich
j_abell Send Email
Mar 21, 2005
11:02 pm
This message is spam.. Have the same message, but all different usernames.. _____ Jason Radosevich Terminal Fusion <http://www.terminalfusion.com> ...
3116 damn_yankee_4 Send Email Mar 31, 2005
2:02 am
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. ...
3117 Bill Cody
wjcody@... Send Email
Apr 7, 2005
2:13 am
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...
3118 Fred T. Sanders
sandersfred Send Email
Apr 7, 2005
5:30 am
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....
3119 bcody7 Send Email Apr 7, 2005
11:35 am
... 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 ...
3120 Jason Radosevich
j_abell Send Email
Apr 7, 2005
11:44 am
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...
3121 Wai Hing
ingeniur_77 Send Email
Apr 7, 2005
11:48 am
Why not actually create a function to enable everything again when user click submit? It doesn't work? ... From: Bill Cody [mailto:wjcody@...] Sent:...
3122 Andy Brookfield
andy_brookfield Send Email
Apr 7, 2005
11:51 am
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...
3123 bcody7 Send Email Apr 7, 2005
1:15 pm
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. ...
3124 Jason Radosevich
j_abell Send Email
Apr 7, 2005
1:46 pm
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...
3125 Thomas Chiverton
tom.chiverton@... Send Email
Apr 9, 2005
10:37 am
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 ...
3126 Matthew Walker
matthew@... Send Email
Apr 14, 2005
10:31 pm
The isNumeric() validation rejects "1.000" Here are the relevant lines: var i = parseFloat(this.value, 10); if( isNaN(i) || (String(i) != this.value) ) ...
3127 Michael T. Tangorre
crazyflash4 Send Email
Apr 14, 2005
10:37 pm
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. ...
3128 Thomas Chiverton
tom.chiverton@... Send Email
Apr 15, 2005
8:49 am
... 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...
3129 Marlon Moyer
marlonmoyer Send Email
Apr 15, 2005
6:50 pm
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...
3130 Marlon Moyer
marlonmoyer Send Email
Apr 15, 2005
6:51 pm
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...
3131 Marlon Moyer
marlonmoyer Send Email
Apr 15, 2005
6:52 pm
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...
3132 bcody7 Send Email Apr 15, 2005
8:34 pm
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...
3133 bcody7 Send Email Apr 15, 2005
8:38 pm
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."...
3134 Aaron Rouse
aaron_rouse Send Email
Apr 15, 2005
8:48 pm
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...
3135 bcody7 Send Email Apr 16, 2005
1:26 pm
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...
3136 fmahannah Send Email Apr 16, 2005
8:16 pm
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...
3137 fmahannah Send Email Apr 16, 2005
8:29 pm
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...
3138 bcody7 Send Email Apr 17, 2005
12:39 am
Try adding a third argument, "true", to the _addValidator, like so: _addValidator("isMaxCheckBox", _f_isMaxCheckBox, true); Bill ... do ... the ... this.error ...
3139 fmahannah Send Email Apr 17, 2005
12:53 pm
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...
3140 bcody7 Send Email Apr 17, 2005
1:13 pm
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...
Messages 3111 - 3140 of 3992   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

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