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 3905 - 3934 of 3977   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
3905
Hi all, Aim: To get version 2 to be able to validate xhtml Thanks to Dean and Aaron I have downloaded Tortoise. I don`t know if I need it though as I think I...
trevor bayliss
bayliss_trevor
Offline Send Email
Oct 6, 2007
6:11 pm
3906
Hi Trevor, I would suggest still using Tortoise to export a copy of the files so that you know that you have gotten everything. However, whichever way you...
Dean Lawrence
deanmlaw
Offline Send Email
Oct 7, 2007
9:23 pm
3907
Hi all, Thanks Dean 1. I got the v2 files downloaded via tortoise and installed them. I get an error, however, "error code 150 core validation". Why do I get...
bayliss_trevor
Offline Send Email
Oct 12, 2007
4:11 am
3908
UPDATE: 1. I got the v2 files downloaded via tortoise and installed them. I get an error, however, "error code 150 core validation". Why do I get that? ERROR...
bayliss_trevor
Offline Send Email
Oct 12, 2007
5:04 am
3909
... I would grab everything. Even if you are not using them in your script. They don't take up that much room on your site and they are not downloaded by the...
Dean Lawrence
deanmlaw
Offline Send Email
Oct 12, 2007
4:17 pm
3910
Hi Dean, 1.It seems to me that the whole lib is being loaded with the js? I am sure v2 is slower-maybe due to the size increase in folder lib? // set the path...
bayliss_trevor
Offline Send Email
Oct 12, 2007
7:36 pm
3911
... This is not actually loading all the libraries, only the field, function and validation libraries. You manually have to load the additional libraries. ... ...
Dean Lawrence
deanmlaw
Offline Send Email
Oct 12, 2007
8:49 pm
3912
I modified field.js Change line 163 to: if( lstExcludeFields.indexOf("," + aryFieldsChecked[j] + ",") == -1 ) setTimeout(this.qForm._pointer + "['" +...
fatmuisgod
Offline Send Email
Oct 29, 2007
4:24 pm
3913
Hello there, I'm taking a shot at setting up a custom validator for a site I'm working on, and it feels like I'm 99% there. Essentially, I've got a dynamically...
Matthew Dunphy
leviathant@...
Send Email
Oct 30, 2007
10:39 pm
3914
1) Should have used validateWhatever instead of isWhatever 2) Shouldn't have attached it to an item whose name gets used twice. Thanks for the great API :) -- ...
Matthew Dunphy
leviathant@...
Send Email
Oct 30, 2007
10:39 pm
3915
I know this is a simple question, but -- how do you actually send the combined values from multiple forms? I've looked at the example, but it simply dumps or...
Tom McNeer
tmcneer
Offline Send Email
Nov 10, 2007
12:16 am
3916
Hi Tom, You can't physically submit multiple forms, so what you could do is to take the wddx values and populate a single hidden field, submit it with your...
Dean Lawrence
deanmlaw
Offline Send Email
Nov 10, 2007
3:00 am
3917
Hi Dean, I had a feeling that's what I was going to hear. I know you can't submit both forms. Basically, I was hoping that since the qFormsAPI object already...
Tom McNeer
tmcneer
Offline Send Email
Nov 10, 2007
2:17 pm
3918
Tom, ... In the qforms folder, there's a wddx.js library file. Just include this in your qFormsAPI.include() calls. You can then do qFormsAPI.serialize() to ...
Dan G. Switzer, II
dswitzer2
Offline Send Email
Nov 11, 2007
11:01 pm
3919
Hi Dan, Thanks for stepping in. Yes, I'm aware of the serialize method, and since I'm using CF on the back end, reading the WDDX string is simple enough. ...
Tom McNeer
tmcneer
Offline Send Email
Nov 12, 2007
2:06 pm
3920
The _sic() function of the Function library has a bug in the "numeric" case. I believe the RegExp("\\d+", "gi") should be RegExp("[^0-9]+", "gi") because it...
adam.euans
Offline Send Email
Nov 19, 2007
3:08 am
3921
I am going to need to have a page that will allow the user to add rows for input. Each row will have the same form fields but their names will increment by...
Aaron Rouse
aaron_rouse
Offline Send Email
Dec 5, 2007
9:31 pm
3922
Use addField() oForm.addField('newFieldName'); oForm.newFieldName.required = true; ... From: Aaron Rouse <aaron.rouse@...> To: qformsapi@yahoogroups.com ...
Matt Williams
summitsites
Offline Send Email
Dec 5, 2007
9:35 pm
3923
doh! ... thanks, will give it a try once I get to creating the page ... -- Aaron Rouse http://www.happyhacker.com/...
Aaron Rouse
aaron_rouse
Offline Send Email
Dec 5, 2007
11:11 pm
3924
Right now what I'm trying to accomplish is to only validate a certain field - let's call it emailAddress - if a certain radio button is selected. Let's call...
less_than_kind
Offline Send Email
Jan 2, 2008
5:26 pm
3925
According to what I've experienced the validateEmail() should only throw an error if there was a value entered and it is not a valid email address. Making it...
Craig Arnett
craigarnett
Offline Send Email
Jan 2, 2008
6:05 pm
3926
The createDependencyTo would not work in this situation since selecting either of the Yes/No needEmail radio buttons would cause the emailAddress field to be...
Dean Lawrence
deanmlaw
Offline Send Email
Jan 2, 2008
7:43 pm
3927
hey dan was curious if you could use the calculation.plugin to do a sum of the results of a table colum? ...
Paul Ihrig
paul_ihrig
Offline Send Email
Jan 3, 2008
12:45 am
3928
Based on the documentation (http://www.pengoworks.com/qforms/docs/extension_fields.htm#createDependencyTo) I'd have to disagree with Dean. The JavaScript...
Edward A Savage Jr
sonnysavage
Offline Send Email
Jan 3, 2008
1:04 am
3929
Edward, You are indeed correct. That's what I get for trying to go off memory. Thanks for setting it straight. 8-) Dean ... -- ...
Dean Lawrence
deanmlaw
Offline Send Email
Jan 3, 2008
3:48 am
3930
It seems to be creating the dependency regardless of the value of needEmail - I can check the value using getValue() and it says the value is 1, but it is...
less_than_kind
Offline Send Email
Jan 3, 2008
7:45 pm
3931
1 is the same as "True" in javascript. So it sounds like its working as it should if not as you expected. Fred T. Sanders ... From: "less_than_kind"...
Fred T. Sanders
sandersfred
Offline Send Email
Jan 6, 2008
4:03 pm
3932
Is there a way to trigger the validation on a form without submitting it? I want to validate information before inserting it into a hidden table for later...
Aaron Rouse
aaron_rouse
Offline Send Email
Jan 16, 2008
7:59 pm
3933
Use the validate() method. -Dan _____ From: qformsapi@yahoogroups.com [mailto:qformsapi@yahoogroups.com] On Behalf Of Aaron Rouse Sent: Wednesday, January 16,...
Dan G. Switzer, II
dswitzer2
Offline Send Email
Jan 16, 2008
8:09 pm
3934
Dan, Thanks, I just read it now in the docs and was about to reply to here with a "nevermind" Aaron ... -- Aaron Rouse http://www.happyhacker.com/...
Aaron Rouse
aaron_rouse
Offline Send Email
Jan 16, 2008
8:10 pm
Messages 3905 - 3934 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