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

META-INF.resources.org.richfaces.boolean-converter.js Maven / Gradle / Ivy

There is a newer version: 4.3.7.Final
Show newest version
RichFaces.csv.addConverter({"boolean":
(function($, rf) {
	return function (value, params) {
		var result; value = $.trim(value).toLowerCase();
		result = value=='true' ? true : value.length<1 ? null : false;
		
		return result;
	}
})(jQuery, window.RichFaces || (window.RichFaces={}))
});




© 2015 - 2025 Weber Informatics LLC | Privacy Policy