QuackFuzed.com is the personal ColdFusion coding blog of Matt Quackenbush. It exists primarily as a place for the author to learn, and hopefully to assist others in learning and/or avoiding some of the same pitfalls and mistakes. (Quack certainly makes enough mistakes daily to make up for the entire ColdFusion community.)
cfUniForm v2.6 - Global Plugin Configs + ValidateThis! Integration
Posted on November 13, 2008 at 4:17 AM in Uni-Form Tag Library, ColdFusion
The latest release of the cfUniForm tag library focuses on a new configuration feature, as well as integration with the ValidateThis! validation framework.
Latest Articles
- No recent entries.
Eventually something really brilliant and witty will appear right here.
Categories
- ColdBox (21) [RSS]
- ColdFusion (90) [RSS]
- Fusebox (3) [RSS]
- General (18) [RSS]
- jQuery (13) [RSS]
- Kalendar (1) [RSS]
- Mura CMS (1) [RSS]
- Railo (1) [RSS]
- Rants (4) [RSS]
- Transfer (8) [RSS]
- Uni-Form Tag Library (35) [RSS]



On 11/18/08 at 12:17 PM, Michael said:
<script type="text/javascript">
$(document).ready( function() {
$('#QuoteForm').validate({
rules:{
email:{
required:true,
minLength:5
},
confirm_email:{
required:true,
minlength:5,
equalTo:"#email"
},
},
messages:{
email:{
required:"Please your email",
minLength:"Your email must be at least 5 characters long"
},
confirm_email:{
required:"Please verify your email",
minLength:"Your email must be at least 5 characters long",
equalTo: "Please enter the same email twice"
}
}
});
}
</script>
On 11/18/08 at 5:30 PM, Matt Quackenbush said:
On 11/19/08 at 3:32 PM, Michael said:
On 11/19/08 at 4:00 PM, Michael said:
On 11/19/08 at 4:05 PM, Matt Quackenbush said:
On 11/19/08 at 4:09 PM, Michael said:
On 11/29/08 at 4:55 PM, George said:
On 11/29/08 at 5:15 PM, Matt Quackenbush said:
<uform:field type="custom">
<!--- place your rich text editor code in here --->
</uform:field>
HTH
On 11/30/08 at 9:27 AM, George said:
On 11/30/08 at 2:24 PM, Matt Quackenbush said: