So there is no way to disable this behaviour in CF8?

-----Original Message-----
From: Raymond Camden [mailto:rcam...@gmail.com] 
Sent: October-22-09 3:19 PM
To: cf-talk
Subject: Re: Anyway to disable CF FORM FIELD Validation?


CF9 allows you to disable it with a This scope variable.

On Thu, Oct 22, 2009 at 4:36 PM, Tony Bentley <t...@tonybentley.com> wrote:
>
> This works for any input in CF8:
>
> <script>
>        $(document).ready(function(){
>                $("input").each(function(){
>                        var inptname = $(this).attr("name");
>                      
 $("input[name="+inptname+"_CFFORMREQUIRED]").remove();
>                });
>        });
> </script>
>
> TEST CASE (TRY IT WITH SCRIPT AND WITHOUT AND WATCH WHAT HAPPENS)
> <cfform name="test">
> <cfinput type="text" required="yes" name="testvar" validateat="onserver">
> <cfinput type="checkbox" required="yes" validateat



~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:327562
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4

Reply via email to