I have been having horrible issues with getting a lot of the validators to work in safari so I decided to see what I could do about fixing the problem. After a...
found some problems in IE with the function: after the line: var strFN = fn.toString(); you need the following: strFN = strFN.replace(/(\/\/)+.*/g,""); strFN =...
Sorry 1 more change just to make sure I only strip comments and not some other possible string containing "//". strFN = strFN.replace(/(\/\/)+.*/g,""); to ...
IE Version 6.0.2900.2180.xpsp_sp2_gdr.050301-1519 I am not sure if this has been addressed but when I use example simple 1 and change the code at the bottom to...
Hi all, I am trying to use a hidden form field called EditType to do a little custom validation when my form is submitted. I am adding the following code to...
Reggie, Are you explicitely including the validation_addon.js file at the top of the page? If you use the qFormAPI.include("*"); designation, only the field,...
Yes, I should have said that I am including the page with the following syntax, qFormAPI.include("validation_addon"); still no joy. ... top ... do ... the ... ...
I am trying to use a simple snippet of cutom validation but I am not getting my expected results. I am using ASP.NET. I have a hidden from field on my page...
I have multiple radio groups that are generated dynamically with CF. For instance, I have the following. <input type="radio" name="matchup_1" value="m1_1"> ...
Hi Nunya, You would simply build your validation list dynamically as well. So at the bottom of your form where you define all of your validation, you could...
I can't believe I can't figure this out. I have a form using qForms to validate simple rules. I want to make sure that the customer enters at least 6 chars in...
Greg, You can just use objForm.accountNumber.validateLengthGT(5). This will validate that the field is longer than 5 characters (6 or more). Dean ... -- ...
Thanks alot Dean. What am I doing wrong searching the documentation? I googled and read through as much of the field validation documentation. Greg ... will ...
Greg, Look at the Validation Methods Library under Core Extention Libraries at http://www.pengoworks.com/qforms/docs/. This will give you all the main...
All, My team has just started implementing a Plumtree portal and, of course, I want to be able to use qForms throughout. If you have access to a Plumtree...
How do you distinguish between two submit buttons (that each have different steps that need to be taken when validating) which reside within the same form? for...
What you'll need to do is use a button element instead of submit buttons. Each button should then call a function which invokes the necessary logic (i.e. the...
Dan, thanks for the response. I tried out what you said, but didn't have too much success, although I'm sure I'm missing something small on my end. When I used...
Doug, Make sure you don't have form element named "submit"--your old buttons used to be named that. As for TinyMCE, I've never used it. You'll need to figure...
I wish this form validation were easier to understand! I have a simple text field in which I want to validate that there are only 7 alphanumeric characters...
Dan, There are no form elements named "submit"...I double checked to make sure. I'm still having the same problems. Thanks for the tips on the tinyMCE, I'll be...
When reviewing my code I saw where I had an onSubmit() call (within my form tag), which was calling a script/function that no longer existed on that page......
Ok, very strange...I now have everything working great...even with the wysiwyg editor tinyMCE. I found that the problem was one of my text areas which was...
Greg, You should be using "validateLength()" instead of "isLength()". The "is" methods return a Boolean result. The "validate" methods actually attach a ...
Doug, ... As my last note indicated, ColdFusion does some special parsing to the form scope, looking for form fields that contain an underscore followed by a ...