Hi Brad, my bad...
What was suggested actually works. First the _cf_checkFormName fires off and displays am Alert dialog... and when the Okay button is clicked the form goes ahead and submits with the unvalidated data... exactly what I need. Not elegant but clearly successful! On Tue, Nov 11, 2008 at 9:24 PM, Brad Wood <[EMAIL PROTECTED]> wrote: > Yeah, the CF form validation fires with the onsubmit method of the form, so > you aren't going to be able to submit the form without the validation > running unless you do something like Ike suggested which involves removing > the onsubmit. > > You would need to put code like what Ike suggested in the onclick of your > new button. If your new button is type="submit", you wouldn't need the > form.submit() part. > > ~Brad > > ----- Original Message ----- > From: "s. isaac dealey" <[EMAIL PROTECTED]> > To: "cf-talk" <[email protected]> > Sent: Tuesday, November 11, 2008 11:04 PM > Subject: Re: Disable <cfinput submit processing? How to? > > > >I think this would work > > > > onclick="this.form.onSubmit=null; this.form.submit();" > > > > I haven't tested it though -- may get you started. :) > > > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| 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-talk/message.cfm/messageid:315127 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4

