Re: Something that will work like onblur with CFINPUT

2000-08-16 Thread Todd Ashworth
I use onBlur with a cfinput tag and it works just fine: cfinput type="Text" name="txtContactBirthDate" required="Yes" size="10" maxlength="10" message="You must provide a date of birth for this contact in the form, mm/dd/, or mm-dd-." value="#qryGetChildInfo.birthday#"

RE: Something that will work like onblur with CFINPUT

2000-08-16 Thread Milks, Jim
I don't have a lot of experience with CFFORMs because I found they were always very limiting, so I use regular FORMs at all times. As for populating the form with query results, the fact that it is a CFFORM makes no difference, and you can do just the same with a regular FORM. Remember, CF Server

Re: Something that will work like onblur with CFINPUT

2000-08-16 Thread Matthew Fusfield
Kim, You can also use the PASSTHROUGH attribute with the CFINPUT tag. This will basically pass anything you put in the passthrough attribute value as part of the input html tag this is generated. Example: cfinput type="text" name="whatever" value="#Query.value#" size="15"