Hey gang - I'm trying to use qforms to do a little weird email validation. The normal email validation works like a champ - but I also need to validate whether...
Not sure if this is what you did or if this will fix the issue but this is a method I use. objForm.email.validateExp("formname.emailfield.value.indexOf ...
That's not quite working, at least not with the other code I've got, not in the way I want. I need it do BOTH checks - valid email or it starts with "NoEmail_"...
... and then ... verify that ... That page you linked to; one thing, the example given is with a set of checkboxes, not two different checks on the same field;...
Well I finally worked it out, in probably not the most elegant fashion, but it works :P I went down the obj.onValidate = _customValidation route, while in the ...
Hello, I hope this group message of mine finds the reader in good health and mood. I'm Anitha and this being my first post, I'll keep it short. You can find...
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...