Some trick to getting this to work? I've added the onMouseOut(); to: <cfinput type="text" name="MR_Num" width="40" label="MR ##" required="yes" validate="integer" onMouseOut="javascript:validateForm();" maxlength="8" value="" /> but it doesn't fire the function at all. I even dropped my script into a: <cfformitem type="script"></cfformitem> just above it, tried it in between the <head>tags</head> and nada :( Any ideas?
Is there any printed material out there on this stuff by chance? TIA Bob -----Original Message----- From: Rob Parkhill [mailto:[email protected]] Sent: Wednesday, March 18, 2009 10:38 AM To: cf-newbie Subject: Re: cfform type=flash Bob, The required is built in, with required="yes" just add a message="You didn't enter a MR #, please do so." and to make sure you get an integer add a validate="integer" and then you can also add an onMouseOut ="javascript:ValidateForm();" and just use that to check and make sure you have an 8 digit number (or whatever you need). HTH Rob ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;207172674;29440083;f Archive: http://www.houseoffusion.com/groups/cf-newbie/message.cfm/messageid:4463 Subscription: http://www.houseoffusion.com/groups/cf-newbie/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.15
