Sha256: 3ca3662052b4e8e14f125f45af559dd6d7c2e08790a8404e8002a2cd16edfb2f

Contents?: true

Size: 1.27 KB

Versions: 7

Compression:

Stored size: 1.27 KB

Contents

// ==========================================================================
// Project:   SproutCore - JavaScript Application Framework
// Copyright: ©2006-2011 Strobe Inc. and contributors.
//            Portions ©2008-2010 Apple Inc. All rights reserved.
// License:   Licensed under MIT license (see license.js)
// ==========================================================================

require('validators/validator');

/**
  This validates a SC.DateTime, used in SC.DateFieldView.
  
  @class
  @extends SC.Validator
  @author Juan Pablo Goldfinger
  @version 1.0
*/
SC.Validator.DateTime = SC.Validator.extend({

  /**
    The standard format you want the validator to convert dates to.
  */
  format: '%d/%m/%Y',

  /**
    if we have a number, then convert to a date object.
  */
  fieldValueForObject: function(object, form, field) {
    if (SC.kindOf(object, SC.DateTime)) {
      object = object.toFormattedString(this.get('format'));
    } else {
      object = null;
    }
    return object;
  },

  /**
    Try to pase value as a date. convert into a number, or return null if
    it could not be parsed.
  */
  objectForFieldValue: function(value, form, field) {
    if (value) {
      value = SC.DateTime.parse(value, this.get('format'));
    }
    return value;
  }

});

Version data entries

7 entries across 7 versions & 2 rubygems

Version Path
spade-0.0.1 sproutcore/frameworks/foundation/validators/date_time.js
sproutcore-1.5.0.pre.5 lib/frameworks/sproutcore/frameworks/foundation/validators/date_time.js
sproutcore-1.5.0.pre.4.1 lib/frameworks/sproutcore/frameworks/foundation/validators/date_time.js
sproutcore-1.5.0.pre.4 lib/frameworks/sproutcore/frameworks/foundation/validators/date_time.js
sproutcore-1.5.0.pre.3 lib/frameworks/sproutcore/frameworks/foundation/validators/date_time.js
sproutcore-1.4.5 lib/frameworks/sproutcore/frameworks/foundation/validators/date_time.js
sproutcore-1.4.5-java lib/frameworks/sproutcore/frameworks/foundation/validators/date_time.js