All Downloads are FREE. Search and download functionalities are using the official Maven repository.

META-INF.modules.cusrule.js Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
/***easyui用到的  各种验证器***/
 define(["jquery","msg"], function(jQuery) {
 	(function($) {
		/************************************************
		*验证示例: 
		***********************************************/
		$.extend($.fn.validatebox.defaults.rules, {
		    minLength: {
		        validator: function(value, param){
		            return value.length >= param[0];
		        },
		        message: msg.minchars
		    }
		});	
	})(jQuery);	
 });








© 2015 - 2024 Weber Informatics LLC | Privacy Policy