Sha256: 5a55c8d20257c705d2bbb98e6414dbd72a84992e7747dbabd418cde0995aabdb
Contents?: true
Size: 1.06 KB
Versions: 7
Compression:
Stored size: 1.06 KB
Contents
// ========================================================================== // Project: SproutCore - JavaScript Application Framework // Copyright: ©2006-2009 Sprout Systems, Inc. and contributors. // Portions ©2008-2009 Apple Inc. All rights reserved. // License: Licensed under MIT license (see license.js) // ========================================================================== sc_require('validators/validator') ; /** Requires some content in field, but does not check the specific content. @class @extends SC.Validator @author Charles Jolley @version 1.0 */ SC.Validator.NotEmpty = SC.Validator.extend( /** @scope SC.Validator.NotEmpty.prototype */ { validate: function(form, field) { var value = field.get('fieldValue'); var ret = !!value ; if (ret && value.length) ret = value.length > 0 ; return ret ; }, validateError: function(form, field) { var label = field.get('errorLabel') || 'Field' ; return SC.$error("Invalid.NotEmpty(%@)".loc(label.capitalize()), field.get('errorLabel')); } }) ;
Version data entries
7 entries across 7 versions & 1 rubygems