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 3235 - 3266 of 3977   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
3235
Hi, I am trying to get 4 related select boxes to work and I cannot seem to get any more than the first 2 boxes populated. Here is a snippet of my code that I...
mcshane_andy
Offline Send Email
Aug 2, 2005
8:09 am
3236
Andy, You're almost there. 1) Remove that </cfstoredproc> line. You probably just missed that when cutting and pasting, but it shouldn't be there. 2) Remove...
Dan G. Switzer, II
dswitzer2
Online Now Send Email
Aug 2, 2005
9:54 pm
3237
Hi there; I just wanted to see if anyone has considered doing any work to port qForms over to a Flash ActionScript implementation. I think it would be a great...
James Eberhardt
james_eberhardt
Offline Send Email
Aug 2, 2005
10:31 pm
3238
James, I had talk to Allaire (yes, Allaire, not MACR) about doing something like that. The problem is, writing the HTML version takes up enough of my free time...
Dan G. Switzer, II
dswitzer2
Online Now Send Email
Aug 3, 2005
12:51 am
3239
Hi Andy, I was playing around multiple related select boxes and i found a small problem as well. Overall works ok. Anyway, I implement something more complex...
Radu Calauz
radu_calauz
Offline Send Email
Aug 3, 2005
8:59 am
3240
Thanks for all your help guy's, Dan you are spot on and I am finally up and running, very much appreciated. :-) ... small ... related_selectboxes.htm ... ...
mcshane_andy
Offline Send Email
Aug 3, 2005
9:16 am
3241
Just one more quick question, how do you get rid of the first blank entry in the select boxes? For example I want to set the size to 5 but I always get a blank...
mcshane_andy
Offline Send Email
Aug 3, 2005
10:19 am
3242
Andy, ... No problem! - Dan...
Dan G. Switzer, II
dswitzer2
Online Now Send Email
Aug 3, 2005
12:39 pm
3243
Radu, ... You're right--you definitely want to clear the other checkboxes. I tend to try to make the examples as simple as possible--highlighting the core ...
Dan G. Switzer, II
dswitzer2
Online Now Send Email
Aug 3, 2005
12:39 pm
3244
Andy, ... If you don't want the blank entries, change you lines from: objForm.Country.populate(stcTeams[objForm.Region.getValue()], null, null, stcBlank); To: ...
Dan G. Switzer, II
dswitzer2
Online Now Send Email
Aug 3, 2005
12:41 pm
3245
James, If you're interested in working on this, contact me off list. One of the things I was trying to do was break down the v2 to make it a little more ...
Dan G. Switzer, II
dswitzer2
Online Now Send Email
Aug 3, 2005
12:45 pm
3246
Hi, I am trying to validate my site using the http://validator.w3.org <http://validator.w3.org/> . the only problem is that Name is deprecated in XHTML, and...
Jason Radosevich
j_abell
Offline Send Email
Aug 6, 2005
5:16 am
3247
Jason, Version 2.0 supports using the ID instead of name attribute. You check out the source code at qforms.tigris.org and rip the code in 2.0 to use in v1. ...
Dan G. Switzer, II
dswitzer2
Online Now Send Email
Aug 6, 2005
11:28 am
3248
Sweet, thanx.. :-) _____ Jason Radosevich Terminal Fusion <http://www.terminalfusion.com> http://www.terminalfusion.com My Blog...
Jason Radosevich
j_abell
Offline Send Email
Aug 6, 2005
1:35 pm
3249
I apologize if this has already been discussed. I searched in the messages and found some discussion on RegEx issues in the _stripInvalidChars function, but I...
Tracy Treadway
tracy_tread
Offline Send Email
Aug 9, 2005
4:13 pm
3250
Tracy, Are you running the latest build, if not what version are you running? -Dan...
Dan G. Switzer, II
dswitzer2
Online Now Send Email
Aug 9, 2005
5:23 pm
3251
Hi Dan, qForm JSAPI: Validation Library Author: Dan G. Switzer, II Build: 113 ... __________________________________________________ Do You Yahoo!? Tired of...
Tracy Treadway
tracy_tread
Offline Send Email
Aug 9, 2005
5:56 pm
3252
What's the build number in the qforms.js file? -Dan...
Dan G. Switzer, II
dswitzer2
Online Now Send Email
Aug 9, 2005
6:33 pm
3253
Date: December 10, 2000 Build: 139 I inherited this application, and I don't know when qForms was added, but December 2000 seems pretty old. ... ...
Tracy Treadway
tracy_tread
Offline Send Email
Aug 9, 2005
8:30 pm
3254
Change the _stripInvalidChars() function in the functions_js12.js to: function _stripInvalidChars(_s, _t){ var s = _param(arguments[0]); var t =...
Dan G. Switzer, II
dswitzer2
Online Now Send Email
Aug 9, 2005
8:58 pm
3255
Thank you! That did it. objForm.SocialSecurityNumber.validateFormat("SSN"); Now the user can type 9 characters with or without the dashes and qForms will add...
Tracy Treadway
tracy_tread
Offline Send Email
Aug 10, 2005
1:03 pm
3257
I went out to PengoWorks.com http://www.pengoworks.com/workshop/...x.cfm#downloads and downloaded their N-Selects Related code. The code works great and my...
j28brown
Offline Send Email
Aug 22, 2005
5:29 pm
3258
Apparently I posted the wrong link to PengoWorks. Here is the correct link. http://www.pengoworks.com/workshop/js/gateway/index.cfm#downloads...
j28brown
Offline Send Email
Aug 22, 2005
5:34 pm
3259
Hi guys, I tried to use qForms last night for the first time. When I tried using validateNumeric() on the value 149.00, the validation failed and generated and...
Rey Bango
rey@...
Send Email
Aug 23, 2005
2:45 pm
3260
Rey, I'm using a custom function for this validation, (add to: custom_validation.js) function _Field_isNumericFloat() { var ValidChars = "01213456789."; var...
Radu Calauz
radu_calauz
Offline Send Email
Aug 23, 2005
5:55 pm
3261
Radu, Thank you very much for you code. I really appreciate that. I also found some other code that does currency validation so both of these snippers will...
Rey Bango
reybango
Offline Send Email
Aug 23, 2005
6:14 pm
3263
Perhaps the problem lies within the following 3 code snippets? // define Gateway create(); prototype Gateway.prototype.create = function(){ this.width =...
j28brown
Offline Send Email
Aug 29, 2005
4:57 pm
3264
The problem is with selectedIndex call. When you increase the size of the box a value isn't selected by default, which means the selectedIndex returns -1...
Dan G. Switzer, II
dswitzer2
Online Now Send Email
Aug 30, 2005
7:29 pm
3265
Hello - I am having a problem using some of the qForms functionality in Safari 1.3 on OS X. Its working perfectly in all other browsers / versions except...
stacey51201
Offline Send Email
Aug 30, 2005
9:23 pm
3266
Sorry it does NOT give an error - it just bypasses those 2 items all together. Just a clarification! Any help would be greatly appreciated! ... having ... ...
stacey51201
Offline Send Email
Aug 31, 2005
3:41 am
Messages 3235 - 3266 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