I'm using Mathew Frank's validation.js file and it works great when I use an INPUT TYPE=SUBMIT to submit the form. I can't get it to work correctly though if...
john_tarr@...
Feb 9, 2001 9:00 pm
79
More info... I want to have three BUTTONs (Add, Update and Delete). When each of these are clicked I need to set the value of the hidden field, with the...
john_tarr@...
Feb 9, 2001 10:03 pm
80
Found a strange little workaround.... 1) Use SUBMIT buttons instead of BUTTONS 2) Add DoMode(), to set values, to onClick event of the SUBMIT buttons 3) Add...
john_tarr@...
Feb 9, 2001 11:29 pm
81
a recommendation i always make to people is to make use of the built- in functionality of the browser whenever possible. rather than setting a form value when...
bigjuju@...
Feb 12, 2001 12:46 am
82
John, This was also my problem before... having the type=BUTTON to submit. bigjuju is right... i also do the same thing. ATM ... From: bigjuju@......
Ariel Martinez
ariel@...
Feb 12, 2001 1:32 am
83
There are times that using a SUBMIT button is difficult though. For instance I would like to use the standard images for HOME, UPDATE and DELETE. I tried...
john_tarr@...
Feb 12, 2001 3:52 pm
84
Here's a way to use BUTTONs that seems to work (For example if you wanted to use IE-like buttons for ADD, UPDATE and DELETE). I know it's kinda strange but......
john_tarr@...
Feb 12, 2001 8:40 pm
85
The HTML 4 BUTTON element supports HTML content, including images: <button type="submit"><img ... /></button> Netscape 4 won't recognize it, but IE4+ will. It...
bigjuju@...
Feb 16, 2001 4:18 am
86
Does anyone know how to limit the size of a textarea field? I found an article that will do it with IE5, but I'm looking for a way to do it for IE4 as well....
tad.osborn@...
Feb 21, 2001 6:19 pm
87
you can try to do something similar by chopping the length down to X onchange and blocking further input onkeypress once X is reached. ... From:...
Matthew Frank
bigjuju@...
Feb 22, 2001 12:39 am
88
Hi! My name is Liz Fretz. I am the Vice President and Director of Compliance for QualityWare, Inc. We are a consulting firm that specializes in software...
efretz@...
Feb 22, 2001 2:57 pm
89
Does anyone know how to vailidate a numeric range? The closest thing I can find is a regular expression to specify 3 digits. I'm trying to vaildiate an ip...
I think I figured it out.... Using Matthew's script... regexp='^(\d{1,2}$)|(([1])(\d{2}))|([2])([0-5][0-4])' Thanks. ... From: tad.osborn@......
Tad.Osborn (Exchange)
tad.osborn@...
Feb 26, 2001 4:20 pm
92
Oops, I forgot to allow the ending digit to end in 0-9 if between 200 and 240. regexp='^(\d{1,2}$)|(([1])(\d{2}))|([2])([0-5][0-4])|([2])([0-5][0-9])' ... ...
Tad.Osborn (Exchange)
tad.osborn@...
Feb 26, 2001 5:23 pm
93
the one i sent should validate an entire IP address in one text field. if you're breaking the separate pieces of the address into four fields, you can try the...
Matthew Frank
bigjuju@...
Feb 26, 2001 5:50 pm
94
I am trying to use this for a project at work that I thought would be a good fit. I want to validate various fields on a two page form and then simply write...
maxons@...
Mar 1, 2001 2:37 pm
95
That is what the purpose of the validation script is...except for writing out to a text file. Do you need help with the implementation of the script, help...
Tad.Osborn (Exchange)
tad.osborn@...
Mar 1, 2001 9:24 pm
96
I guess I am having problems in how to implement the script. Can I fairly easily add my own edits to this to check for various things in text fields? Can I...
maxons@...
Mar 2, 2001 5:52 pm
97
Looking for web resources for web form validation and other web form enhancements that take advantage of Internet Explorer 5 and later....
sachavieuxroy_2000@...
Mar 4, 2001 2:55 pm
98
Could someone please post an example of using this script to check a text box named FirstName for a value or Mr.; Mrs.; Ms;, Miss? Thank you....
maxons@...
Mar 5, 2001 6:29 pm
99
Is anyone here?...
maxons@...
Mar 7, 2001 5:15 pm
100
Yes! I'm here. What would you like to talk about? Liz Fretz QualityWare, Inc. Software Validation and FDA GMP Compliance Consultants Liz's Direct Line:...
I have a pre-alpha validation system implemented in behaviors. It's barely begun, but I can post it for others to monkey with. ... From:...
Matthew Frank
bigjuju@...
Mar 11, 2001 6:24 pm
103
you will need to modify the "raise" function. instead of using alert, you can try using an IE5 modal dialog, etc. the behavior system (which i will post when...
Matthew Frank
bigjuju@...
Mar 11, 2001 6:28 pm
104
to prevent an error from firing, don't tell it to validate the field--or turn off validation. the script requires you to turn it on for it to work. it's...
Matthew Frank
bigjuju@...
Mar 11, 2001 6:30 pm
105
i guess i messed that up a tiny bit. the expression should wrap the contents in paratheses: ^(Mr\.|Mrs\.|Ms|Miss)$ otherwise, the beginning and end anchors...
Matthew Frank
bigjuju@...
Mar 11, 2001 9:20 pm
106
Hello All, I am a developer and have found your work to be exactly what I am looking for for a project I am currently working on. I just wanted to introduce...
Padgett Rowell
padgett@...
Mar 12, 2001 2:03 am
107
Padgett, You can make any modifications you want, but the initial header must remain--anything else is up to you. I added comments for others to understand...