I've tried to find something related to this in existing messages, but I'm not able to find it, so I'm hoping someone here can provide an answer. Here's the...
rorajoey, Here's the code I use to validate a to date is after the from date: function __isFutureDate(){ var d1 = new Date(objForm.fromDate.getValue()); var d2...
Hi, I am currently using qforms to validate that parts of my form are filled out, awesome script. But I was curious can it be used to validate that something...
... Sure is. If you'd like the validation to occur in line with the other validation rules utilize the onValidte method. function _customValidation(){ var x =...
Dan, Glad to see that you are back!!!!! _____ Jason Radosevich Terminal Fusion <http://www.terminalfusion.com> http://www.terminalfusion.com Help stop credit...
John, ... function _isValueEqualTo(sValue){ if( sValue != this.value ){ this.error = "The supplied value to the "+this.description+" field is incorrect."; } } ...
Hi Dan, Thank you for the reply, it seems that I am getting errors while trying to use this code: <SCRIPT SRC="https://www.domain.com/lib/qforms.js"></SCRIPT> ...
John, ... That line should be: objForm.agreement.validateValueEqualTo("I Agree");> Also, make sure your init() function is properly closed (i.e. has the ending...
Hi Dan, I am really sorry, but it just is not working. I made the changes as you suggested but I get a error in Internet Explorer (javascript) stating a...
The ">" shouldn't be on the line. Not sure why it got inserted. -Dan _____ From: qformsapi@yahoogroups.com [mailto:qformsapi@yahoogroups.com] On Behalf Of John...
This bug has also been a big problem for us. After looking through ... actually does serve a purpose, albeit not in a correct way. The result of parseFloat is...
objForm.agreement.validateValueEqualTo("I Agree");> _____ From: qformsapi@yahoogroups.com [mailto:qformsapi@yahoogroups.com] On Behalf Of John Michael Sent:...
Hi Dan, I took out that > at the end of that line as it was there in the code. But I am still getting the same error message, error on line 101 which is the...
Well, just browsing your code you are missing a } At the end of your script objForm.agreement.validateValueEqualTo("I Agree"); } <-- Missing that.. //--> ...
It happens to the best of us.. :-) _____ Jason Radosevich Terminal Fusion <http://www.terminalfusion.com> http://www.terminalfusion.com Help stop credit card...
I have seen several of these spam messages lately. Is there any way to ban the sends from this list? I thought you had to opt-in to receive messages from...
Works just fine for me in Firefox... try clearing your cache. :) *Brian Tafoya* briantafoya.com /"Taking over the planet one open source script at a time!"/ ...
I think you are on the right track, but instead of "if(!this.validateSSN()" I think that it should be "if(!this.isSSN()" since it should return a boolean...
... Why use the validateSSN() method at all? Really what I'd do is something like this: _addValidator( "isSSNGroup", function (sField2, sField3){ if( ...
What I ended up doing was was just using validateNumeric() for each field. I figured the validateSSN() was looking 9 numeric characters, so I could just...