Angus, I don't know that using the dots is going to be possible. It seems like there is something else that breaks server side with CF and maybe ASP too, but...
Here is the fix I came up with. Just replace the current stripInvalidChars function in the functions_js12.js file. function _stripInvalidChars(_s, _t){ var s =...
Angus, What is the error message you are getting. We have an internal application that uses dot notation and it works just fine. Are you sure it's not another...
Yes, turned out be casing. Grrrr! objForm["leftSide.rightSize"] references the field object just fine. Thanks again. Cheers Angus ... From: Carabetta...
Angus Johnson
ajohnson@...
Dec 2, 2004 5:08 am
3054
Hi all please help me on this. Our form haves 2 fields: Age1: greater than 18 years Age2: greater than Age1 and lower than 80 years. How to do that using...
What have you tried so far? Are you fishing for somebody to write this for you, or have you given it a try, it's really not that heard, a bit of reading and...
Thanx so BK using this script objForm.agemin.isRange(15,90)="Enter your age in range 15 to 90"; give me an error... What parameters need to inform? Thanx ... ...
I think you will have better luck if you do this: objForm.agemin.isRange(15,90); objForm.agemin.description="Enter your age in range 15 to 90"; Give that a try...
By now works fine.... Please look: objForm.agemin.validateRange(15, 80); objForm.agemax.validateRange(15, 80); User need to enter in agemax field values...
From what it sounds like your doing you can do one of two things you can write a custom validator, or much faster and simpler IMO, would be to just create a...
Hi, I just started using qforms, it's great. I have people register by filling out a form and then enter the fields into a DB. Looking through the records of...
Mr. Burns, Are you using the latest build of qForms? I use the validateEmail(), I guess I need to check that too. Should not be too hard to fix if there is a...
Mr. Burns, That is very weird. I've not had a chance to play with it yet. I'm in the middle of moving some people out of my house. I'll try and look at it...
I have never gotten this working properly. If my directory structure is: +-- root ... +-- orders --- placeorder.html ... +-- qforms And I want to use qforms in...
Richard Colman
colman@...
Dec 6, 2004 11:50 pm
3065
<SCRIPT SRC="qforms.js"></SCRIPT> <SCRIPT LANGUAGE="JavaScript"> // set the path to the qForms directory qFormAPI.setLibraryPath(".); <--------------- Error...
I have a page that works fine on server A. I moved it to server B, and get the following error message attempting to validate a required field through ... ...
Richard Colman
colman@...
Dec 8, 2004 5:21 am
3067
objForm._skipValidation=true was the solution to my problem of having multiple submit buttons, yet one button that would bascially close the form. Thanks MAD...
I have a form with three submit buttons. I also have some required fields. The buttons are: [Save and New] [Save and Close] [Close] These buttons are pretty...
Hi All, Just created a custom function to check the length of a filename when using <input type="file" />. Any comments/suggestions/fixes you could offer...
Hi, I have a simple form with fields, username and password If I hit submit, the validation part works, and it highlights my form elements, this part is fine. ...
Hi, After the closing </form> tag I have: <script language="JavaScript"> objForm = new qForm("frmData"); objForm.username.focus(); objForm.required("username,...
Does anyone know the correct syntax to use in a custom function to reset a selective fields background back to it's default color after failing validation? The...
Hello, I have 2 questions. First is on validateNumeric. I have found that any number with a trailing zero causes qForms to think its NOT valid. So for...
Greetings All: I get the concept of validating at least one with 'checkboxes' where there is only one value, but how would I go about this with radio buttons? ...
Greetings: I have a number of 'submit' buttons on my page. 1 is for a file upload and the other is for final form submission. Having read some of the posts, I...